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!

Process has invalid (non Multi-Row) Editable Region assigned error

user-r1mpzOct 5 2023

Hello, I have created a process which loads the data from user table into my edit profile form page.

begin

select user_id, fname, lname, email
into :P15_USER_ID, :P15_FNAME, :P15_LNAME, :P15_EMAIL
from user
where email = :APP_USER;

exception
when no_data_found then
:P15_USER_ID := null;
:P15_FNAME := null;
:P15_LNAME := null;
:P15_EMAIL := null;
end;

However, I have encountered this error APEX.PROCESS.INVALID_EDITABLE_REGION as shown below. Hence, null was returned for all fields.

Does anyone know why this may be so? And, any thoughts on how I could solve this error? Thank you so much in advance!

Comments
Post Details
Added on Oct 5 2023
2 comments
884 views