Returns the review level for the specified process unit.
<HFMwManageProcess>.GetReviewLevel (bstrScenario, bstrYear, bstrPeriod, bstrEntity, bstrParent, bstrValue)
The label of the parent of the entity specified in the bstrEntity argument. | |
Returns a number that represents the process unit’s 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 prints the process unit’s 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.GetReviewLevel ("Budget", "2003", _ "April", "Connecticut", "UnitedStates", "<Entity Currency>") Response.Write "<p>Review level: " & _ cHFMProcMan.MapReviewLevelToString(lLevel) & "</p>"