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();