RE: Contract and controller class
Hi,
Values from contract class are usually retrieved in DP class. Please check the following parameters in your DP class.
Class: DP suffix class
Method: ClassDeclaration
Parameters: [
SRSReportQueryAttribute(queryStr(ReportQueryName)),
SRSReportParameterAttribute(classStr(ContractClassName))
]
Class: DP suffix class
Method: processReport
Code: contractclassvaraible= this.parmDataContract() as ContractClassName;
Retrieving the value: variable= contractClassVariable.parmmethod();
You can take reference of following classes to check implementation details: CustAccountStatementIntContract, CustAccountStatementIntController and CustAccountStatementIntDP.