Files
mip/Data/BulkLoad/EFT/Nominations/plsql/cg$bis_contract_rules.trg

17 lines
476 B
Plaintext

CREATE OR REPLACE TRIGGER EFT_NOM.cg$BIS_CONTRACT_RULES
BEFORE INSERT ON CONTRACT_RULES
BEGIN
-- Application_logic Pre-Before-Insert-statement <<Start>>
-- Application_logic Pre-Before-Insert-statement << End >>
cg$CONTRACT_RULES.cg$table.DELETE;
cg$CONTRACT_RULES.cg$tableind.DELETE;
cg$CONTRACT_RULES.idx := 1;
-- Application_logic Post-Before-Insert-statement <<Start>>
-- Application_logic Post-Before-Insert-statement << End >>
END;
/