I have a forms ver. 5.06.20.0 fmb file (everything runs fine) I compiled and converted up to 6.0.8.11.3 (no involvement generating from Designer) ...now when I go to invoke a procedure in an attached library of the form in the updated ver. 6.0.8.11.3 , all of a sudden the procedure doesn't work(get the 'FRM-01403 ora-01403 not data found' error message) The procedure is called in the following way:
/* CGBG$WHEN_BUTTON_PRESSED */
/* Perfoming Procedure/Call */
BEGIN
insert_company;
IF NOT form_success THEN
MESSAGE('Error: PL/SQL held against Button failed to execute');
RAISE FORM_TRIGGER_FAILURE;
END IF;
END;
The error message text 'Error: PL/SQL held against Button failed to execute' never appears, just the 'FRM-01403 ora-01403 not data found' error message
Would any of you have any idea how I should handle this?
/* CGBG$WHEN_BUTTON_PRESSED */
/* Perfoming Procedure/Call */
BEGIN
insert_company;
IF NOT form_success THEN
MESSAGE('Error: PL/SQL held against Button failed to execute');
RAISE FORM_TRIGGER_FAILURE;
END IF;
END;
The error message text 'Error: PL/SQL held against Button failed to execute' never appears, just the 'FRM-01403 ora-01403 not data found' error message
Would any of you have any idea how I should handle this?