1 olap.cube.getName
<olap.schema.getCube>
<value /> !
</olap.schema.getCube>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | cube | Cube of which you want to obtain the name. |
Returns | |
---|---|
Type | Description |
array | Returns the name of the cube of the schema passed as argument. |
Example
Copy
<xsql-script name='olap_schema_getName'> <body> <iterator name='m_cube'> <in> <olap.schema.getCube name='Sales'> <olap.schema name='s_foodmart' /> </olap.schema.getCube> </in> <do> <println><olap.cube.getName><m_cube /></olap.cube.getName></println> </do> </iterator> </body> </xsql-script>