Class NSImportErpData
Used to import data into the system. Representing one entity that will be imported.
Syntax
Constructors
NSImportErpData()
Initializes a new instance of the NSImportErpData class.
Declaration
NSImportErpData
Methods
GetColumnInfos()
Used to import data into the system. Representing one entity that will be imported.
Declaration
NSImportColumnInfo[] GetColumnInfos()
Returns
Type | Description |
---|---|
NSImportColumnInfo[] | Array of column definitions. |
Examples
NSImportErpData thing;
NSImportColumnInfo[] columnInfos = thing.GetColumnInfos();
GetImportLines()
Used to import data into the system. Representing one entity that will be imported.
Declaration
NSImportLine[] GetImportLines()
Returns
Type | Description |
---|---|
NSImportLine[] | An array of Import lines. |
Examples
NSImportErpData thing;
NSImportLine[] importLines = thing.GetImportLines();
SetColumnInfos(NSImportColumnInfo[])
Used to import data into the system. Representing one entity that will be imported.
Declaration
Void SetColumnInfos(NSImportColumnInfo[] columnInfos)
Parameters
Type | Name | Description |
---|---|---|
NSImportColumnInfo[] | columnInfos | Array of column definitions. |
Returns
Type | Description |
---|---|
Void |
Examples
NSImportErpData thing;
NSImportColumnInfo[] columnInfos;
thing.SetColumnInfos(columnInfos);
SetImportLines(NSImportLine[])
Used to import data into the system. Representing one entity that will be imported.
Declaration
Void SetImportLines(NSImportLine[] importLines)
Parameters
Type | Name | Description |
---|---|---|
NSImportLine[] | importLines | An array of Import lines. |
Returns
Type | Description |
---|---|
Void |
Examples
NSImportErpData thing;
NSImportLine[] importLines;
thing.SetImportLines(importLines);