This portal is to open public enhancement requests against products and services offered by the IBM Data Platform organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
Shape the future of IBM!
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Search existing ideas
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post your ideas
Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,
Post an idea
Upvote ideas that matter most to you
Get feedback from the IBM team to refine your idea
Specific links you will want to bookmark for future use
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
IBM Employees should enter Ideas at https://ideas.ibm.com
Hello Stuart,
maybe I oversee some brackets or maybe there is sth else.
And one question in advance concerning refresh and process:
If we create a new view by process and we use a RestApi-call to refresh the view, do we get the refresh, even if the view is already open?
I have a sample for a Set MDX:
STRTOSET("[dim_Measure].[" +"test"+ "].Members")
If I select the test hierarchy, this MDX is valid.
If I am at another hierarchy in the set, I get the following error:
##################
MDX error
Validation failed.The server is temporarily unable to service your request due to a TM1 execution error. Please try again later or contact your administrator.
##################
Here is a sample MDX for the view cell with a possible hierarchy name: test
The name is: cub_User_Raum_neu with 3 dimensions: dim_User / dim_Raeume / dim_Measure
###################
SELECT
{
STRTOSET("[dim_Measure].[" +
[cub_User_Raum_neu].(
[dim_User].[11],
[dim_Raeume].[raum2],
[dim_Measure].[kommentar]) +
"].levels(0).Members")
} ON 0,
{
[dim_Raeume].[dim_Raeume].MEMBERS
} ON 1
FROM
[cub_User_Raum_neu]
WHERE (
[dim_User].[dim_User].[11])
###################
If I put this to the view, I get the following error message:
Unable to update MDX. CellsetMismatch: dRx2SY8QAIAcAAAg
If I put the StrToSet-expression to the Measure-dimension with the hierachy test, everything is fine:
If I put the following expression:
###############################
SELECT
{
STRTOSET( "" +
[cub_User_Raum_neu].
([dim_User].[11],[dim_Raeume].[raum2],[dim_Measure].[kommentar])
)
} ON 0,
{
[dim_Raeume].[dim_Raeume].MEMBERS
} ON 1
FROM
[cub_User_Raum_neu]
WHERE (
[dim_User].[dim_User].[11])
###############################
I don't get any error, however, the dim_measure-dimension is going to the "workbench", however, not with the right hierarchy, but there at least is no further error.
Another sample could be with the real selection cube with 3 dimensions:
}Clients / dim_Dimensnion / measure_dim
I try to simulate the following behavior:
// [Proj].[only_RS].LEVELS(0).MEMBERS
#####################################
SELECT
{
[dim_Measure].[dim_Measure].MEMBERS
} ON 0,
{
STRTOSET("[Proj].[" +
[cube_Selection].(
STRTOMEMBER("[}Clients].[" + USERNAME + "]"),
[dim_Adim].[Proj],
[dim_Measure].[Selektion_6]) +
"].Members")
} ON 1
FROM
[Product_Cube]
WHERE (
[dim_Versi].[dim_Versi].[All_VERSI^12xx],
[dim_Mema].[dim_Mema].[All_Measures^Month])
#####################################
Thanks in advance.
With best regards,
Vitalij
is there any update?