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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
saivina2920
Creator
Creator

How do i call Oracle Hyperlink statement into Qlikview report table

I have below fields in oracle.

'http://emy.amoia.org/webtop/Mmols/objId/' || emp.emp_id ||'/ver/New' as HyperlinkDoc

how do i call the above fields in LOAD statement followed by select statement.

Labels (2)
1 Reply
Nicole-Smith
MVP
MVP

Table:
LOAD 'http://emy.amoia.org/webtop/Mmols/objId/' & emp_id & '/ver/New' as HyperlinkDoc;
SELECT (all of your fields, make sure you include emp.emp_id)
FROM YourTable;

 

Note: If you rename emp_id in the SELECT statement, you will need to put whatever you renamed it to in the LOAD statement.