Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Return a value from a procedure to apex

macwaduFeb 21 2011 — edited Feb 22 2011
Hi

I'm running a procedure that has a return flag if the procedure execute correctly a command i send to him, i do something like this to call the procedure in the apex processes


Declare
x NUMBER;
BEGIN
APEX_SCHEMA.EXECUTE_CREATE_ITEM('asd', x);


DBMS_OUTPUT.PUT_LINE('OUTPUT:'||x);

END;


can i return to the apex the the variable x to show it in success or error message of the process?

Tanks
This post has been answered by Roel Hartman on Feb 21 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 22 2011
Added on Feb 21 2011
10 comments
2,395 views