United Nations/Electronic Data Interchange For Administration, Commerce and Transport (UN/EDIFACT) is the international EDI standard developed under the United Nations. The work of maintenance and further development of this standard is done through the United Nations Centre for Trade Facilitation and Electronic Business (UN/CEFACT) under the UN Economic Commission for Europe, in the Finance Domain working group UN CEFACT TBG5.
Questions tagged [edifact]
118 questions
0
votes
1 answer
"No interchange was started." error on serializing EdiMessage
Using code like:
...
EdiMessage ediMessage = (EdiMessage)instance;
using (FileStream ediStream = File.OpenWrite(file))
{
using (EdifactWriter writer = new EdifactWriter(ediStream))
{
writer.Write(ediMessage);
}
}
I receive an…

Guido Leenders
- 4,232
- 1
- 23
- 43
0
votes
0 answers
What the "Global" adjective means when talking about EDIFACT messages?
My question could also be summarized as... What the "Global" means in (for example) "Global INVOIC" instead of just "INVOIC".
My guess is that the EDIFACT standard added some features, and from that time the version of EDIFACT messages allowed them…

pepr
- 20,112
- 15
- 76
- 139
0
votes
1 answer
What is the best way to implement a B2B communication?
For my bachelor´s degree I got the task to implement a B2B communication for an ERP system developed by the company I currently work for. Because it should also be able to communicate with other software I consider using EDI messages (EDIFACT) or…

Button
- 3
- 2
0
votes
3 answers
Search for exact phrase with Elasticsearch
I am currently starting out with Elasticsearch. I've indexed a few EDIFACT messages (a pre-historic data format;-)
The content looks something like this:
UNB+UNOA:2+SENDER+RECEIVER+170509:0050+152538'
UNH+66304+CODECO:D:95B:UN:ITG12'
BGM+34+INGATE…

Ben
- 1,922
- 3
- 23
- 37
0
votes
1 answer
Create a javax.mail message of mimetype: application/EDIFACT
I Am working on an application that can send EDIFACT messages by mail.
The sending and receiving mail is no problem, receiving an EDIFACT message (send by another application) works as well.
EDIFACT is a standard to send business to business…

michel.iamit
- 5,788
- 9
- 55
- 74
0
votes
1 answer
What's the difference between EDI, AS2 and GS1 and how do they work together?
I'm learning about EDI and there are many acronyms and standards that seem to overlap.
What is the difference between EDI (and a EDI translator) and AS2 (which seem to be EDI over HTTP)? Then there is GS1, whith it's own subsets (GS1 EANCOM GS1…

marianov
- 875
- 1
- 9
- 19
0
votes
1 answer
BizTalk EDIFACT sub document splitting
Our partner sends a EDIFACT which has some custom segments. I have updated one of the existing edifact schemas to have these custom segments. The happy day scenarios are working. We are now trying to implement negative scenarios. The business wants…

Shankar
- 13
- 2
0
votes
1 answer
Why field CPS is mandatory in EDIFACT?
According to the specification of EDIFACT, CPS is mandatory in DESADV.
https://www.stylusstudio.com/edifact/D97A/CPS_.htm
But we don't have any data to send in CPS segment.
Can we construct a DESADV message, which contains LIN and QTY segments in…

Andrey Davydenko
- 341
- 2
- 18
0
votes
0 answers
how to generate EDIFACT file with asp.net mvc 5 c#
I am working with a shipping domain application, and I need to convert some data to EDIFACT format (client said "flight manifests to US customs. These will be sent in .txt UN/EDIFACT format"). Is it possible in c#? is there any third party tool…

R K Sharma
- 845
- 8
- 23
- 42
0
votes
2 answers
How to create an edifact file in data waever component of mule
I am receiving an xml file and my requirement is to create an edifact
file from that xml. But in the dataweaver component of mule, there is
not support for edifact file formats. So is there a way I can generate
an edifact in mule from dataweaver or…

mule-user
- 223
- 5
- 22
0
votes
1 answer
Maven packages smooks edifact models under wrong folder in fat jar on mvn assembly
I'm building a fat-JAR with maven containing Smooks and sevreal org.milyn.edi.unedifact mappings just like lots of other dependencies. As only one mapping model is allowed I choose inside main which one to use as follows
Smooks smooks = new…

roka
- 55
- 7
0
votes
2 answers
Regex.Split ignores empty results
I have this string:
IMD+F++:::PS4 SAINTS R IV R?+GA'
I would like to split it up in two steps. First I would like to split on + except escaped plusses "?+". Second I want to split the result on :, except escaped colons "?:".
With the following…

jjtilly
- 3
- 2
0
votes
1 answer
How to format an EDIFACT composite with conditional data elements
I am currently working on a small project to generate EDIFACT messages and I want to know how the example composite below should be generated as a string if 0004 = ATEPA and 0008 = ADDR01?
Should conditional elements that are empty be excluded from…

Intrepid
- 2,781
- 2
- 29
- 54
0
votes
1 answer
AS2 ID and URL in BizTalk Server 2009
I am new to BizTalk and have some very basic understanding of what it does. My client wants to send and receive EDIFACT files over AS2 protocol and they have asked for our AS2 ID, AS2 URL and certificate (public if I am right). Please find my…

Deepan Maheswaran
- 73
- 1
- 13
0
votes
1 answer
Sign/Encrypt EDIFACT document - malformed - C#
I have to send an EDI message to a government body, which is signed/encrypted in a particular way.
According to https://docs.google.com/document/d/1xOxsZG7nCXdd3ucFKJObheW4G6kFwflGFkzURS_haTY/edit?usp=sharing
I am trying this code, but the encrypted…

Andrew Roberts
- 990
- 2
- 12
- 26