I am calling a stored procedure from within BizTalk.
Inside the stored procedure I have a variable called isOK whcih is set to 0 at first but if everything executes inside the SP it sets the variable to 1.
Now I have a decide shape inside my orchestration and I want to say …
If SP.isOK = 1 then …..
Else ……..
But how do I access the isOK variable from within an orchestration?