settings

This tag defines certain attributes about your report. Currently you can define the report title.

Hierarchy

Syntax

Copy
<settings reporttitle= string>
</settings>

Attributes

Name Description
reporttitle defines the title of the report that appears in the report header when the script is rendered as a report. If nothing is defined, Relativity uses the script name instead.

Example

Copy
<script>
     <name>Settings Element</name>
     <description> </description>
     <category> </category>
     <input orientation="horizontal" />
     <display type="report">
          <settings reporttitle="Test Title" />
     </display>
     <action returns="table">
          <![CDATA[
               Select top 10 [ArtifactID] from [View]
          ]]>
     </action>
</script>