I have this trigger
procedure CASE_A
as
UPDATE table1 SET field1 = (SELECT bus FROM view1 WHERE table1.document = view1.document)
end;
the below trigger is supposed to execute the above procedure CASE_A (Case_A is supposed to put a value into field1)
CREATE OR REPLACE TRIGGER "CASE_A" AFTER INSERT ON "TABLE1" FOR EACH ROW
BEGIN
CASE_A;
END;
but, it's not doing that.