Hello,
I'm trying to edit SSRS report based on the sysoperation framework. The report is launched from menu item with the particular parmenum parameter. If the report is launched from such menuitem I need to add a new dialog field to my dialogform which also must change the original order of the dialog fields. It should be inserted between 3rd and 4rd fields. Which approach should be followed in that case? I have added a new parm method to my contract class for my new dialog field and marked it as invisible because it should appear only in circumstances described above (I hope it's correct):
[ DataMemberAttribute(), SysOperationGroupMemberAttribute('Parameters'), SysOperationDisplayOrderAttribute('3'), SysOperationLabelAttribute(literalstr("@SYS54971")), SysOperationHelpTextAttribute(literalstr("@SYS54971")), SysOperationCtrlAllowEditAttribute_ICL(false), SysOperationControlVisibilityAttribute(false) ] public TransDate parmActivationDate(TransDate _activationDate = activationDate) { activationDate = _activationDate; return activationDate; }
Any help would be much appreciated. Thanks.