Hello,
I would like to pass menu item name that is clicked when the report is started.
I figured I could do it with creating a member in contract class that represents menu item name.
[DataMemberAttribute('menuf')]
public Name parmMenuf(Name _menuf = menuf)
{
menuf = _menuf;
return menuf;
}
After that, i assigned a value in prePromptModifyContract with:
contract.parmMenuf(args.menuItemName());
When I debug the controller class, I see a value assigned, but it is not passed to my RDP class. Also, when I run the report, it says this parameter is missing a value.
I restarted Reporting Services and AOS, and also did a incr. CIL
Is there maybe a different way to pass the name of the menu item that is clicked to the RDP class?
Thank You!