Is it possible to create a variable that is associated with a session profile? Basically the equivalent of a class variable in Java. We have a need to keep a variable between various quick calls. An example would be with an SSH session we have a quickcall that starts a process which sends data to a temporary file. Then there is another quickcall that retrieves the data from the file. We need to store the filename for use between the 2 quickcalls. We could return the filename from the first quickcall and pass it to the second one but not as neat and become difficult for more complex situations. We could create the filename as a global variable but that is messy because the variable could be overwritten by another procedure and we will run into problems if we run 2 sessions.