I have a procedure which is usually taking long time to execute. When this is executing, it insert a process log into a table.
For Example:
- inserting row 1: Loading Data to Update...
//after some code execution
- inserting row 2: Creating table abc...
I need to display these process log steps in Oracle APEX page item one by one, so that user can see the current step of the procedure execution in frontend.
I created a button (name: START_PROC) and calling a dynamic action which is executing one Ajax process using JavaScript code and in that process I have added htp.p() which is returning the content to one TextArea item.
But the problem is this returns all the process step inserted into table at one go, not one by one.