How do you trap default forms processing ( DML)

Showing Answers 1 - 4 of 4 Answers

ysumanth

  • Oct 27th, 2005
 

  Override on- triggers

on insert /ondelete / on update

  Was this answer useful?  Yes

ON-DELETE IS USER TO TRAP DEFAULT DML
 USED AT FORM LEVEL AND BLOCK LEVEL
 
EXAMPLE :

 BEGIN
  UPDATE emp
     SET termination_date = SYSDATE
   WHERE empno = :Emp.Empno;
IF form_fatal OR form_failure THEN
   raise form_trigger_failure;
END IF; 
END;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions