Business Analytics Global and User Attributes
Business Analytics user and global attributes use the following reserved variable names:
Attributes for users from the User Repository can also beexposed as Business Analyticsuser attributes. For more information on which user attributes are accessiblefrom the User Repository.
Declare a
Business Analytics user attribute in the mashup script as:
<variable name="user.attribute-name" type="string"/>
Once declared, use a
Business Analytics user attribute as:
$user.attribute-name
global: for
Business Analyticsglobal attributes. Global attributes are defined in the
Admin Console..
Use this syntax:
Declare a
Business Analytics global attribute in the mashup script as:
<variable name="global.attribute-name" type="string"/>
Note: | Earlier releases also used"system" as a keyword for global attributes. This keyword is deprecated, but still supported. |
Once declared, use a
Business Analytics global attribute as:
$global.attribute-name
Important: | You must always use the $variable-name syntax for Business Analytics attributes, even for input variables in the <invoke> statement. |