SysDefaultData.buffer Method [AX 2012]

Returns the table buffer that is declared in the classDeclaration method.

public abstract Common buffer()

Run On

Called

Return Value

Type: Common Table
The table buffer that is used for the default data.

In your class declaration, you will have one or more tables declared. The method must return the following. This example will not compile as a job as it must be run in the context of a class, form, or other object.

public myTable buffer() 
{ 
    return myTable; 
}

Community Additions

ADD
Show: