I am getting an edi file 837 which is having multiple claims. How to debatch the 837 edi file so that each file contain only one claim per file using biztalk.

link|improve this question

71% accept rate
Is this a programming problem? Have you tried anything so far? – Anna Lear Jan 12 at 2:36
@user1104946 Biztalk is a service. Granted it is a service that can be programmed against (much in the same way SQL Server can be programmed against, but it's also administered, configured, etc), but this question doesn't indicate that you are doing anything of that nature here. Additionally, this question is not a real question as it shows no indication of any effort on your part, or specific information about how you are going about trying to debatch the edi file. – casperOne Jan 12 at 17:58
2  
@user1104946 I think it would be prudent if you learned how to ask questions as well. This question makes absolutely no sense, whatsoever. If you can post some code to explain it, flag it for our attention and we'll re-open it. – Tim Post Jan 12 at 18:00
1  
I understand what he's trying to say. He's getting an EDI file inbound that has multiple claims. He wants to parse the file into multiple files, each containing one claim. BizTalk is not a service, it is an EAI/ETL/B2B platform. If you don't understand EDI, it might not make sense, but he tagged the question correctly. – Andrew Jan 13 at 14:22
yes Andrew...If they dont understand EDI then its difficult to understand..otherwise this is quite straight forward question – user1104946 Jan 13 at 16:25
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

It seems it would be less prudent to split the incoming file into multiple files, as you'd process (translate) everything twice.

Since a claim would start at the ST segment, you can create a transformation so that for each ST segment you read, it would create a new output file. This way the integrity of the source data you receive remains intact, and you're only processing the data once.

If you really wanted to go down the path of separating EDI claims into separate input files, and if the file has multiple ISA / IEA segments (actual interchanges in the file), then you could easily write a parser script to read the file in, figure out the segment terminator (position 106) and read the file until you get to the IEA and then write a new file out. Repeat for other instances of the ISA / IEA envelope pair.

If it doesn't have multiple ISA / IEA segments, then it would have multiple ST / SE segments - the same principle applies once you have the segment terminator. I don't know what impact that would have on your mapping (if it would make translation harder or not).

It seems like you're trying to make life harder on yourself, but if you have a business reason for splitting up the claims, then it is what it is.

link|improve this answer
feedback

This is actually a supported out-of-the-box scenario for BizTalk 2009 and 2010 (but not 2006) for the 837 file that he wants to de-batch.

BizTalk Server supports splitting of the following HIPAA document types through native schemas: HIPAA version 4010 documents: 834 Enrollment, 835 Claim Payment and three variants of 837 Claim HIPAA version 5010 documents: 276/277 Claim Status – Request and Response, 834 Enrollment and three variants of 837 Claim

http://msdn.microsoft.com/en-us/library/bb226327.aspx

See also: http://blog.biztalk-info.com/2010/06/hipaa_subdocument_splitting__explained/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.