GlideImportSetRun - Scoped, Global
The GlideImportSetRun API provides methods to creates an Import Set Run record which the GlideImportSetTransformer API can consume.
See also:
GlideImportSetRun - GlideImportSetRun(String importSetID)
Instantiates a GlideImportSetRun object.
| Name | Type | Description |
|---|---|---|
| importSetID | String | Optional. The sys_id of the import set record listed in the Import Sets [sys_import_set] table. If not set, a new [sys_import_set] record is created and the GlideImportSetRun object represents this record. |
var importSetRun = new GlideImportSetRun();
GlideImportSetRun - getImportSetRunSysID()
Gets the sys_id of the Import Set Run associated with the transformation.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| String | The sys_id of the Transform Histories [sys_import_set_run] record associated with the transform. |
var importSetRun = new GlideImportSetRun();
var importSetRunSysId = importSetRun.getImportSetRunSysID();