SupportsProcessManagement

Determines if a scenario supports process management. This function can be used in these types of rules:

  • Calculation

  • Translation

  • Consolidation

  • Allocation

Syntax

HS.Scenario.SupportsProcessManagement("Scenario")
HS.Scenario.SupportsProcessManagement("")

Note:

Use a blank string ( "" ) to apply this function to the current scenario.

HS.Scenario.SupportsProcessManagement(Var1)

Table 11-48 Syntax for SupportsProcessManagement Function

Parameter Description

Scenario

A valid scenario.

Var1

VBScript variable representing a Scenario member.

Return Value

A Boolean that is True if the scenario has process management enabled; False otherwise.

Example

In this example, if process management is enabled for the actual scenario, statements between the If and End If statements are executed:

If HS.Scenario.SupportsProcessManagement("Actual") = "TRUE" then
  ...
End IF