How to in visible a parameter in contract class in dialog form in x++ in D365F&O Sysoperation framwork
Hi Viewers,
To make parameter not visible in dialog form if it is populating from contract class. use attribute SysOperationControlVisibilityAttribute.
[DataMemberAttribute
, SysOperationControlVisibilityAttribute(false)]
public NoYes parmRevalidate(NoYes _validate = validate)
{
validate = _validate;
return validate;
}
Thanks for reading! Like this post if you found it helpful. 😀😀
And let me know your thoughts in the comments below.😇😇
And let me know your thoughts in the comments below.😇😇
Comments
Post a Comment