Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
any idea where on server files\ loggs i can find last update time of each model?
Maybe you runs with a loop through your folders and read these informations from the files like in these example:
For each vFileName in Filelist ('C:\Path\*.qvw')
Load '$(vFileName)' as FileName, filetime('$(vFileName)') as FileTime autogenerate 1;
Next vFileName
- Marcus
That is the date and time of the log-file itself.Or if you prefer to look inside the log-file it is the last entry's data and time.
The QlikView WebServer (AccessPoint) is actually just checking the date and time of the QVW-file in the Documents folder of the QlikView Server. All these three places should be the same date and time.
Maybe you runs with a loop through your folders and read these informations from the files like in these example:
For each vFileName in Filelist ('C:\Path\*.qvw')
Load '$(vFileName)' as FileName, filetime('$(vFileName)') as FileTime autogenerate 1;
Next vFileName
- Marcus
Thank you!,
i guess vFileName should be created from advanced?
To use these kind of file-functions isn't very complicated. If you searched within the help by "for each" you will find a very useful example and of course within the community, too - like this one: Loops in the Script.
- Marcus
Thank you very much,
Ilan
Maybe you should mark one or more of the other post as Helpful? Your own post doesn't add much to answering the original question, don't you think? Thanks.
Peter
you are right, marked Marcus answer as correct.
thank you for remark.