Consultor Eletrônico



Kbase P18409: Why is my database field ASSIGN trigger is not firing?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   02/02/2003
Status: Unverified

SYMPTOM(s):

field ASSIGN database trigger is not firing?

CHANGE:

Added a new database field assign trigger.

CAUSE:

The TRIGGER PROCEDURE Statement was missing.

FIX:

Add the TRIGGER PROCEDURE Statement. Following is one ASSIGN triggers format:

TRIGGER PROCEDURE FOR Assign OF TableName.FieldName.

MESSAGE "Here goes the body of the trigger"
VIEW-AS ALERT-BOX INFO BUTTONS OK.

END.