CubeDataReservationRelease

CubeDataReservationRelease releases the specified Data Reservation.

If the user specified is not the same as the owner of the reservation, then the release will only succeed if the user specified has the DataReservationOverride capability enabled.

This function is valid in processes only.

This function is not supported in processes on TM1 Database 12.

Syntax

CubeDataReservationRelease(Cube, User, Address,[AddressDelimiter])

Argument

Description

Cube

Name of the cube.

User

Name of the owner of the reservation.

The user name supplied will be validated to make sure it is an existing user.

Address

Tokenized string sequence of element names that define the tuple. The order must match the original dimension order of the cube.

AddressDelimiter

Optional character string that is used to separate element names in the Address parameter.

Default value is '|'.

Return Value

Boolean - returns true if the release succeeded.

Example

CubeDataReservationRelease('DRTestCube','User1','ElemX|ElemY|ElemZ');

The following example uses a different character for the AddressDelimiter parameter.

CubeDataReservationRelease('DRTestCube','User2','ElemX*ElemY*ElemZ','*');