cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Analytics applications - Possibility of pausing the table update when using the navigation panel

larissa_martins
Explorer
0 Kudos

Hi All,

I would like to know if there is a way to pause the update when we are using the navigation panel in SAC, because every new measure or dimension we add to the table, it will be updated, so depending on how many fields we need to add/remove, it will take a long time.

I know it's possible to add a script to pause it, but I couldn't activate it after making all the changes.

I also know this is possible in Excel/Analysis for Office, so I'd like to confirm if it's also possible in SAC (classic mode)

navigation-panel.png

I really appreacite your answer on this question.

Thank you in advance.

Larissa Martins

Accepted Solutions (1)

Accepted Solutions (1)

eeddggaarr
Contributor
0 Kudos

Hi Larissa,

before you open navigation panel use code below to deactivate update of table 1:

Table_1.getDataSource().setRefreshPaused(true);

let user open navigatoin panel with e.g. a button with:

Table_1.openNavigationPanel();

with open navigation panel you can change settings on this panel without updating your table.
an additional button could trigger update of your table and close navigation panel:

Table_1.getDataSource().setRefreshPaused(false);
Table_1.closeNavigationPanel();

br
edgar

larissa_martins
Explorer
0 Kudos
Hi Edgar,
larissa_martins
Explorer
0 Kudos
Hi Edgar, Thank you!

Answers (1)

Answers (1)

GregBotticchio
Advisor
Advisor
0 Kudos

Hello,

Please, would this also apply to the SAC Story Table in optimised mode?

Thanks in advance!

Best regards,

GB