Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i have some QV project that i need to have version for it.
it means that when i reload my project set a version on it
can any one help me?
Hi,
Do you mean license? Are you using QlikView Personal Edition? If so, make sure to read this document and keep in mind that every time you open a file you have not created it uses a recovery attempt.
Hope that helps.
Miguel
Hi, I'm not sure if I understood you correctly, but if you want to keep versions of your qvws as backups, you can go to menu -> Settings -> User Preferences -> Save tab ->
Check 'Use backup' and set a number of versions you want to keep.
Hope it helps,
Erich
i think i could not ask my question correctly
i have a QV application that i want to run it on some pc but i want to use it on the other system.
i set some schedule on the first system to reload the application one times in a day and the person who want to use this dashboard should run the app on the second system . the app should send to the second system (from first one) with click once technology. the system of the click once technology is this = when you change something in the app on the first system the next one you run it on second system it will be update the app and click once will understand the change from the version of app on first system
now i want to use some way that when i reload my application automaticly the version of my app change
i use personal edition
Hi,
Keep in mind that with QlikView Personal Edition you can only open documents that you have created, so if you copy one file created in your computer into another, you will use one of the four available recovery attempts. After the fourth attempt used, you will not be able to open documents anymore.
Are you using third party software for the "click once" technology?
Hope that helps.
Miguel
hi miguel
i know that i can just open document in the same time just in ne place
i dont want open it in 2 palce
my plan is somthing like this:
QV app run at 10:00 pm on computer (A) and the user want to see it at 08:00 am of tomarow on (B) system
thanks a lot miguel
i know how ican i schedule my app for auto reload on system
my problem is how can i set version on my app that it can be increase each time when i reoad it
for example:
the vesion of my app is 1.1.4
i will reload it at 10:00 pm
the version of app change to 1.1.5 automaticly
i need this automaticly change of version
Hi,
You need to add a COPY or MOVE command to your BAT file so when the reload has finished, the file is saved (or moved) into another file name.
Hope that helps.
Miguel
If you want a version that you control from within your application, maybe like this:
IF filesize('Version.qvd') > 0 THEN
VERSION:
LOAD rangesum(Version,1) as Version FROM Version.qvd (qvd);
ELSE
VERSION:
LOAD * INLINE [
Version
1
];
endif
Store VERSION into Version.qvd;