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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
patrik_seger
Partner - Creator
Partner - Creator

Get QlikView version from within an Extension Object...

Hi

I need to find out the QlikView version (and build) from inside my Extension Object. I haven't browsed through the Qva or the qva yet, maybe its there somewhere.

Anyone that could give a hint?

Br Patrik

1 Solution

Accepted Solutions
Not applicable

Hi Patrik,

You can get this by utilizing the system function named QlikViewVersion() which will give you something this 11.20.11922.0409.10.

On your Definition.xml:

<Text Label="Document :" Initial="" Expression="=QlikViewVersion()"/>

Then on you Sript.js access the Text you defined above:

alert("QlikView Version:"+this.Layout.Text0.text);

Hopefully this helps.

Thanks,

Arnold

View solution in original post

2 Replies
Not applicable

Hi Patrik,

You can get this by utilizing the system function named QlikViewVersion() which will give you something this 11.20.11922.0409.10.

On your Definition.xml:

<Text Label="Document :" Initial="" Expression="=QlikViewVersion()"/>

Then on you Sript.js access the Text you defined above:

alert("QlikView Version:"+this.Layout.Text0.text);

Hopefully this helps.

Thanks,

Arnold

patrik_seger
Partner - Creator
Partner - Creator
Author

Hi Arnold

Brilliant! You saved my day!

Br Patrik