Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Mamta123
Contributor II
Contributor II

Need to capture the Date and time when an app was last updated

I have developed the Qliksense App.

I have a requirement to capture the time when the app was last updated. how do I capture it.

Please provide a solution on this one.

Labels (1)
2 Solutions

Accepted Solutions
lachlanwwells
Partner - Contributor III
Partner - Contributor III

Hi there,

You can find the last time the app was reloaded by using the function 'ReloadTime()'

i.e. in the load script as a variable:

LET LastUpdated = ReloadTime();

View solution in original post

nikitadeshwal
Partner - Contributor III
Partner - Contributor III

Hi,

You will See below in the Main tab of  Data Load Editor

SET TimestampFormat='DD/MM/YYYY h:mm:ss[.fff] TT';

Just remove ss from that and keep as below

SET TimestampFormat='DD/MM/YYYY h:mm[.fff] TT';

Regards,

Nikita Deshwal

View solution in original post

4 Replies
lachlanwwells
Partner - Contributor III
Partner - Contributor III

Hi there,

You can find the last time the app was reloaded by using the function 'ReloadTime()'

i.e. in the load script as a variable:

LET LastUpdated = ReloadTime();

Mamta123
Contributor II
Contributor II
Author

Can you tell me how to format  reloadtime() date and time . I do not want seconds 

I want date and time(hrs and minutes) . I need to remove seconds

nikitadeshwal
Partner - Contributor III
Partner - Contributor III

Hi,

You will See below in the Main tab of  Data Load Editor

SET TimestampFormat='DD/MM/YYYY h:mm:ss[.fff] TT';

Just remove ss from that and keep as below

SET TimestampFormat='DD/MM/YYYY h:mm[.fff] TT';

Regards,

Nikita Deshwal

carlcimino
Creator II
Creator II

Using November 2019 and I have the variable in my app with =reloadtime()...  However that only works when I reload manually.  It does not work when the app is reloaded from a QMC task.  Anyone else have that issue?