Hi Friends,
I want to disable/hide one of parameter checkbox for VendAgingReport. How can I do it?
River
*This post is locked for comments
Hi Friends,
I want to disable/hide one of parameter checkbox for VendAgingReport. How can I do it?
River
*This post is locked for comments
You can also use a not defined group
SysOperationGroupMemberAttribute(‘group_notdefined_at_classdeclaration’)
the group ‘group_notdefined….’ will not be shown on the dialog, so all members are
invisible
figured out, Thanks.
never mind, you need to change at VS and Contract class.
what you have done so far, other than adding this line of code?
[ DataMemberAttribute('IncludeAmountCur'), SysOperationLabelAttribute(literalStr("@SYS344267")), SysOperationHelpTextAttribute(literalStr("@SYS344268")), SysOperationControlVisibilityAttribute(false), SysOperationDisplayOrderAttribute('11') ] public boolean parmIncludeAmountCur(boolean _includeAmountCur = includeAmountCur) { includeAmountCur = _includeAmountCur; return includeAmountCur; }
Somehow, it doesn't work. Can you tell me what I did wrong here?
This is what I am looking for.
You can decorate the parm method in the data contract with [SysOperationControlVisibilityAttribute(false)].
another way without changing anything in AX can be hiding parameter on Visual Studio or SSRS level
check following link for that
dynamicsaxlounge.com/.../ssrs-tip-using-invisible-parameters-in-contracts-dynamics-ax-2012
you need to modify class VendAgingReportContract
all parameters of report which is using RDP, are in CONTRACT Class
after removing parameters from contract class you, may be you also would need to modify VendAgingReportDP. Compile classes realted to vendAgaing after change.
At end open report in SSRS, refresh DS, save it, Rebuild and redeploy
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156