In this step we will be implementing a BP that receives a valid EDIFACT message body and outputs the enveloped document in the Document Area after the EDIFACT Envelope step.
We are using this message as the input:
UCI+200905200086+SENDER+RECEIVER+7'
UCM+905201914+IFTMBC:D:99B:UN+4++FTX'
UCS+8+15'
UCM+905201915+IFTMBC:D:99B:UN+4++FTX'
UCS+8+7'
This is a typical CONTRL message without the enveloping fields.
This is the BPEL for the BP.
And the in GPM representation bellow, note that the EDI Encoder takes the Accepter Lookup Alias, and has the mode set gas Immediate.
In the first assigns we add some elements to override envelope settings with Sender and Recipient IDs, and the interchange number, check the BPEL.
Note that both the Correlation Service and the EDI Encoder are required steps for the enveloping process.
The resulting document can be handled in services after the EDIFACT Envelope, with services like File System Adapter or whatever it is required, you can also specify a BP to be trigger once the document is enveloped.
We are using this message as the input:
UCI+200905200086+SENDER+RECEIVER+7'
UCM+905201914+IFTMBC:D:99B:UN+4++FTX'
UCS+8+15'
UCM+905201915+IFTMBC:D:99B:UN+4++FTX'
UCS+8+7'
This is a typical CONTRL message without the enveloping fields.
This is the BPEL for the BP.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<process name="default"> | |
<sequence> | |
<!--There are plenty of more parameters that can be added check the service EDIFACT Envelope documentation --> | |
<assign to="EDIFACTEnvelopeParms/Out_InterchangeSenderID">YOURSENDERUNB</assign> | |
<assign to="EDIFACTEnvelopeParms/Out_InterchangeRecipientID">YOURRECIPIENTUNB</assign> | |
<assign to="EDIFACTEnvelopeParms/Out_InterchangeControlReference">12345</assign> | |
<operation name="Correlation Service"> | |
<participant name="CorrelationService"/> | |
<output message="CorrelationServiceTypeInputMessage"> | |
<assign to="." from="*"></assign> | |
<assign to="SCOPE">EDI</assign> | |
<assign to="TYPE">DOCUMENT</assign> | |
<assign to="CORRELATION_PATH">/ProcessData/EDIFACTEnvelopeParms/*</assign> | |
</output> | |
<input message="inmsg"> | |
<assign to="." from="*"></assign> | |
</input> | |
</operation> | |
<operation name="EDI Encoder"> | |
<participant name="EDIEncoder"/> | |
<output message="EDIEncoderTypeInputMessage"> | |
<assign to="." from="*"></assign> | |
<assign to="AccepterLookupAlias">CONTRL_2_1_UN</assign> | |
<assign to="EDIStandard">CONTRL</assign> | |
<assign to="Mode">IMMEDIATE</assign> | |
<!--This will only be relevant for UNH envelopes with sender and recipient assigned --> | |
<!--In this particular case we use the wildcard and we are only adding it because it is a mandatory parameter--> | |
<assign to="ReceiverID">YOURRECIPIENT</assign> | |
<assign to="SenderID">YOURSENDER</assign> | |
</output> | |
<input message="inmsg"> | |
<assign to="." from="*"></assign> | |
</input> | |
</operation> | |
<operation name="EDIFACT Envelope"> | |
<participant name="EDIFACTEnvelopeUnified"/> | |
<output message="EnvelopeEDIFACTTypeInputMessage"> | |
<assign to="." from="*"></assign> | |
</output> | |
<input message="inmsg"> | |
<assign to="." from="*"></assign> | |
</input> | |
</operation> | |
</sequence> | |
</process> |
And the in GPM representation bellow, note that the EDI Encoder takes the Accepter Lookup Alias, and has the mode set gas Immediate.
In the first assigns we add some elements to override envelope settings with Sender and Recipient IDs, and the interchange number, check the BPEL.
Note that both the Correlation Service and the EDI Encoder are required steps for the enveloping process.
The resulting document can be handled in services after the EDIFACT Envelope, with services like File System Adapter or whatever it is required, you can also specify a BP to be trigger once the document is enveloped.
The BP output can be seen in the next screen with the enveloped message in document area, note the interchange number as it was specified in the BPEL and overridden at the envelope level.