cancel
Showing results for 
Search instead for 
Did you mean: 

Sap Analytics cloud (SAC) - Application Designer: linked dimensions

nicola_boschetti
Explorer
1,816

Hi all, I've some questions about the new tool Application Designer. In particular, it can create a table with linked dimension like it's done with "Stories"? For each table or chart it can add one model, but I have to filter my table with dimension of another model. Let's me explain with an example:

I have a table which contain data of a single Order with only its code and its description and I have to filter these data only by a Date field of another model, that shows me the order for that date.

These two models are imported by csv files. I can't link these two models, can you help me?

Kind regards!

View Entire Topic
former_member234401
Active Participant
0 Kudos

Hi

Linked analysis is not used in app design - if you want to filter across viz- you have to apply the filtering by script (java)

1) pick up you dimension member (what you clicked) on

2) pass this selection to the other data source and filter on the selected dimension member

In Lumira designer:

Get selected member from ds_1

Set filter on ds_2

nicola_boschetti
Explorer

Hi Renè, what you say is correct, I was already using JavaScript functions. My goal now is to take the filtered cells of a specific dimension, without select them. Example: I have one table reporting day of week (Monday....Sunday). I would like to apply a filter which select only Friday and then add it as a new item of a Dropdown.

I tried to use Table_1.getDataSource().getMembers("Day") (with filter applied), but it retrieves all days, not the filtered one. Any suggestion?