FUNC-NAME
The FUNC-NAME terminal in the MaxL language represents the name of a custom-defined Essbase calculator function (CDF). A global function name is a single token, while a local (application-level) function name has two tokens.
The name of a custom-defined function is a unique string that begins with a letter or a @, #, $, _ symbol. The name can include alphanumeric characters or the aforementioned symbols. Oracle recommends that you start a function name with @.
Any token of the name that contains special characters (see MaxL Syntax Notes), must be enclosed in single or double quotation marks.
Syntax
Syntax for local (application-level) function:
name1.name2
Syntax for global function:
name2
-
name1—Application name.
-
name2—Function name.
Type
name (see MaxL Syntax Notes)
Example
-
Example of a local function:
Sample.'@COVARIANCE'
-
Example of a global function:
'@COVARIANCE'