Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Action-Packed Learning Awaits! QlikWorld 2023. April 17 - 20 in Las Vegas: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
chetanpatel
Contributor III
Contributor III

How to use Qlik view ReloadTime() function for SQL function or script

want to use  qlick view ReloadTime()  in sql script

Labels (1)
1 Solution

Accepted Solutions
edwin
Master
Master

sorry for the typo:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sql select .... from ....;  //this is your sql load



View solution in original post

2 Replies
edwin
Master
Master

reloadtime is a qlikview function.  if your intent is to add it to the table with your sql result try:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sel select .... from ....;  //this is your sql load
edwin
Master
Master

sorry for the typo:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sql select .... from ....;  //this is your sql load