Performs a start action for the specified process units. The vbApplyToAllPeriods argument determines whether the action applies to one or to multiple process units.
To attach documents when starting, use Start2.
<HFMwManageProcess>.Start (bstrScenario, bstrYear, bstrPeriod, bstrEntity, bstrParent, bstrValue, vbApplyToAllPeriods, bstrComment)
Returns a number that represents the review level. Valid values are represented by the constants listed in Process Management Review Level Constants. Long subtype.
You can obtain a string that represents the review level by passing the return value to MapReviewLevelToString. |
The following example starts the specified process unit and prints the resulting review level to the browser.
Dim cHFMProcMan, lLevel Set cHFMProcMan = _ Server.CreateObject("Hyperion.HFMwManageProcess") ' cHFMSession is a previously set HFMwSession object cHFMProcMan.SetWebSession cHFMSession lLevel = cHFMProcMan.Start("Budget", "2003", "April", _ "Connecticut", "UnitedStates", "<Entity Currency>", FALSE, _ "Annotation") Response.Write "<p>Review level: " & _ cHFMProcMan.MapReviewLevelToString(lLevel) & "</p>"