open source .NET libraries available for writing ANSI 837 files in EDI? [closed]
Asked Answered
P

5

7

We have data stored in a database and we need to create an ANSI 837 file from this data. Are there any open source frameworks available to do this in .NET?

Phlebitis answered 26/1, 2011 at 7:26 Comment(0)
H
7
Hargreaves answered 16/2, 2012 at 19:22 Comment(1)
Is there any way of reading/writing X12 EDI 837 files, any open source project in PHP??Wassyngton
G
1

Why not use a standard mapper instead of trying to code that beast? There's a lot of minefields there (ISA/GS enveloping, control numbers, HL segments, segment looping) that EDI translators already have built-in dictionaries to use.

While not open source, there is a company out there who provides programming tools that might help your cause: http://www.edidev.com/ (more specifically: http://www.edidev.com/edidev_hipaa_support.htm).

Gleeman answered 26/1, 2011 at 16:36 Comment(4)
Thanks For Your Answer.. But, here we have to build each segment with business rules.(http://www.edidev.net/edidev-ca/samples/AspNetGen810.htm).So, it is defficult. there any thing available in EDIDEv to map database columns & segment value positions.So, that it can be a one time job.Then, i will generate a claim just by sending encounter id.Phlebitis
You would have to code EVERYTHING using their tool kit. Based on your requirement, it sounds like you want a mapping utility. Check out Jitterbit (www.jitterbit.com). They have an open source integration tool that you can create a map for (Database to EDI). Their community edition is free. I'm not the biggest fan of their mapping interface, but if you're able to procure commercial software that will do everything you need to do, check out Delta/ECS from Liaison (www.liaison.com). Not free, not open source, but wanted to give you options of tools I know that work.Gleeman
Actually i am new to EDI world.Once agian i want to tell my requirement. We built a healthcare management system.Using this front office peroson can create appointments for provider.Finally. those appointments will convert in to encounters. So, i have a encounters data in SQL Server Database.Here, we have to provide interface for billing person to look in to encounter data & able to generate claim.Finally, we have to send it to clearing house.So, in single button click we have to generate 837 file. Totally developed in ASP.NET(web).I think our requirement is limited.How do i proceed ??Phlebitis
Your requirement to code it in ASP.NET is extremely limited. Your management is asking you to completely reinvent the wheel and develop a solution for one of the more difficult EDI transactions. Between the segment looping, the enveloping, managing multiple partners, these are all functions that are already available in commercial software. You have an uphill battle ahead of you, because not only do you have learn EDI, but you have to code everything. There is a way to embed a Liaison Delta map inside an ASP.NET web page, but I guess that is kind of cheating :) Good luck!Gleeman
T
1

http://chiapas.sourceforge.net

It can be executed from the command line or integrated as a C# component. It has a 76 page PDF manual which goes over many of the features, check it out.

Tam answered 29/7, 2011 at 4:37 Comment(1)
You appear to be the author of the software you are recommending. It's great if your software does what the OP needs, but here at Stack Overflow we suggest you disclose your affiliation with the software as a part of the answer, otherwise it's often viewed as spam. This applies to your other answer too. Thanks! :)Breathtaking
E
0

not .net, but is open source: http://bots.sourceforge.net

Encaustic answered 1/3, 2011 at 14:59 Comment(1)
Yes,bots is open source(python based framework).But,it is command line utility.We have to execute DOS command from C# code.So, it sounds like unmanageable.Thats why we avoided.. Anyways thanks for reply..Phlebitis
T
0

Check out the open source .NET X12parser. It's already got fairly robust support for the X12 healthcare formats (including 837). You'll just supply the 837 data in a XML format and it will create a valid X12 file.

Timothea answered 15/7, 2011 at 16:48 Comment(1)
This looks to be the opposite of what the OP is asking. This seems to be EDI 837 to XML conversion package, not vise-versa that is needed.Wensleydale

© 2022 - 2024 — McMap. All rights reserved.