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!

Oracle forms 9i - How to return back from a block?

ppl2Apr 11 2012 — edited Apr 11 2012
Some one please help me

In a trigger, I have a code says go_block. How to return from the block and back to the trigger to continue executing the codes below the go_block statement? Please see example below, I want to come back from block CHECK_STUFF and continue execute the statements

:Name.option := '1';
if :name.option = '1' then

---------------------------------------------------------------------------------------------------------------------------
Example:

Block: Name
Item: yes_no - Key-next-item trigger

declare
...
...
begin
...
...
...
go_block('check_stuff');
go_item('answer');

:Name.option := '1';
if :name.option = '1' then
...
...
...
...


Thanks - Patty
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 9 2012
Added on Apr 11 2012
2 comments
319 views