web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

How to pass default value to parameter using SSRS Class in axapta

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
To pass default value to parameter using SSRS Class in axapta 2012 you can override method prePromptModifyContract in controller class then initialize contract class variable then you can pass value using contract class method calling.

Below is example sample for syntax is mentioned.

 protected void prePromptModifyContract()  
{
Contract=this.parmReportContract().parmRdpContract() ;
Contract.parmDetails(DiscCurrency::Currency);
super();
}


This was originally posted here.

Comments

*This post is locked for comments