Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlikview - Breakpoint

I know that we can create a Breakpoint in debug window.

Can we create a Breakpoint within the script? You have options:

a)  /* Breakpoint */

b) // Breakpoint

c) REM Breakpoint

1 Solution

Accepted Solutions
sdmech81
Specialist
Specialist

But wts the purpose of break pints in script..

Whn u put break points in debugger its as good as putting break points fr script only..

Directly u cannot put on script the breaks,its only exit script aftr certain steps..

Sachin

View solution in original post

6 Replies
Chanty4u
MVP
MVP

do you mean  Exit Script;    ?

sdmech81
Specialist
Specialist

Yess..

For that u have to say: exit script aftr whr u want to stop the script..

Like:

Load * from table 1;

exit script;

Load * from Table 2;

Here it runs only till loading table 1.

Sachin

Not applicable
Author

Not Exit Script. My question is on Breakpoint.

sdmech81
Specialist
Specialist

But wts the purpose of break pints in script..

Whn u put break points in debugger its as good as putting break points fr script only..

Directly u cannot put on script the breaks,its only exit script aftr certain steps..

Sachin

Not applicable
Author

You can't put break points in script level .

only way is to put exist script .

else

u can write like this

if(col1)>0 then

load *;

else

load * from t2;

end if