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 have to lock a dialog field within a SysOperation-framework, which is integrated via a parm method, you can use code like the following (in UIBuilder).
public void postBuild() { DialogField df_SalesId; super(); df_salesId = this.bindInfo().getDialogField( this.dataContractObject(), methodStr(DEV_SalesUpdateDatacontract, parmSalesId)); if(df_salesId) { df_salesId.allowEdit(false); df_salesId.skip(true); } }