Share via


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.

Syntax

public Map reportParameters()

Run On

Called

Return Value

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

Examples

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))
{
}

See Also

Reference

SRSReportRun Class