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

Announcements
April 13–15 - Dare to Unleash a New Professional You at Qlik Connect 2026: Register Now!
cancel
Showing results for 
Search instead for 
Did you mean: 
SKai
Contributor II
Contributor II

How can we find back the QVD file is belongs to which applications?

I currently have more than 2,000 Qlik Sense applications, and I need to trace back a specific QVD file to identify which application generated it, as I need to modify the source app.

Action Taken
I used the following load script to read the QVD header and extract the CreatorDoc field:

LOAD

CreatorDoc

FROM [lib://filepath/xxx.qvd]
(XmlSimple, Table is [QvdTableHeader]);

Issue Encountered

The value returned under CreatorDoc appears as a unique identifier (e.g., ff156753-66e8-4a2c-1237-af55044a1735) rather than the actual application name. As a result, I’m still unable to determine which specific Qlik Sense application created the QVD.

Labels (1)
2 Solutions

Accepted Solutions
robert_mika
Master III
Master III

Look for this string in QMC under App  in the column ID..

Use https://easyqlik.com/csviewer/ for your expiration of QVD's

 

View solution in original post

Vegar
MVP
MVP

I endorse @robert_mika 's suggestion. The code you see is the application id, and you can find it in the QMC/Apps as mentioned.

You could also try accessing it directly via an url, adjust the base of the following url to fit your environment. 

https://your-qliksense-address/sense/app/ff156753-66e8-4a2c-1237-af55044a1735  

View solution in original post

4 Replies
robert_mika
Master III
Master III

Look for this string in QMC under App  in the column ID..

Use https://easyqlik.com/csviewer/ for your expiration of QVD's

 

Vegar
MVP
MVP

I endorse @robert_mika 's suggestion. The code you see is the application id, and you can find it in the QMC/Apps as mentioned.

You could also try accessing it directly via an url, adjust the base of the following url to fit your environment. 

https://your-qliksense-address/sense/app/ff156753-66e8-4a2c-1237-af55044a1735  

SKai
Contributor II
Contributor II
Author

Thank you very much, I am able to trace back the applications!

SKai
Contributor II
Contributor II
Author

Thank you very much, I am able to trace back the applications!