SignOff

Performs a sign off action on the specified process unit.

To attach documents while signing off on an action, use SignOff2.

Syntax

<HFMwManageProcess>.SignOff bstrScenario, bstrYear, bstrPeriod, bstrEntity, bstrParent, bstrValue, bstrComment

Argument

Description

bstrScenario

The label of the process unit's Scenario dimension member.

Input argument. String subtype.

bstrYear

The label of the process unit's Year dimension member.

Input argument. String subtype.

bstrPeriod

The label of the process unit's Period dimension member.

Input argument. String subtype.

bstrEntity

The label of the process unit's Entity dimension member.

Input argument. String subtype.

bstrParent

The label of the parent of the entity specified in the bstrEntity argument.

Input argument. String subtype.

bstrValue

The label of the process unit's Value dimension member.

Input argument. String subtype.

bstrComment

A user comment for the action, or an empty string if there is no comment.

Input argument. String subtype.

Example

The following example performs a sign off action for the specified process unit.

Dim cHFMProcMan, lLevel
Set cHFMProcMan = _ 
Server.CreateObject("Hyperion.HFMwManageProcess")
' cHFMSession is a previously set HFMwSession object
cHFMProcMan.SetWebSession cHFMSession
cHFMProcMan.SignOff "Budget", "2003", "April", _ 
"Connecticut", "UnitedStates", "<Entity Currency>", _ 
"OK"