GlideImportSetRun - Scoped, Global

  • リリースバージョン: Australia
  • 更新日 2026年03月12日
  • 所要時間:1分
  • The GlideImportSetRun API provides methods to creates an Import Set Run record which the GlideImportSetTransformer API can consume.

    GlideImportSetRun - GlideImportSetRun(String importSetID)

    Instantiates a GlideImportSetRun object.

    表 : 1. Parameters
    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.

    表 : 2. Parameters
    Name Type Description
    None
    表 : 3. Returns
    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();