Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Forms 45, View Mode MESSAGE.
All,
Does anybody know what this message implies and why it is popping up,
COMMIT CHANGES BEFORE SWITCHING VIEW MODE.
YES NO CANCEL.
I was trying to update from within a when button pressed trigger:
Any ideas are helpful. thanks
Radhika.
DECLARE
alert_button NUMBER(3); cur_rec number(3);
IF alert_button = ALERT_BUTTON1 THEN
go_block('TS_LINE_STUDY');
cur_rec := Get_Block_Property('TS_LINE_STUDY', CURRENT_RECORD);
go_record(cur_rec);
do_key('commit_form');
MESSAGE('Successfully saved changes to the line study, Please fill in the
related Network Systems information.');
call_form('d:\orawin\forms45\req_frm.fmx');
elsif alert_Button = ALERT_BUTTON2 THEN
exception
when others then
message('Unknown Oracle error');
end;
![]() |
![]() |