Hi All,
We are using ShopOrderOperationsHandling.svc REST API service in IFS10 for the integrations with 3rd party software and we need to amend Shop Order Operation Start and Finish dates depending on the data input.
We have created a query which updates both dates (Op Start Date and Op Finish Date) but we’ve got an error message during execution (Shop Order Sched direction is set to Manual Scheduling):
- URL :https://ifsmwsdev.cedo.com/int/ifsapplications/projection/v1/ShopOrderOperationsHandling.svc/ShopOrderOperations(OrderNo='90',ReleaseNo='*',SequenceNo='*',OperationNo=100)
- Request body:
{"OpStartDate": "2022-02-08T01:01:01Z",
"OpFinishDate": "2022-02-09T01:01:01Z"}
Error message:
{
"error": {
"code": "DATABASE_ERROR",
"message": "Database error occurred. Contact administrator.",
"details": e
{
"code": 6531,
"message": "ORA-06531: Reference to uninitialized collection"
}
]
}
}
At the same time it works fine if we use { "NoteText": "Sample Text"} in the request body and it updates field "NoteText" for the operation correctly.
Thanks,
Alex