cristina-moran wrote on Tuesday, January 26, 2010:
Hello,
I have been using Emdeon for billing for the past month and I get 1 report for every claim that I send… about 30 reports a day! I tried to create a batch with multiple claims in it, however, Emdeon doesn’t like it due to having multiple “Loop 1000A’s”. So I took a look around the forums and documentation and found the “gen_x12_837.inc.php” file that generates the claims. The is the particular section that I need to display only once in a batch just like the x12senderid and x12receiverid does.
++$edicount;
$out .= “NM1” . // Loop 1000A Submitter
“*41” .
“*2” .
“*” . $claim->billingFacilityName() .
“*” .
“*” .
“*” .
“*” .
“*46” .
“*” . $claim->billingFacilityETIN() .
“~\n”;
So, I referenced the above to the x12senderid section as follows:
$out .= “ISA” .
“*00” .
"* " .
“*00” .
"* " .
“*ZZ” .
“*” . $claim->x12gssenderid() .
“*ZZ” .
“*” . $claim->x12gsreceiverid() .
“*030911” .
“*1630” .
“*U” .
“*00401” .
“*000000001” .
“*0” .
“*P” .
“*:” .
“~\n”;
The only difference I saw was the “++$edicount;” line. So, I removed that line but yet it still generates a 1000A Loop for every claim in the batch file.
Can someone help me and point me in the right direction?