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!

Close form that has opened from another form

user563887Nov 9 2011 — edited Nov 9 2011
Hi,

I have used custom.pll so that when a specific action is performed on Form0 instead of opening Form1 to open Form2 instead.

if (event_name = 'WHEN-CREATE-RECORD') THEN
if (form_name = 'ARXCUDCI' AND BLOCK_NAME = 'ORG_NS_FIND_FOLDER') then
call_form(fnd_navigate.formpath('XXE', 'FORM2'),NO_HIDE,DO_REPLACE);
END IF;
END IF;

The problem is that when Form2 is closed, Form1 is displayed.

Are there any suggestions on how to prevent Form1 to be diplayed using custom code on custom.pll or on Form2 but not Form0 or Form1?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 7 2011
Added on Nov 9 2011
4 comments
265 views