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!

In APEX Input text value passing as null to PL/SQL Procedure parameter in APEX Dynamic Action

Ahmad Al-ZaabiSep 22 2022 — edited Sep 22 2022

Hi,

We created a text field item(P1_COMMENTS) in oracle APEX page. This item create at page level only. this is neither a database field nor a table column.

When user submit the button execute the PL/SQL Procedure through dynamic action process.

This PL/SQL procedure has one input parameter. The above text field value mapped to PL/SQL procedure input parameter with bind variable (:P1_COMMENTS). After click on submit button PL/SQL procedure executed with out any errors. However, The text filed item value passing null instead of user enter value.

I test the procedure input parameter with hardcode value. it's working. Parameter taken this Hardcode value and procedure executed after click on submit button.

BEGIN

XXX_APPROVE_REQUEST.ACTION(P_COMMENTS=>:P1_COMMENTS);

END;

Please help me to solve this.

This post has been answered by Lauricio on Sep 23 2022
Jump to Answer
Comments
Post Details
Added on Sep 22 2022
2 comments
1,399 views