Skip to Main Content

Oracle Forms

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!

Error frm-40735 ora-01403

643155Jan 16 2009 — edited Jan 16 2009
I read that this is a general purpose error for Forms, but I couldn't find an answer for my situation. I have a datablock based on a view, and a command button that has a trigger for selecting values into the block where one of the blocks fields matches those records. Here is the pl/sql code for the button's when-button-pressed trigger:

BEGIN
SELECT VIEW.ATTRIBUTE1, VIEW.ATTRIBUTE2
INTO :DATABLOCK.TEXTFIELD1, :DATABLOCK.TEXTFIELD2
FROM VIEW
WHERE :DATABLOCK.TEXTFIELD = VIEW.ATTRIBUTE3;
END;

When I try to run this in Forms, I get the Error frm-40735 ora-01403. I can run similar code from SQL Plus. I would really appreciate some help.

regards
This post has been answered by Andreas Weiden on Jan 16 2009
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 13 2009
Added on Jan 16 2009
6 comments
6,817 views