hi All,
auto submit workflow in purchase order in AX 2012 r3 - Microsoft Dynamics AX Forum Community Forum
Finally I git the solution and able to submit the PO workflow.
I have added below code also
To Disable the change management
PurchTable purchTable;
;
select forUpdate purchTable where purchTable.PurchId == "PO-0006371";
if(purchTable)
{
purchTable.ChangeRequestRequired = NoYes::No;
purchTable.update();
}
Kindly let me know , *** before I am getting below error ---
Changes to the document are only allowed in state Draft, because change management is activated.
@@ When I disabled the change management then successfully auto submit the workflow without error.
1. What is change management ? And what is does?
2. Now I disabled the change management , Is it do any impact on workflow? I mean my workflow ( auto submit) will work as same like manual submit workflow ?
Please give me more shed on this.
thanks!