Questions tagged [x12]

ASC X12 (also known as ANSI ASC X12) is the official designation of the U.S. national standards body for the development and maintenance of Electronic Data Interchange (EDI) standards.

USA standard for EDI (Electronic Data Interchange).

Abbreviations:

  • ASC - Accredited Standards Committee
  • ANSI - American National Standards Institute

References:

160 questions
2
votes
0 answers

Convert XML to X12 and X12 to XML

Possible Duplicate: Best way to convert XML to X12 and X12 to XML I am writing c#.net code for convert XML to X12 (270 - medical eligibility request) and then to convert the X12 response (271 - eligibility response) back to XML. Any ideas and…
user989888
  • 61
  • 1
  • 1
  • 5
2
votes
0 answers

How to do X12 EDI mapping XML to XSD in visual studio without using Biztalk server dev

I am trying to create map file(.XSLT) for Azure logic apps integration account. I am not able create mapping from visual studio since I don't have Biztalk server. How to do X12 EDI mapping XML to XSD in visual studio without using Biztalk server dev
tech bro
  • 21
  • 1
2
votes
2 answers

Azure Logic App Integration Tools in Visual Studio 2017

I am an experienced BizTalk developer who is now moving on to Azure logic apps. I have installed Visual Studio 2017 and added the "Azure Logic Apps Tools for Visual Studio" through the Tools|Extensions and Updates menu. However, I don't see an…
Aromanin
  • 33
  • 5
2
votes
1 answer

How to parse EDI 837 file in java?

Is there any java code for parsing this EDI 837 file format.Anyone here can tell me how to parse this file . i have tried this but it is for EDI 835 : https://media.readthedocs.org/pdf/x12-parser/latest/x12-parser.pdf **strong text** ISA*03* …
Sitansu
  • 3,225
  • 8
  • 34
  • 61
2
votes
1 answer

Is there any python package to convert EDI X12 format to CSV?

Looking for a python library to convert X12 (277U format) to CSV format. I Came across https://pypi.python.org/pypi/pyx12/2.1.1 but looks like it is converting X12 format to XML.. Please help
goks
  • 1,196
  • 3
  • 18
  • 37
2
votes
1 answer

Unable to read EDI File

i'm able to read the EDI file using Smooks (1.5) when it is formatted for readablity ISA*SD* *DFDF* *SDFDSF*FHGFH *44*GHGHGHG *GHGH*GHGHGH*^*GHGHG*46345345*B*4*:~…
JToddler
  • 790
  • 1
  • 6
  • 16
2
votes
1 answer

How save file with format ANSI X12 to relation database

I need a relational database schema to save the ANSI X12 format. I understand that these data are not suitable for storage in a relational database. If anyone has any scheme or some advice how you can save the file in a relational database, tell me…
2
votes
2 answers

How to make a 835 Claim Payment responce to a 837?

I was asked how you would parser a x12 837 (medical claims). It was the first time I have see a file format like it. A little time on Google and I learned that the file contains 3 types of delimiters at 103,104,105 and that the first element in…
Slow Slosh
  • 31
  • 1
  • 4
2
votes
1 answer

Problems parsing an .X12 file with a Regular Expression in PHP to find the capital letters 'FS' followed by exactly 13 numbers

I'm trying to parse some data from a .X12 file using regular expressions in PHP. The pattern is the capital letters FS followed by exactly 13 numeric characters. Here is an example of some text:…
T. Brian Jones
  • 13,002
  • 25
  • 78
  • 117
2
votes
0 answers

Java EDI X12 Parser

Is there any Good EDI parser API in Java? I know this is already asked here, and I have gone through it. I have an ANSI X12 EDI file. It is an 846 Inventory Inquiry document: ISA*00* *00* *01*038211983 *ZZ*JWN-DSD …
Coder
  • 6,948
  • 13
  • 56
  • 86
2
votes
2 answers

How good is Altova MapForce

My company needs to convert X12 5010 837 files into our database and back out. The tool we have been playing around with is Altova MapForce (trial). I have been trying to check references but Altova hasn't been quite helpful in that regard. The CNET…
user2167069
  • 37
  • 1
  • 2
2
votes
2 answers

Efficient EDI parsing into database in C#

3+ years ago we were asked to develop an EDI solution for a client as a matter of urgency. They wanted full IP/control etc. of the solution and didn't want to use free open source solutions, pay large sums of money for the likes of BizTalk etc. or…
Liam North
  • 35
  • 1
  • 1
  • 4
2
votes
2 answers

EDI x12 Segment Conditions

Keep in mind that I started to tackle EDI standars a couple of days ago only so there are still a lot of nebulous things. In an EDI segment (like CUR), when a condition is declared (P0304) it states that if one is use, the other should too. What do…
Bruno
  • 137
  • 1
  • 10
2
votes
6 answers

generating 9 digit ids without database sequence

I'd like to create 9-digit numeric ids that are unique across machines. I'm currently using a database sequence for this, but am wondering if it could be done without one. The sequences will be used for X12 EDI transactions, so they don't have to…
Dave
  • 13,518
  • 7
  • 42
  • 51
1
vote
2 answers

OopFactory X12 Parser breaks

I am trying to Parse stream Response using OopFactory X12 Parse here is my Code var parser = new X12Parser(); var _response = response.GetResponseStream(); Interchange interchange = parser.Parse(_response); string value =…
HaBo
  • 13,999
  • 36
  • 114
  • 206
1 2
3
10 11