Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

last reload from another application

Hello qlikers 🙂 ,

I want to have the informations about another application. When was the last reload of this application ? 

ReloadTime()

There is a option to get the last ReloadTime, but unfortunately no option for another application ? 

Do you have any idea to get the last reload information from another application ?

Thank you in advance! Looking forward to reading some answers!  

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

You may use filetime() whereby it won't directly return the value from the last reload else from the last saving - but in the most cases it's (nearly) the same.

Another approach could be to write this kind of information within a table by the end of the script, maybe with something like this:

AppInfo: load documentname() as App, now() as ReloadTime autogenerate 1;
store AppInfo into FileNameAppInfo.qvd (qvd);

- Marcus

View solution in original post

1 Reply
marcus_sommer
MVP
MVP

You may use filetime() whereby it won't directly return the value from the last reload else from the last saving - but in the most cases it's (nearly) the same.

Another approach could be to write this kind of information within a table by the end of the script, maybe with something like this:

AppInfo: load documentname() as App, now() as ReloadTime autogenerate 1;
store AppInfo into FileNameAppInfo.qvd (qvd);

- Marcus