Getting the Formula Engine Operators

Gets all operators of the formula engine. This can be used to create formulas in the Report Specification or define variables in the document dictionary.

Request

GET <webiURL>/configuration/operators

Response

Response type: application/xml or application/json

Response body: details of the document operators available from the formula engine. Each operator is described as follows:

  • <id>
  • <name>
  • <description>
  • <syntax>

Example

<operators>  
    <operator>    
        <id>LINEAR</id>    
        <name>Linear</name>   
        <description>Tells the Interpolation function to use linear regression to supply 
            missing measure values</description>
        <syntax>Linear</syntax>
    </operator>
    <operator>
        <id>INLIST</id>
        <name>InList</name>
        <description>Determines if a value is in a list</description>
        <syntax>bool test_value Inlist(value_list)</syntax>  
    </operator> 
</operators>