Planning User Variables

Planning user variables return the user variable’s member.

Calculation Manager Syntax:

[[PlanningFunctions.getUserVarValue("xyz")]]

Example:

FIX (Feb, Actual, Working, P_000, [[PlanningFunctions.getUserVarValue("Entity View")]] )
   "5800" = 40;
ENDFIX

In this application there is a Planning User Variable named Entity View. For this user it is set to 112. So the example above the script returns:

FIX (Feb, Actual, Working, P_000, "112") 
   "5800" = 40;
ENDFIX