Ray
1
I seem to be missing something here
I am running if statements and if the condition is not met I want the flow to exit.
Similar to:
function dosomething(invar) {
if (invar == false) {
return;
}
if (invar == true) {
dosomething();
}
}
Instead I have to do noob way:
sid
2
Hi.
Use response step.
It exits the SA with defined status code and message/data.
Ray
3
there is no response step in the pageflow (frontend) unless if I am missing a trick.
sid
4
Ah… Missed that it was flow.
Using conditions is the only way I know of.