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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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 (1)
1 Reply
Nicole-Smith

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.