edifact

Is there a really simple way to process EDIFACT for example D96A?

半城伤御伤魂 提交于 2019-12-23 07:52:24
问题 We are a modern company using modern technology like XML interfaces, but many of our customers want for example electronic invoices from us in an EDIFACT format like D96A. No we cannot use already existing libraries, as they are not written in the C/AL programming language our Navision software uses. So in order to parse it in C/AL I need to understand its specification. But it looks extremely difficult and complicated. So can someone give me an overview how to interpret say D96A and how to

How can I use regex to match a character (') when not following a specific character (?)?

亡梦爱人 提交于 2019-12-22 09:57:52
问题 How can I write a regex pattern to split a string by a specific delimiter as long as it's not preceded by a question mark? I've written a parser that splits an EDIFACT message into segments, composites and elements. But in the EDI standard the question mark is an escape character. So to split this string: 'PRI+2.005:1+9022.5'RAD+RRHANB97+120814' I can use string.Split('\''), and then string.split('+') and then string.split(':') to get PRI, 2.005, 1, 9022.5 and so on However, these characters

Is there any good open source EDIFACT parser in Java? [closed]

淺唱寂寞╮ 提交于 2019-11-27 07:40:00
Parsing EDIFACT can be a daunting undertaking. Is there any good open source library that can help? www.smooks.org - A template-based text parser. They have suitable EDI examples that I was looking to use to implement for Walmart 810s before they dumped my products. try: http://bots.sourceforge.net not so much a library, but translates edifact to the format you prefer....xml....csv....etc Parsing EDIFACT is easy. You can find many libraries to do it. For example, http://code.google.com/p/edicoder/ All these libraries simply break up the messages into segments. The hard part with EDIFACT is to

Is there any good open source EDIFACT parser in Java? [closed]

筅森魡賤 提交于 2019-11-26 13:44:57
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Parsing EDIFACT can be a daunting undertaking. Is there any good open source library that can help? 回答1: www.smooks.org - A template-based text parser. They have suitable EDI examples that I was looking to use to implement for Walmart 810s before they dumped my products. 回答2: try: http://bots.sourceforge.net not