How do you bring in ICD10 codes using visual form editor
Could you be more specific? What version of Centricity are you using? How are you trying to display the codes in VFE (data display, dynamic list, etc)? What do you want to do with the codes (attach to orders, text translation, A&P, etc)?
The help files specify the data structure for all retrievable data, including location of ICD10 codes. If you need help in getting to the help, email me for help, [email protected].
I am using version 12
I am using a Assessment / Plan Form that displays the ICD-9 codes, but not the ICD-10 codes. in new problem data area. I need the form to display both the ICD-9 and the ICD-10. When we input the diagnosis it displays both the ICD 9 and ICD 10 but does not in the data field in the text file for the chart.
I assume this is a dynamic list box. Modify the function called in the list box to include the following code with slight modifications to match the name of your function.
!fn fnproblemcheck_AP(strlist)
{ local strproblemlist
local nstart
local strbuf
local strformattedlist = ""
strproblemlist = getfield(strlist, "|","")
for i = 1, i <= size(strproblemlist), i=i+1 do strproblemlist[i]=getfield(strproblemlist[i],"^","")
strBuf = fnConvertProblemTypeToString_AP(strProblemList[i][1], FALSE) + strProblemList[i][2]
strBuf = ReplaceStr(strBuf, ",", "")
strFormattedList = strFormattedList + strBuf + " ("
strBuf = strProblemList[i][3]
strBuf = ReplaceStr(strBuf, ",", "")
strFormattedList = strFormattedList + strBuf + ")("
strBuf = strProblemList[i][8] // the ICD10 code is stored in the the 8th field
strBuf = ReplaceStr(strBuf, ",", "")
strFormattedList = strFormattedList + strBuf + "),"
endfor
return (strFormattedList)
}