Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to populate a customerised message into the script execution progress window?

Hi All,


Do you know if there is anyway I can populate a customerised message into the script execution progress window?

My Qlikview program actually called a store procedure before it download the data and the store procedure may take up to 10 mins before to finish. Therefore, I want to populate a message to the script execution progress window so that the user know it will take up to10 mins before he/she click the "Close" button. Anyone know how to do it?

Thanks a lot!


1 Solution

Accepted Solutions
manojkulkarni
Partner - Specialist II
Partner - Specialist II

Include Trace Statement with Message to be displayed before reload start.

eg

trace "Execution will take 20 Mins"

trace "Load Started" etc

View solution in original post

4 Replies
manojkulkarni
Partner - Specialist II
Partner - Specialist II

Include Trace Statement with Message to be displayed before reload start.

eg

trace "Execution will take 20 Mins"

trace "Load Started" etc

jagan
Luminary Alumni
Luminary Alumni

HI,

Try TRACE Statement like below

TRACE Script execution in progress it will take up to10 mins

Hope this helps you.

Regards,

Jagan.

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Don't forget the terminating semicolon, or a big part of your script may become a trace message.

TRACE is still a statement

Peter

Not applicable
Author

Thanks to everyone for all of your help!. My problem resolved.