CubeDRGetConflicts function for IBM Planning Analytics (TM1)
CubeDRGetConflicts gets the current data reservation conflicts of the cube. This function applies to dimensions with one or more hierarchies, while CubeDataReservationGetConflicts is used for dimensions with a single hierarchy.
Learn how to use the CubeDRGetConflicts to check if there are data reservation conflicts for user TEST in the Product Type by Region cube. The result will be seen in the server logs.
Where can the CubeDRGetConflicts function be used?
TurboIntegrator
Which TM1 Server version is the CubeDRGetConflicts function available for?
Version 11 and 12
What is the syntax for CubeDRGetConflicts?
CubeDRGetConflicts(Index, CubeName, User, ElementList)
- Index = This starts at one if there is a reservation. A while loop can be used to loop through the indexes by increasing the index.
- CubeName = The cube where the data reservation will be acquired.
- User = The user for which the data will be acquired.
- ElementList = This needs the hierarchy and then the element of each dimension in the cube. It also needs to be in the order that the dimensions are ordered in the cube.
Relevant Functions
- CubeDataReservationAcquire = Acquires data reservation for a cube, user and intersection
- CubeDataReservationGet = Finds the data reservations for a cube
- CubeDataReservationGetConflicts = Gets data reservation set for a cube that conflicts with a user, address and tuple
- CubeDataReservationRelease = Releases the data reservation for a cube, user and address
- CubeDataReservationReleaseAll = Releases all the data reservations specified
- CubeDRAcquire = Acquires data reservation for a user in a cube according to an element list. This function applies to dimensions with one or more hierarchies, while CubeDataReservationAcquire is used for dimensions with a single hierarchy
- CubeDRGet = Finds existing reservations on a specific cube for all or one user. This function applies to dimensions with one or more hierarchies, while CubeDataReservationGet is used for dimensions with a single hierarchy.
- CubeDRGetConflicts = Gets the cube’s current data reservation conflicts. This function applies to dimensions with one or more hierarchies, while CubeDataReservationGetConflicts is used for dimensions with a single hierarchy.
- CubeDRRelease = Releases the data reservation specified in the element list. This function applies to dimensions with one or more hierarchies, while CubeDataReservationRelease is used for dimensions with a single hierarchy.
- CubeDRReleaseAll = Releases all the data reservations specified in the element list. This function applies to dimensions with one or more hierarchies, while CubeDataReservationReleaseAll is used for dimensions with a single hierarchy.