Hide Report Parameter From contract class in d365 fo x++
Add propertiy SysOperationControlVisibilityAttribute(false)
[DataMemberAttribute,SysOperationControlVisibilityAttribute(false)]
public str parmparameter(str _buffer=buffer)
{
buffer = _buffer;
return _buffer;
}
Comments
Post a Comment