Документы EDI X12 - [закрытая] документация

Это, наверное, самая хакерская вещь, которую ты видишь за весь день, но это может сработать.

bound = globals().copy()
from module import *
for k, v in list( globals().items() ):
    if k not in bound or bound[ k ] != v:
        print( 'new', repr( k ), repr( v ) )
8
задан Saif Khan 15 May 2009 в 04:28
поделиться

1 ответ

There's a fair bit around. The first place to look is X12.org.

This looks like a pretty decent online course.

EDI documents aren't particularly hard to process, they're just strings. The difficulty is that within the standard there are a lot of degrees of freedom, so you need to negotiate exactly which field codes etc you're going to support with each transaction partner.

Another magic word to look for is EDIFACT, which is the international standard.

5
ответ дан 5 December 2019 в 22:20
поделиться