Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have some EDI 835 files and need to read in a talend job and then convert same into flat files. Would be really helpful if someone has done it already and share the details.
I done this with some other EDI files. What product are you using? The Talend Data Mapper is specifically designed for this, and it comes with a predefined 835 structure so you don't need to write one from scratch.
For me, the real headache is getting the looping correct: it pays to read the Data Mapper handbook very closely to see how the different types of loops work. If you have specific questions, I'll do my best to answer them.
David
Thanks David for your response. For our POC, we got a desktop licensed version “Talend Data Management Platform version 6.4.1”. Yes there is a map available convert EDI 835 file into xml format. I am new to Talend and I am struggling to find a component using which I can read that 835 file (X12N/005010X221). Can you please suggest me to use any available components in this version? I have to achieve below things:
For each transaction set, I have to derive two records on the basis of different segments - SVC (2110 loop) and PLB (Summary).
You'll want to use the tHMap component. You'll load the 835 structure as the input structure, which you can find at:
Metadata/Hierarchical Mapper/Other Projects/X12_5010_HIPAA (Read Only/Structures/Transactions/
There are two versions, one with the envelope, and one without. For unprocessed records, you probably want the one with the envelope.
Next, you'll specify the output structure. The easiest way is to make a sample xml document containing the fields you want, then select it on the tHMap component screen. After that, you'll map between EDI and xml by drawing a line from each EDI component to its corresponding xml component.
Here's the Data Mapper user guide, which I recommend you read before building the job. They have a section just on EDI records. Also, be sure to read the section on Loops: in my experience, this is the hardest thing to get right about EDI mapping.
https://help.talend.com/reader/njNNGkCowThcKR6notunrw/MDauhq9nl1m0FXZX~aHp9Q
Good luck!
David
Thanks David for your detailed response. By looking into your response, it looks like that we don't need any input file component. Is it correct? If yes, then where do I need to give my input file name?
Also, Is it mandatory to convert an EDI file into XML first then delimited? Or we can convert directly from EDI to delimited file with required set of columns.