Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Reports are XML files with the following schema:

<?xml version="1.0" encoding="utf-8" ?>
<report>

...

<name>Name</name>

...

<description>Description</description>
<sql>
    <!-- SQL -->
</sql>
<parameters>
<parameter type="Type" name="Name" description="Description" default="DefaultValue" />
</parameters>
</report>

Parameters

Parameters are optional modifiers for the SQL. Based on the type of parameter, the report viewing interface will display an input to allow report users to assign a value.

...