DMFEntityWriter::executeInsert Method [AX 2012]

Executes set based insert for import.

client server public static int64 executeInsert(
   [TableName _destination, 
    str _destFieldList, 
    str _varDecList, 
    TableName _source, 
    str _sourceFieldList, 
    str _whereClause, 
    str _join])

Run On

Called

Parameters

_destination
Type: TableName Extended Data Type
Name of destination table.
_destFieldList
Type: str
List of fields from destination table to be set.
_varDecList
Type: str
Variable declarations needed for insert.
_source
Type: TableName Extended Data Type
Name of source table.
_sourceFieldList
Type: str
List of fields from source table to copy.
_whereClause
Type: str
The where clause to be used in a query.
_join
Type: str
Type of join to perform.

Return Value

Type: int64
Returns number of records inserted in the destination table.
Show: