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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ORA-01403: no data found

MarilynBTAug 13 2008 — edited Aug 14 2008
Hi,
I'm getting the following error when i try to access the element value in the row of a tabular form/report.

ORA-01403: no data found

I have a row selector added to the form and created a process with the following code (simplified):
DECLARE
   vRow           BINARY_INTEGER;
 BEGIN
   :P41_SELECTEDROWS := NULL;

   FOR i IN 1 .. apex_application.g_f01.COUNT LOOP

      vRow := apex_application.g_f01(i);

      if apex_application.g_f03(vRow) is not null then
         :P41_SELECTEDROWS := :P41_SELECTEDROWS ||' '|| apex_application.g_f03(vRow);
      end if;
END;
The odd thing is, if I changed 3 to a 1 in "apex_application.g_f03(vRow)" in the code, it works else it will give me the above error. The tabular form has 8 columns.

I would greatly appreciate your help!

Thanks,
Marilyn
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 11 2008
Added on Aug 13 2008
12 comments
1,810 views