- LCS
- Command Line
- Query
- Disable the IIS services.
- Disable the Batch job services
- Open SQL and Execute the below command on AxDB
To hide the parameter from report/job dialogue, use the below annotation on the param method of the Report/Job data contract class.
[SysOperationControlVisibilityAttribute(false)].
Sample
Parameter will visible:
[DataMemberAttribute,
SysOperationLabelAttribute(literalStr("Task Size")),
SysOperationGroupMemberAttribute("ParameterGroup"),
SysOperationDisplayOrderAttribute("3")]
public AD_BatchTaskSize parmBatchTaskSize(AD_BatchTaskSize _batchTaskSize = batchTaskSize)
{
batchTaskSize = _batchTaskSize;
return batchTaskSize;
}
Parameter will not visible:
[DataMemberAttribute,
SysOperationControlVisibilityAttribute(false)]
public RecId parmFromRecId(RecId _fromRecId = fromRecId)
{
fromRecId = _fromRecId;
return fromRecId;
}
Virtual Field: A virtual field in D365FO is a field that doesn't have a direct representation in the database. It's a field that y...