Posts

Showing posts from July, 2024
/// <summary> /// ASN Request sending OB service /// </summary> public class testASNRequestOBService extends SysOperationServiceBase {     #define.interface('3PL ASN Outbound')     /// <summary>     /// To process TPF data     /// </summary>     public void process()     {         ReqRetryCount maxRetryCount = testIntegrationParameters::find().MaxRetryCount;         HCLTPFCreationTable tPFCreationTable;         testASNRequestOBContract request;         str Json;         while select tPFCreationTable             where tPFCreationTable.RetryCount < maxRetryCount             && tPFCreationTable.TPFStatus == HCLTPFStatus::Confirm         {             try           ...