getReportParameter()

The getReportParameter() implicit JasperReport handler function returns the value of the specified parameter from the report that is being filled. For the distinction between parameters, variables, and fields, see "Additional EGL JasperReport handler functions."

Syntax

  getReportParameter(parameter STRING in)
  returns (result ANY)
parameter
The name of the parameter.
result
The value of the parameter.

Example

The following example shows the retrieval of the companyName parameter:

currentCo = getReportParameter("companyName");

Feedback