This post is machine-translated. The original post in german language can be found here.
These post applies to following version:
Dynamics AX 2012
Dynamics AX 2012
|
|
|
|
|
|
This post is machine-translated. The original post in german language can be found here.
These post applies to following version:
Dynamics AX 2012
|
If you want to create a production order for a sales order line, the following job can provide an idea of how to do it.
{
SalesLine salesLine = SalesLine::findInventTransId('011748');
ProdTable prodTable;
prodTable.initValue();
prodTable.initFromCaller(salesLine);
prodTable.insert();
}