Monday 2 November 2020

how to hide a parameter in contract class in D365 sysoperation

 how to hide a parameter in contract class

Many times you get into situation where you want to add a parameter but hide it from the user .

In that case you can simple add the below signature/attribute above the class.

  [DataMemberAttribute,  SysOperationControlVisibilityAttribute(false)]

    public ItemId parmItemid(ItemId _itemid = itemId)

    {

        itemid = _itemid;

        return itemid;

    }


Thanks!!!!!!!!!!!

No comments:

Post a Comment

AZURE INTERVIEW QUESTIONS AND ANSWERS

AZURE INTERVIEW QUESTIONS AND ANSWERES 2021 2. What is cloud computing? Explanation:  It is the use of servers on the internet to “store...