Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nasirsaikh
Creator
Creator

Want to Store file in PDF format.

Hi Guys,

I want to store Qlik Sense data into the PDF format from the script can any one help me how i can do...

When i am storing the file gets corrupted below is the script..

STORE NOTIFICATIONS INTO [lib://QVD (toi-bi_administrator)/Email_Log.pdf];

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

The STORE script statement only supports two formats for output. QVD and TXT (which is really CSV).  You specify this as the parameter in parens after the STORE.

STORE NOTIFICATIONS INTO [lib://QVD (toi-bi_administrator)/Email_Log.qvd]  (qvd);


STORE NOTIFICATIONS INTO [lib://QVD (toi-bi_administrator)/Email_Log.qvd]  (txt);


There is no provision to store a data table into PDF format from the script. You can export charts (objects) to PDF from the UI.  You can also use NPrinting to store objects to PDF in batch,  Conceivably, you could also write a program -- NodeJs and javascript for example -- to export objects to PDF in a separate batch process, not script.


-Rob

http://masterssummit.com

http://qlikviewcookbook.com

http://www.easyqlik.com

View solution in original post

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

The STORE script statement only supports two formats for output. QVD and TXT (which is really CSV).  You specify this as the parameter in parens after the STORE.

STORE NOTIFICATIONS INTO [lib://QVD (toi-bi_administrator)/Email_Log.qvd]  (qvd);


STORE NOTIFICATIONS INTO [lib://QVD (toi-bi_administrator)/Email_Log.qvd]  (txt);


There is no provision to store a data table into PDF format from the script. You can export charts (objects) to PDF from the UI.  You can also use NPrinting to store objects to PDF in batch,  Conceivably, you could also write a program -- NodeJs and javascript for example -- to export objects to PDF in a separate batch process, not script.


-Rob

http://masterssummit.com

http://qlikviewcookbook.com

http://www.easyqlik.com