Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Run Qlikview application based on Flag in the database table

I would like to run a qlikview application from QMC only if the flag is defined as Yes in the database table.

If (select val from table) returns Yes then

            Task successful

Else

            Task failed.

Please help.

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

What you need is an EDX.

So if the condition is true you trigger the task using EDX.

For more info check link below.

Using EDX in QlikView 11 - basic example

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
sasiparupudi1
Master III
Master III

may be try exit when in the load script

connect to your db

T1:

SQL Select flag From your Table;

Let vFalg=Peek('flag',0,'T1);

Exit Script When $(vFlag)=1;