Hi All,
I'm attempting to run the Time Phased Inventory Status for a single item in SL8 using the IDOWebService.asmx methods. I have been getting an error message back that states that you cannot call the Custom Load Collection directly.
Should I be attempting to load the collection via the Post-Query Command or do I need to be using the CallMethod ?
List locProps = new List() { "Item", "DerQtyOnHand", "DerQtyRsvdCo" };
DataTable dtLocs = await IDO.CallMGRest(xSLToken, "SLItems", locProps, string.Format(@"Item='{0}'", item), "", "SupDemItemwhseSp('MAIN', '')", 0);
return StatusCode(200, JsonConvert.SerializeObject(dtLocs.Rows));
Thank you!