Using the Full Data Subscribe Process (VENDOR_FULLSYNC)

The Full Data Subscribe process enables you to subscribe to supplier data.

Design Pattern Message Name Subscription Name

Full Data Replication

VENDOR_FULLSYNC

SupplierFullSync

This diagram illustrates the Full Data Subscribe process:

Process flow for full-data subscription suppliers

Code for Full Subscription Process

The following code calls the full subscription process:

Declare Function supplier_intfc PeopleCode FUNCLIB_APEIP.VENDOR_ID FieldFormula;
Local Message &MSG;
&MSG = GetMessage();
Evaluate &MSG.GetRowset().GetRow(1).PSCAMA.MSG_SEQ_FLG.Value
When "H" 
When "T" 
   rem do nothing;
   Break;
When-Other
   supplier_intfc(&MSG);
End-Evaluate