Oracle forms 9i - How to return back from a block?
ppl2Apr 11 2012 — edited Apr 11 2012Some 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