ProcessManagementStatus

ProcessManagementStatus is a text function that returns the status of a cell in a Oracle Hyperion Financial Management database connection. Possible process levels are: Not Started, First Pass, Submitted, Approved, Published, Not Supported, Review Levels 1 through 10. Use ProcessManagementStatus in a text box, a text cell, or a text row or column heading. ProcessManagementStatus is available only with Financial Management as the database connection.

Syntax:

<<ProcessManagementStatus("GridName", Row, Col, Page)>>

Argument Description

GridName

Name of a Financial Management grid. GridName must be enclosed in quotation marks.

Row

Numeric value representing the ro index of the grid. The first row in a grid has an index of 1, the second row has an index of 2, and so on.

Col

Letter representing the column of the grid. The first column in a grid has an index of A, the second column has an index of B, and so on.

Page

Numeric value representing the page dimension index of the grid. The first page dimension in a grid has an index of 1, the second page dimension has an index of 2, and so on.

Example 1:

Status for the cell in row 21, column B on page 1 of Grid1:

<<ProcessManagementStatus("Grid1",21,B,1)>>

<<ProcessManagementStatus(Current,21,B,1)>>

Example 2:

Display the status for all cells in column B, on page 1 of the current grid:

<<ProcessManagementStatus(Current,Current,B,1)>>

Note:

ProcessManagementStatus only supports the Current keyword when used in a grid cell; not in a text box object, header, or footer. See Using the Current/Cur Keyword in a Text Function.