
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2014 02:11 PM
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
Solved! Go to Solution.
- Labels:
-
Customer Voice Portal
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2014 03:55 PM
You could write a custom java element that executes
elementAPI.setSessionData("ReturnTPRI",null);
That would delete the session variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2014 03:55 PM
You could write a custom java element that executes
elementAPI.setSessionData("ReturnTPRI",null);
That would delete the session variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2014 08:50 PM
jgraves I was hoping that you wouldn't say that
Thanks Janine
