gsporter wrote on Thursday, June 07, 2012:
Thanks to all of you for the input. I tried using the “Additional Notes” field at the bottom of “Misc Billing Options for HCFA-1500” encounter form but it was not working.
I guess my next step is to find someone to contract to make the code changes I need. The last code I wrote was befor C had +'s I assume that they would be in the “gen_x12_837.inc.php” file. Plus somewhere to input the info, maybe under
Practice | Insurance Company/Insurance Numbers That way the contract code wouldn’t have to be entered for each encounter.
If someone would be interested in this project it is something I have to do, and I would be interested in proposals/quotes.
Of course it would be put back into the common code base.
Looking at Oklahoma’s 837P HIPAA 5010 v3.0 guide
Loop 2300
Referance Name Codes Notes
NTE Claim Note Contract Code and or zip+4
NTE01 Note Referance Code ADD,CER,DCP,DGN Additional Information
TPO
NTE02 Claim Note Text OKCODE *
*The value is OKCODE, followed by the contract code of the Billing Provider (if applicable). This element may also include the 9-character
ZIP+4 code of the Rendering Provider when the Loop 2310B Rendering Provider Name is used. For SoonerCare purposes, the Rendering Provider ZIP+4 code may be used to map the NPI to a legacy Provider Identifier in situations when the NPI is a one-to-many match (one NPI for more than one SoonerCare Provider ID). In these situations the ZIP+4 code for the physical location of the contracted Rendering Provider should be utilized. The format is shown in the following examples: (NTE*ADD*OKCODEG) (NTE*ADD*OKCODEDM) (NTE*ADD*OKCODEG 731051234) (NTE*ADD*OKCODEDM731051234) NOTE: If the contract code is just one character and a ZIP+4 code
is also included, the contract code must be placed in the 7th position of the NTE02 with a space in the 8th position. The format is shown in the following example: (NTE*ADD*OKCODEG 731051234) If no contract code is used, two spaces must be put in positions 7 and 8 of the NTE02. The format is shown in the following example: (NTE*ADD*OKCODE 731051234)
# There are 9 contract code but I am not sure is they are the same for all states G, T,TS, NI, A, C, DA, DC, DM
If they are they could be hard coded into a drop down.
From “gen_x12_837.inc.php” file
Looks like Loop 2300 is at line 437 -580
Lines 544 - 547 put additionalNotes //in box 19
$out .= “NTE” . // comments box 19
“*” . ($CMS_5010 ? “ADD” : “”) .
“*” . $claim->additionalNotes() .
“~\n”;
Lines 1005 - 1008 add cptNotes // Explain Unusual Circumstances.
$out .= “NTE” . // Explain Unusual Circumstances.
“*ADD” .
“*” . $claim->cptNotecodes($prockey) .
“~\n”;
It looks like what I need Loop 2300 NTE02 is omitted in lines 1037 and 1038
// Segment NTE (Line Note) omitted.
// Segment NTE (Third Party Organization Notes) omitted
Old contract information CN1 is omitted in lines 497 and 1023
Thanks for your attention to this matter,
GP