I’m trying to create operations via API and even if I specify the OprSeq, it still auto generates it. I can’t have it auto generated because we use our own sequence numbers for another module.
How can I do that?
I’m trying to create operations via API and even if I specify the OprSeq, it still auto generates it. I can’t have it auto generated because we use our own sequence numbers for another module.
How can I do that?
Is there any way to do it directly in Epicor ? If so, i can try to look into the logs to see which BO is called. There is ChangeJobOperOprSeq but I don’t find any documentation on this
I managed to do it with the /Update function in JobEntrySvc with these parameters (RowMod is really important, doesn’t create it otherwise):
{
“ds”: {
“JobOper”: [{
“Company”: “QS”,
“JobNum”: “QS200005-1.ENG”,
“OpCode”: “OP110”,
“OprSeq”: 110,
“QtyPer”: “1”,
“RowMod”: “A”
}]
}
}