I have a procedure that dynamically takes application id as input and displays the result as per application id.
So if :
exec get_app_data(11);
Result would be:
A B C
1 2 3
1 2 3
And if:
exec get_app_data(12);
D E F
1 2 3
1 2 3
So basically it caters the requirement of dynamically changing column headers and displaying dynamic views.
Now how do i add this procedure to oracle apex page? I understand it would be first added as a page process for execution, but how do i display the results also since the results are dynamic and at runtime?
EDIT: For further clarity this is the procedure which is being executed: