Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Retrieve a. Pdf file associated with a dimension

I want to open a pdf document that contains the characteristics of the product.

when I select a product that you want to open the documento.pdf relative
can someone tell me a solution?

thanks

3 Replies
jvishnuram
Partner - Creator III
Partner - Creator III

Hi Macro,

You want this features, when you used access point right. 

Anonymous
Not applicable
Author

yes

thanks

jvishnuram
Partner - Creator III
Partner - Creator III

Hi Macro use this script,

LOAD * INLINE [

    PRODUCT, LINK

    Product 1, http://your server url/download/p1.pdf

    Product 2, http://your server url/download/p2.pdf

    Product 3, http://your server url/download/p3.pdf

    Product 4, http://your server url/download/p4.pdf

];

and

Step 1: save your pdf files in the ..\Program Files\QlikView\Web\Download folder

Step 2: Link the PRODUCT column to your data model, so that based on your selection the pdf will get download

Step 3: Put a chart with an expression =Only(' Download'&'<url>'&LINK)