I have DB element (SQL) that is returning multiple rows in a session data key: ReturnTPRI.
I want to be able to loop back into that same DB element multiple times, but in order for that to work, I need to be able to reset the memory location of the session data key.
I tried setting the value of ReturnTPRI to Null, but that didn't work. It seems like CVP thinks that ReturnTRPI already has a value and is not allowing me to leverage it further.
Does anyone know how to do something like this in Call Studio?
-Ryan
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You could write a custom java element that executes
elementAPI.setSessionData("ReturnTPRI",null);
That would delete the session variable.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
0 comments
Please sign in to leave a comment.