Regular Report Settings

The file that contains a workbook description, is named <regular report identifier>.plist, and is stored in the folder: <path to the folder with installed Prognoz Platform 9>/Mobile/Pub/Reports.

Regular Report Properties

Section Description Properties
PrxReport Section that contains description of general regular report parameters.

version. Report version. Minutes count starting from January 1st, 2011.

activeSheetKey. Key of the active report sheet.

worksheets. Array of report sheets.

Property value is an array of <dict> elements that have the following properties:

  • name. Sheet name.

  • key. Sheet key.

  • visible. Sheet visibility:

true. The sheet is displayed.

false. The sheet is hidden.

Resources Array of links to sheet files.

References values:

id. File identifier.

path. Name of report file without the extension. File extension is defined in the ext property, which creates a link to a file. It is created in the following way: "Worksheet_" + <sheet key>.

ext. File extension. The pdf value is available.

Example

Below is an example of settings for a regular report:

<plist version="1.0">
  <dict>
    <key>PrxReport</key>
    <dict>
      <key>version</key>
      <string>1083509</string>
      <key>activeSheetKey</key>
      <real>4</real>
      <key>worksheets</key>
      <array>
        <dict>
          <key>name</key>
          <string>Grid</string>
          <key>key</key>
          <real>3</real>
          <key>visible</key>
          <string>true</string>
        </dict>
        <dict>
          <key>name</key>
          <string>Chart</string>
          <key>key</key>
          <real>2</real>
          <key>visible</key>
          <string>true</string>
        </dict>
        <dict>
          <key>name</key>
          <string>Map</string>
          <key>key</key>
          <real>4</real>
          <key>visible</key>
          <string>true</string>
        </dict>
      </array>
    </dict>
    <key>Resources</key>
    <array>
      <dict>
        <key>id</key>
        <string>Worksheet_3</string>
        <key>path</key>
        <string>Worksheet_3</string>
        <key>ext</key>
        <string>pdf</string>
      </dict>
      <dict>
        <key>id</key>
        <string>Worksheet_2</string>
        <key>path</key>
        <string>Worksheet_2</string>
        <key>ext</key>
        <string>pdf</string>
      </dict>
      <dict>
        <key>id</key>
        <string>Worksheet_4</string>
        <key>path</key>
        <string>Worksheet_4</string>
        <key>ext</key>
        <string>pdf</string>
      </dict>
    </array>
  </dict>
</plist>

See also:

File Structure of Published Mobile Application