Idea Summary
A way to create an APEX Session level temporary table.
Use Case
- Alternative for APEX Collections.
- Uses actual column names ( `user_name`, `sal` ) instead of generic ones ( `C001`, `N001`, etc )
Preferred Solution (Optional)
(prefered solution would be to create & enhance the ability to create a RAS Session temporary table at the SQL prompt. `create xs temporary table ….`. But, that may be out of scope)
For RAS capable editions, a hidden column + a generic RAS Policy could be used.
`alter table apex_temp add ( “__session_id” varchar2(32) invisible default v('session_id') not null )`
For SE, this would have to be an update-able view on the hidden version of the above table.
utilities for cleanup will be required. queue for deletion of row will also be required.