Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Buenos dias a todos,
Quiero crear un boton de recarga de datos para una hoja de real-time.
Para ello he añadido un boton para que se pueda recargar en demanada.
Me da opción a elegir en las propiedades "Recarga Parcial" y he visto que si pones una linea en el script de carga, solo se carga la tabla que quieras reemplazar. Las demas quedarian para la carga a traves de "task" (preautomatizada)
Saludos y muchas gracias
the problem with the reload by a button is, that this only can use the owner of the app.
If the app is published and a user is click on the button, the reload won't be done.
Regards
Thanks for the response.
So how can I achieve the use case ?
Thank you
maybe using this?
Qlik Sense is a BI system, not an ERP, so why need to reload the datas every minute?
Hello @martinpohl,
Thanks for reply
Yes, in this particular case I would need to allow to the user reload the data in real-time in order to check how the data trend goes.
Simply, another feature which enhance the report requested by the key.
I was wondering if it is feasible to do it
Thank you
Hello there,
The approach will be something like this.
If(IsPartialreload() = true()) then
LIB CONNECT TO 'Athena';
IF TableNumber('tablename') >= 0 THEN
DROP TABLE tablename;
END IF;
"Table which want to be reload at the time"
else
"Rest of the code for reloading by task"