Kbase P22246: How to run code in preTransactionValidate only for records that are being added?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  15/10/2008 |
|
Status: Verified
GOAL:
How to run code in preTransactionValidate only for records that are being added?
FACT(s) (Environment):
Progress 9.x
FIX:
Check the RowObjUpd.RowMod field for an "A". For example:
FOR EACH RowObjUpd WHERE RowObjUpd.RowMod = "A":
... Code Goes Here That Should Be Executed Against Every Added Record ...
END.