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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
gshockxcc
Creator
Creator

QVD reload time in Qliksense

I'm trying to get the reload times for the QVDs in my Qliksense apps, but when I used the QVDReloadTime function, it returns <NULL>.  I am referencing the post below.

Re: QVD Reload Time?

Here's my script statement:

TestData:

Load

*

FROM [lib://QVDs (qlickserver_qliksense_service) (cpsb_coal.creek)/Tests_EOC.qvd] (qvd);

Let vReloadTimeTest = QvdCreateTime(Tests_EOC.qvd);

Do I need to specify the path in more detail?

Thank you in advance.

2 Replies
swuehl
Champion III
Champion III

Have you tried something like

Let vReloadTimeTest = QvdCreateTime('lib://QVDs (qlickserver_qliksense_service) (cpsb_coal.creek)/Tests_EOC.qvd');

its_anandrjs
Champion III
Champion III

Write your expression this way 'Tests_EOC.qvd' with single quotes open and close.

Let vReloadTimeTest = QvdCreateTime('Tests_EOC.qvd');