Trigger Previous topic Chapter index Next topic

EXPORTS_UPD

 

Beschreibung

Trigger um den TISTATUS anzupassen.

 

Definition

CREATE TRIGGER EXPORTS_UPD FOR EXPORTS
ACTIVE AFTER UPDATE POSITION 0
AS
begin
  execute procedure ti_update_status(new.extiid, -1);
  if (new.extiid<>old.extiid) then
  begin
    execute procedure ti_update_status(old.extiid, -1);
  end
end

 

     Previous topic Chapter index Next topic