Using the Incremental Publish Process (VENDOR_SYNC)
The Incremental Publish process enables you to publish supplier data incrementally to external systems.
| Design Pattern | Message Name |
|---|---|
|
Page Group Publish |
Supplier_sync |
This diagram illustrates the Incremental Publish process:

Incremental Publication Process for the VENDOR_SYNC Message
The following code calls the message publication code:
VNDR_ID(page group).SavePostChange
Local Message &msg;
Local Rowset &rs0;
&msg = CreateMessage(Message.VENDOR_SYNC);
If (&msg.IsActive) Then
&rs0 = GetLevel0();
&msg.CopyRowset(&rs0);
&msg.Publish();
End-If;