AxdBase.processingRecord Method [AX 2012]

Called for each record processed during read and create.

Syntax

public void processingRecord(Common common)

Run On

Server

Parameters

  • common
    Type: Common Table
    A table buffer for the current record being processed.

Remarks

A document class can override this method to receive a call back for each record being processed, such as to compute constraints that cannot be derived from the top-level record.

Examples

The following example shows how to override the method and react when the record for a specific table is being read or written.

public void processingRecord(Common common) 
{ 
    AIFConstraint   AIFConstraint; 
    InventDim       inventDim ; 
    if (common.TableId == tablenum(InventDim)) 
    { 
        // Handle invent dim constraints. 
    } 
}  

See Also

Reference

AxdBase Class