Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jpjust
Specialist
Specialist

Find qvd source

Hi All,

I am using qliksense. I have few qvd's generated by qvf's.

How can I find the source qvf files for the qvd's?

In qlikview, there is an lineage tool comes in handy to find such information

Thanks

1 Solution

Accepted Solutions
MayilVahanan

Hi @jpjust 

Try like below

Load *, 'https://urdomain.com/sense/app/'&Applink as Link where Len(Trim(Applink))>0;
LOAD
[<?xml version="1.0" encoding="UTF-8" standalone="yes"?>],
TextBetween([<?xml version="1.0" encoding="UTF-8" standalone="yes"?>], '<CreatorDoc>','</CreatorDoc>') as Applink
FROM [lib://vNewProdQVDPath/YourQvdFileName.QVD]
(txt, codepage is 1252, embedded labels, delimiter is \x0);

 

Link <- its provide the app link

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

7 Replies
JordyWegman
Partner - Master
Partner - Master

Hi,

You could use NodeGraph or Platform Manager for this. Otherwise, you could check the logs yourself to see where it's coming from. Otherwise it's pretty hard..

Jordy

Climber

Work smarter, not harder
jpjust
Specialist
Specialist
Author

Thanks Jordy.

Do you have more details on find that info from the logs? Which log I should scan through? Is it the script log of the qvf that reads the qvd?

JordyWegman
Partner - Master
Partner - Master

Hi,

 

It's the script logs of the QVF that creates QVDs. Are you using Desktop or Server of Qlik Sense?

Qlik Sense Desktop Logs:

C:\Users\<username>\Documents\Qlik\Sense\Log

Qlik Sense Server Logs:

C:\ProgramData\Qlik\Sense\Log\Script

 

Jordy

Climber

Work smarter, not harder
MayilVahanan

Hi @jpjust 

You can find the QVD created file (qvf file) with help of metadata - <CreaterDoc>. 
Change the file format from QVD to Delimited to see the metadata.

 

MayilVahanan_0-1618900610202.png

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
jpjust
Specialist
Specialist
Author

Hi Mayil,

I believe it works. I will test few more.

Is it possible to copy the ID to search quickly?

Also, what is the quickest way to find the app? I usually search in QMC. Apps -> Search by adding ID as column selector.

Thanks

MayilVahanan

Hi @jpjust 

Try like below

Load *, 'https://urdomain.com/sense/app/'&Applink as Link where Len(Trim(Applink))>0;
LOAD
[<?xml version="1.0" encoding="UTF-8" standalone="yes"?>],
TextBetween([<?xml version="1.0" encoding="UTF-8" standalone="yes"?>], '<CreatorDoc>','</CreatorDoc>') as Applink
FROM [lib://vNewProdQVDPath/YourQvdFileName.QVD]
(txt, codepage is 1252, embedded labels, delimiter is \x0);

 

Link <- its provide the app link

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
jpjust
Specialist
Specialist
Author

Thanks much!