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.😇😇

Comments

Popular posts from this blog

In ax D365F&O post packing slip from shipment through code x++.

Multi select lookup in UI Builder class in D365F&O through x++ code.

Cancel Post packing slip from all Shipments in D365 F&O through X++