Compose X12 270 Eligibility Benefit Inquiry using OopFactory X12 Parser

天大地大妈咪最大 提交于 2020-01-16 19:27:12

问题


I'm starting a .NET project for which I'll need to submit HIPAA eligibility inquiries using the x12 270 format.

In my online searches, I've come across X12 Parser. However as Murphy would have it, the class I think I'll be needing, EligibilityBenefitInquiry, is stubbed with a //TO-DO.

Has anyone achieved this task using the X12 Parser or perhaps a different tool?


回答1:


Since you want to generate the 270, you don't want to use a "parser". The Parser tool might work for the inbound 271 response. To write your own translator (generator), you should get an implementation guide from your trading partner. An example of the 270 can be found here: CMS 270. That should give you a good idea of how to create the segments and elements needed to transmit the document. EDI is text based on a standard. The implementation guide should give you a fairly good representation of the partner's usage of that standard.

Obviously, commercial software would allow you to model your source data (database, XML, etc) and your target and allow you to drag / drop easier than writing your own mapping for some of these complex HIPAA documents. The open source parsers generally only "translate" to a generic XML file giving you less control over the workflow, and generally introducing another step (usually middleware or XLST).



来源:https://stackoverflow.com/questions/21125420/compose-x12-270-eligibility-benefit-inquiry-using-oopfactory-x12-parser

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!