Consultor Eletrônico



Kbase P88976: Choosing a validation procedure within the ADM2
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   1/11/2005
Status: Unverified

GOAL:

Choosing a validation procedure within the ADM2

GOAL:

What are the validation procedure within the ADM2?

GOAL:

Which are the validation procedure within the ADM2 and Distrubuted Application?

GOAL:

Distibuted Programming and Validation Procedures

FIX:

Use this information to identify where to code your validation logic.

Procedure
preTransactionValidate

What data it can access
RowObjUpd temp-table

How to use it
Check values before any updates occur and before the transaction begins. Abort the transaction here if necessary.

Procedure
BeginTransactionValidate

What data it can access
RowObjUpd temp-table and database records

How to use it
Make comparisons of update data with database data. Use database data to calculate or modify update records.

Procedure
EndTransactionValidate

What data it can access
Database records

How to use it
Make any other changes to the database (accumulate totals, update related tables).

Procedure
PostTransactionValidate

What data it can access
No data access

How to use it
Send status messages.