Table of Contents

Search

  1. Preface
  2. PowerCenter Mappings and Workflows
  3. B2B Data Exchange Transformations
  4. B2B Data Exchange Workflows
  5. Dashboard and Reports
  6. Creating Workflows for Event Reconciliation
  7. Forms Designer
  8. Configuring Email for Monitor Notification
  9. Dashboard and Reports
  10. B2B Data Exchange Web Services API
  11. B2B Data Exchange Run-time Java API
  12. B2B Data Exchange Forms Designer Java API

Initiating an Event Reconciliation

Initiating an Event Reconciliation

In the workflow to process a document that requires an acknowledgement, include the DX_Initiate_Correlation transformation to initiate a reconciliation. The DX_Initiate_Correlation transformation associates the reconciliation with an event ID and generates a correlation ID. It also sets the timeout window for the reconciliation to complete. For more information, see DX_Initiate_Correlation Transformation.
You can also call the initiateCorrelation method of the B2B Data Exchange API to initiate the reconciliation. The following example code shows how to call the initiateCorrelation method:
String openingEventId = this.eventid; String correlationId = doc.senderid + doc.receiverid + doc.transaction[i].id; String correlationType = “997”; long timeWindowSeconds = 60*10; // 10 minutes server.initiateCorrelation (openingEventId, correlationId, correlationType, timeWindowSeconds);

0 COMMENTS

We’d like to hear from you!