How to Create a Variable of String Type
912065Feb 9 2012 — edited Mar 27 2012Hi All,
I am developing a business rules for my classic planning application, using Hyperion Calculation Manager.
I came across a situation where i need to store a string value in some variable.
For this i created a variable (Created both replacement and Execution variable), then
write a following Script to assign it a value:
e.g {Var_EXecution_StringVal} = "Some String";
but the script didn't validated, i then tried the same with replacement variable, the type of my replacement variable is string like:
{Var_Replacement_StringVal} = "Some String";
still didn't validated.
I even try this
{Var_Replacement_StringVal} = @SUBSTRING ("1Some String",1); but didn't succeded
But i have one more execution variable for storing numeric value:
{V_Execution_Max} = 100;
This script validated successfully.
Note: I am not able to use the default value. Because this script changes the value of variable before i execute an other formula. So i need to run the above script in some manner instead of using default values.
Edited by: 909062 on Feb 9, 2012 9:54 PM