Variables

You can define variables and also call them in scripts. Characteristics of variables include:

The following excerpt shows an example of using variables to create a shared dimension.

// Create Shared Dimension Script
set bpmaserverurl=http://localhost/hyperion-bpma-server;
set workspaceurl=http://localhost:19000/workspace;

login admin,password;
var DimType='Scenario';
// Create a shared dimension
create Dimension
	Properties(DimensionName, DimensionDescription, DimensionType)
	Values('S1','New Scenario','$DimType'); 

There are three types of variables: