SRSReportRun.reportParameters Method [AX 2012]

Gets a Map object that contains SRSReportParameter objects where the key is the string value that contains the parameter name value that equals the SRSReportParameter object.

public Map reportParameters()

Run On

Called

Return Value

Type: Map Class
A map that has the parameter name and SRSReportParameter objects.

The following example verifies that the parameter exists where paramName is set to the name of the report parameter.

SRSReportRun report = new SRSReportRun();
if (report.reportParameters().exists(paramName))
{
}

Community Additions

ADD
Show: