Forum

Patrick
Participant
    4 years, 10 months ago #24425
    Up
    1
    Down
    ::

    Thanks a lot
    I have the following solution in use now. It runs perfect:

    Table: set enableBusyIndicator = false *
    Process Dashboard/Story/Connector: Show Busy Indicator = false *
    (*To prevent screen flickering on the smartphone after a standby.)

    DataWorkbench/Global Variables : interval (Any)

    onBeforeShow ->Script:
    var interval = setInterval(function(){
    sap.ui.getCore().byId(“Screen_main–Button_reload”).firePress();
    },300000);
    this.getGlobals().setVar(“interval”, interval);

     

    onAfterHide -> Script:
    try{
    clearInterval(this.getGlobals().getVar(“interval”));
    }catch(err){
    console.log(err);
    }