Share via


RecordInsertList.newmethod Method

Definition

Overloads

newmethod(Int32)

Creates a new object to hold records for insertion into the database.

newmethod(Int32, Boolean)
newmethod(Int32, Boolean, Boolean)
newmethod(Int32, Boolean, Boolean, Boolean)
newmethod(Int32, Boolean, Boolean, Boolean, Boolean)
newmethod(Int32, Boolean, Boolean, Boolean, Boolean, Boolean)
newmethod(Int32, Boolean, Boolean, Boolean, Boolean, Boolean, Common)

newmethod(Int32)

Creates a new object to hold records for insertion into the database.

public:
 void newmethod(int num1);
public void newmethod (int num1);
override this.newmethod : int -> unit
Public Sub newmethod (num1 As Integer)

Parameters

num1
Int32

Remarks

The following example creates a new RecordInsertList class for the EventRuleField table. The insert method for the table is run when these records are inserted, and the insertion is recorded in the database log. However, CUD events are not generated for the insertion.

recordInsertList = new RecordInsertList( 
    tablenum(EventRuleField), 
    false, 
    false, 
    true);

Applies to

newmethod(Int32, Boolean)

public:
 void newmethod(int num1, bool flag1);
public void newmethod (int num1, bool flag1);
override this.newmethod : int * bool -> unit
Public Sub newmethod (num1 As Integer, flag1 As Boolean)

Parameters

num1
Int32
flag1
Boolean

Applies to

newmethod(Int32, Boolean, Boolean)

public:
 void newmethod(int num1, bool flag1, bool flag2);
public void newmethod (int num1, bool flag1, bool flag2);
override this.newmethod : int * bool * bool -> unit
Public Sub newmethod (num1 As Integer, flag1 As Boolean, flag2 As Boolean)

Parameters

num1
Int32
flag1
Boolean
flag2
Boolean

Applies to

newmethod(Int32, Boolean, Boolean, Boolean)

public:
 void newmethod(int num1, bool flag1, bool flag2, bool flag3);
public void newmethod (int num1, bool flag1, bool flag2, bool flag3);
override this.newmethod : int * bool * bool * bool -> unit
Public Sub newmethod (num1 As Integer, flag1 As Boolean, flag2 As Boolean, flag3 As Boolean)

Parameters

num1
Int32
flag1
Boolean
flag2
Boolean
flag3
Boolean

Applies to

newmethod(Int32, Boolean, Boolean, Boolean, Boolean)

public:
 void newmethod(int num1, bool flag1, bool flag2, bool flag3, bool flag4);
public void newmethod (int num1, bool flag1, bool flag2, bool flag3, bool flag4);
override this.newmethod : int * bool * bool * bool * bool -> unit
Public Sub newmethod (num1 As Integer, flag1 As Boolean, flag2 As Boolean, flag3 As Boolean, flag4 As Boolean)

Parameters

num1
Int32
flag1
Boolean
flag2
Boolean
flag3
Boolean
flag4
Boolean

Applies to

newmethod(Int32, Boolean, Boolean, Boolean, Boolean, Boolean)

public:
 void newmethod(int num1, bool flag1, bool flag2, bool flag3, bool flag4, bool flag5);
public void newmethod (int num1, bool flag1, bool flag2, bool flag3, bool flag4, bool flag5);
override this.newmethod : int * bool * bool * bool * bool * bool -> unit
Public Sub newmethod (num1 As Integer, flag1 As Boolean, flag2 As Boolean, flag3 As Boolean, flag4 As Boolean, flag5 As Boolean)

Parameters

num1
Int32
flag1
Boolean
flag2
Boolean
flag3
Boolean
flag4
Boolean
flag5
Boolean

Applies to

newmethod(Int32, Boolean, Boolean, Boolean, Boolean, Boolean, Common)

public:
 void newmethod(int _tableId, bool _skipInsertMethod, bool _skipDatabaseLog, bool _skipEvents, bool _skipAosValidation, bool _skipRLSValidation, Microsoft::Dynamics::Ax::Xpp::Common ^ _table);
public void newmethod (int _tableId, bool _skipInsertMethod, bool _skipDatabaseLog, bool _skipEvents, bool _skipAosValidation, bool _skipRLSValidation, Microsoft.Dynamics.Ax.Xpp.Common _table);
override this.newmethod : int * bool * bool * bool * bool * bool * Microsoft.Dynamics.Ax.Xpp.Common -> unit
Public Sub newmethod (_tableId As Integer, _skipInsertMethod As Boolean, _skipDatabaseLog As Boolean, _skipEvents As Boolean, _skipAosValidation As Boolean, _skipRLSValidation As Boolean, _table As Common)

Parameters

_tableId
Int32
_skipInsertMethod
Boolean
_skipDatabaseLog
Boolean
_skipEvents
Boolean
_skipAosValidation
Boolean
_skipRLSValidation
Boolean
_table
Common

Applies to