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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
omid5ive
Creator II
Creator II

Qv version

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?

9 Replies
Miguel_Angel_Baeyens

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

erichshiino
Partner - Master
Partner - Master

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

omid5ive
Creator II
Creator II
Author

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

Miguel_Angel_Baeyens

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

omid5ive
Creator II
Creator II
Author

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

Miguel_Angel_Baeyens

Hi,

Check this post on how to create the BAT file and this one in regards to create a task that runs QlikView unattended using Windows Scheduler.

Hope that helps.

Miguel

omid5ive
Creator II
Creator II
Author

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

Miguel_Angel_Baeyens

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

swuehl
MVP
MVP

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;