Previous Topic: Parameterized ReportsNext Topic: Time Parameters


Creating a Parameterized Report via the GUI

Follow these steps:

  1. Open the report Wizard (Reports, Report Wizard).

    The wizard opens.

  2. Select all the parameters needed for use in the Parameterized Report.

    parameter_types_for-Param-Reports

  3. Click Save.

    The Add to Reports Folder dialog box opens.

  4. Enter a name for the Parameterized Report, select the folder to place the report into and add a Description (optional).
  5. Add any required Related Reports (Optional) and/or Permitted Users (Optional) and Save.
  6. Use your standard IDE / SDK tool/s to open the Report file.

Note: Each report will be specific to the values entered for each of the parameters in the parameterized report.

The following XML code was created by selecting the parameters shown in step 2 above. Specific values for each of the three parameters (Metric_Type, Customer, Service_Domain) must be inserted in order to run the code.

<REPORT_PARAMETERS xmlns="">
         <REPORT_ITEM>
             <REPORT>
                <PARAMETERS>
                    <METRIC_TYPE IS_MANDATORY="N"></METRIC_TYPE>
                    <CUSTOMER IS_MANDATORY="N"></CUSTOMER>
                    <SERVICE_DOMAIN IS_MANDATORY="N"></SERVICE_DOMAIN>
                </PARAMETERS>
                <TIME IS_MANDATORY="Y">
                   <FROM_BEGINING>
                      <TIME_UNIT></TIME_UNIT>
                   </FROM_BEGINING>
                 </TIME>
             </REPORT>
          </REPORT_ITEM>
</REPORT_PARAMETERS>

Note: Time parameters are listed separately from the others.