The insert process in the BisEdiHistory table is a critical part of EDI processing. It ensures correct account and document flow identification. This topic explains how the insert method designed and how you can extend it with customizations.
The purpose of the BisEdiHistory insert method is:
For the BisEdiHistory insert method, the account determination logic is separated into individual replaceable methods. With these methods, you can implement custom logic while ignoring the default functionality.
Method | Description |
---|---|
OnSetInboundCustomer() | Returns BisEdiTmpDocumentFlowLine for inbound customer processing. |
OnSetOutboundCustomer() | Returns BisEdiTmpDocumentFlowLine for outbound customer processing. |
OnSetInboundVendor() | Returns BisEdiTmpDocumentFlowLine for inbound vendor processing. |
OnSetOutboundVendor() | Returns BisEdiTmpDocumentFlowLine for outbound vendor processing. |
OnSetInboundWarehouse() | Returns BisEdiTmpDocumentFlowLine for inbound warehouse processing. |
OnSetOutboundWarehouse() | Returns BisEdiTmpDocumentFlowLine for outbound warehouse processing. |
You can override the standard logic by implementing your own conditions.
To implement an extension on a replaceable method, use the chain of command (call 'next()').
The following example shows how you can replace inbound customer logic:
|
You can extend the BisEdiMessageType enumerator with a custom message type. If you do so, develop the custom message type logic for customized EDI processing.
To develop the custom message type logic, use these methods to determine the correct document flow:
Method | Description |
---|---|
CustomInboundDocumentFlow() | Returns BisEdiTmpDocumentFlowLine for inbound messages. |
CustomOutboundDocumentFlow() | Returns BisEdiTmpDocumentFlowLine for outbound messages. |
The following example shows how you can customize the message type logic:
|
On the message mapping, for the BisEdiHistory record, you must define the value for these fields:
Direction | MessageType | AccountType |
---|---|---|
Inbound | Order | Customer |
DeliveryForecast | ||
Confirmation | Vendor | |
Acknowledge | ||
Delivery | ||
Invoice | ||
InvoiceStdOnly | ||
PriceList | ||
PurchaseInquiry | ||
Picking | Warehouse | |
WarehouseDelivery | ||
Return | ||
InventoryCount | ||
TransferReceipt | ||
TransferShipment | ||
Outbound | Order | Vendor |
ProductReceipt | ||
PurchaseInquiry | ||
Confirmation | Customer | |
Delivery | ||
Invoice | ||
InvoiceStdOnly | ||
PriceList | ||
ProjInvoice | ||
InventoryCount | ||
Picking | Warehouse | |
WarehouseDelivery | ||
TransferShipment | ||
Return |
You can override the default logic. To do so, on the message mapping, to the BisEdiHistory record, add the FlowForAccountCode field. You can use this field to define the applicable account code (AccountType), skipping the default logic to determine the account code.
The FlowForAccountCode field has these values:
Account Code | Description |
---|---|
Default | The default logic to determine the account code (AccountType) is applied. |
Customer | The account code 'Customer' is used for the message. |
Vendor | The account code 'Vendor' is used for the message. |
Warehouse | The account code 'Warehouse' is used for the message. |
f you use a pre-defined account code, only document flows with this account code are considered.
You can extend the BisEdiFlowAccountType enumerator with a custom account code. If you do so, develop the custom account code logic for customized document flow determination.
To develop the custom account code logic, use these methods to determine the applicable document flow:
The following example shows how you can customize the document flow logic:
|
Related to | Notes |
---|---|
Monitor EDI history |
  |
Set up document flows |
  |
Monitor EDI history |
  |
Set up document flows |
  |
Monitor EDI history |
  |