Dear All,
Version BC 14.0
while sending the Items from Nav to Salesforce when the item no. is having "/" Like '4197RRBK-M/L' its giving the error.
How to correct this error.
"The requested resource does not exist"
Source:
TmpBlob.INIT();
TmpBlob.Blob.CREATEOUTSTREAM(OutStrm1);
OutStrm1.WRITETEXT(Json.ToString());
//HttpWebRequestMgt.Initialize('XXXXXXXXXX/' itemno);
HttpWebRequestMgt.DisableUI;
HttpWebRequestMgt.SetMethod('PATCH');
HttpWebRequestMgt.AddHeader('Authorization','Bearer '+GetBearerToken());
HttpWebRequestMgt.SetReturnType('application/json');
HttpWebRequestMgt.SetContentType('application/json');
HttpWebRequestMgt.AddBodyBlob(TmpBlob);
ServicePointManager.SecurityProtocol(SecurityProtocol.Tls12);