Hello - I'm new to APEX and have a question about processes.
Each process must have an execution point BUT how do I create a process that just acts as a shared plsql function that can be called from any of the processes that do have an execution point. I used to build Oracle Forms where you could create 'Program Units' that were basically client side shared plsql that coud be called from a trigger (a bit like an apex process with an execution point) or from any other program unit. I've searched around and nobody seems to be asking this question which tells me I may be missing something ?
I'm aware of an on-demand application level processes but this seems to be something that's called from the browser/AJAX - which is not what I'm after - I'm talking about shared code that can be called by other triggered processes during processing or rendering (like a page level shared object) . I'm also aware that this can be acheived using database plsql (outside apex) but obviously all references to session state would need to be passed as parameters so there still seems to be a gap.