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!

Submit Button in APEX 3.2.1 SQL Query (updateable report)

Sylvia PaganFeb 25 2014 — edited Feb 28 2014

Hi all,

I am fairly new to APEX.  I have an updateable report and have created a button for every row as follows:

<input type="button" value="Task Complete" onclick="doSubmit('#REF_STEP_ID#');" />

I have a PL/SQL anonymous block process that calls an oracle procedure On Submit - After Computations and Validations:

BEGIN

tta_pkg.p_task_complete(:REQUEST);

END;

The button works and calls the Oracle procedure.  My problem is that the process will try to run anytime the page gets submitted due to any other process in the page.  The error I am getting when another process submits the page is as follows.

ORA-06502:  PL/SQL: numeric or value error:  character to number conversion error.   ( If I disable the process, the page works and all other processes are submitted successfully).

Does anyone have any ideas?  They will be greatly appreciated.

Thank you,

Sylvia

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 28 2014
Added on Feb 25 2014
1 comment
1,826 views