DBA Data[Home] [Help]

APPS.IGS_DA_CNFG_REQ_TYP_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 55

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 19-MAR-2003
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_da_cnfg_req_typ
      WHERE    rowid = x_rowid;
Line: 82

    IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
      CLOSE cur_old_ref_values;
Line: 84

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 135

    IF (p_action = 'UPDATE') THEN
      new_references.creation_date                   := old_references.creation_date;
Line: 143

    new_references.last_update_date                  := x_last_update_date;
Line: 144

    new_references.last_updated_by                   := x_last_updated_by;
Line: 145

    new_references.last_update_login                 := x_last_update_login;
Line: 166

      SELECT   rowid
      FROM     igs_da_cnfg_req_typ
      WHERE    request_name = x_request_name
      AND      request_type = x_request_type
      AND      request_mode = x_request_mode
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 233

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 247

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 299

      SELECT   rowid
      FROM     igs_da_cnfg_req_typ
      WHERE    request_type_id = x_request_type_id
      FOR UPDATE NOWAIT;
Line: 334

      SELECT   rowid
      FROM     igs_da_cnfg_req_typ
      WHERE   ((wif_program_code = x_course_cd));
Line: 370

      SELECT   rowid
      FROM     igs_da_cnfg_req_typ
      WHERE   ((wif_catalog_cal_type = x_cal_type) AND
               (wif_catalog_ci_seq_num = x_sequence_number));
Line: 440

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 19-MAR-2003
  ||  Purpose : Initialises the columns, Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before any DML operation.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_request_type_id,
      x_request_name,
      x_request_type,
      x_request_mode,
      x_closed_ind,
      x_purgable_ind,
      x_request_type_comment,
      x_wif_ind,
      x_wif_program_code,
      x_wif_program_mod_ind,
      x_wif_catalog_cal_type,
      x_wif_catalog_ci_seq_num,
      x_wif_catalog_mod_ind,
      x_special_ind,
      x_special_program_code,
      x_special_program_mod_ind,
      x_special_catalog,
      x_special_catalog_mod_ind,
      x_enrolled_ind,
      x_attribute_category,
      x_attribute1,
      x_attribute2,
      x_attribute3,
      x_attribute4,
      x_attribute5,
      x_attribute6,
      x_attribute7,
      x_attribute8,
      x_attribute9,
      x_attribute10,
      x_attribute11,
      x_attribute12,
      x_attribute13,
      x_attribute14,
      x_attribute15,
      x_attribute16,
      x_attribute17,
      x_attribute18,
      x_attribute19,
      x_attribute20,
      x_spa_complete_ind,
      x_susa_complete_ind,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 508

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.request_type_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 520

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      check_uniqueness;
Line: 524

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 527

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.request_type_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 538

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 545

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_request_type_id                   IN OUT NOCOPY NUMBER,
    x_request_name                      IN     VARCHAR2,
    x_request_type                      IN     VARCHAR2,
    x_request_mode                      IN     VARCHAR2,
    x_closed_ind                        IN     VARCHAR2,
    x_purgable_ind                      IN     VARCHAR2,
    x_request_type_comment              IN     VARCHAR2,
    x_wif_ind                           IN     VARCHAR2,
    x_wif_program_code                  IN     VARCHAR2,
    x_wif_program_mod_ind               IN     VARCHAR2,
    x_wif_catalog_cal_type              IN     VARCHAR2,
    x_wif_catalog_ci_seq_num            IN     NUMBER,
    x_wif_catalog_mod_ind               IN     VARCHAR2,
    x_special_ind                       IN     VARCHAR2,
    x_special_program_code              IN     VARCHAR2,
    x_special_program_mod_ind           IN     VARCHAR2,
    x_special_catalog                   IN     VARCHAR2,
    x_special_catalog_mod_ind           IN     VARCHAR2,
    x_enrolled_ind                      IN     VARCHAR2,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_spa_complete_ind                  IN     VARCHAR2,
    x_susa_complete_ind                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 19-MAR-2003
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    x_last_update_date           DATE;
Line: 602

    x_last_updated_by            NUMBER;
Line: 603

    x_last_update_login          NUMBER;
Line: 607

    x_last_update_date := SYSDATE;
Line: 609

      x_last_updated_by := 1;
Line: 610

      x_last_update_login := 0;
Line: 612

      x_last_updated_by := fnd_global.user_id;
Line: 613

      IF (x_last_updated_by IS NULL) THEN
        x_last_updated_by := -1;
Line: 616

      x_last_update_login := fnd_global.login_id;
Line: 617

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 622

      fnd_message.set_token ('ROUTINE', 'IGS_DA_CNFG_REQ_TYP_PKG.INSERT_ROW');
Line: 630

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_request_type_id                   => x_request_type_id,
      x_request_name                      => x_request_name,
      x_request_type                      => x_request_type,
      x_request_mode                      => x_request_mode,
      x_closed_ind                        => x_closed_ind,
      x_purgable_ind                      => x_purgable_ind,
      x_request_type_comment              => x_request_type_comment,
      x_wif_ind                           => x_wif_ind,
      x_wif_program_code                  => x_wif_program_code,
      x_wif_program_mod_ind               => x_wif_program_mod_ind,
      x_wif_catalog_cal_type              => x_wif_catalog_cal_type,
      x_wif_catalog_ci_seq_num            => x_wif_catalog_ci_seq_num,
      x_wif_catalog_mod_ind               => x_wif_catalog_mod_ind,
      x_special_ind                       => x_special_ind,
      x_special_program_code              => x_special_program_code,
      x_special_program_mod_ind           => x_special_program_mod_ind,
      x_special_catalog                   => x_special_catalog,
      x_special_catalog_mod_ind           => x_special_catalog_mod_ind,
      x_enrolled_ind                      => x_enrolled_ind,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      x_spa_complete_ind                  => x_spa_complete_ind,
      x_susa_complete_ind                 => x_susa_complete_ind,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 681

    INSERT INTO igs_da_cnfg_req_typ (
      request_type_id,
      request_name,
      request_type,
      request_mode,
      closed_ind,
      purgable_ind,
      request_type_comment,
      wif_ind,
      wif_program_code,
      wif_program_mod_ind,
      wif_catalog_cal_type,
      wif_catalog_ci_seq_num,
      wif_catalog_mod_ind,
      special_ind,
      special_program_code,
      special_program_mod_ind,
      special_catalog,
      special_catalog_mod_ind,
      enrolled_ind,
      attribute_category,
      attribute1,
      attribute2,
      attribute3,
      attribute4,
      attribute5,
      attribute6,
      attribute7,
      attribute8,
      attribute9,
      attribute10,
      attribute11,
      attribute12,
      attribute13,
      attribute14,
      attribute15,
      attribute16,
      attribute17,
      attribute18,
      attribute19,
      attribute20,
      spa_complete_ind,
      susa_complete_ind,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_da_cnfg_req_typ_s.NEXTVAL,
      new_references.request_name,
      new_references.request_type,
      new_references.request_mode,
      new_references.closed_ind,
      new_references.purgable_ind,
      new_references.request_type_comment,
      new_references.wif_ind,
      new_references.wif_program_code,
      new_references.wif_program_mod_ind,
      new_references.wif_catalog_cal_type,
      new_references.wif_catalog_ci_seq_num,
      new_references.wif_catalog_mod_ind,
      new_references.special_ind,
      new_references.special_program_code,
      new_references.special_program_mod_ind,
      new_references.special_catalog,
      new_references.special_catalog_mod_ind,
      new_references.enrolled_ind,
      new_references.attribute_category,
      new_references.attribute1,
      new_references.attribute2,
      new_references.attribute3,
      new_references.attribute4,
      new_references.attribute5,
      new_references.attribute6,
      new_references.attribute7,
      new_references.attribute8,
      new_references.attribute9,
      new_references.attribute10,
      new_references.attribute11,
      new_references.attribute12,
      new_references.attribute13,
      new_references.attribute14,
      new_references.attribute15,
      new_references.attribute16,
      new_references.attribute17,
      new_references.attribute18,
      new_references.attribute19,
      new_references.attribute20,
      new_references.spa_complete_ind,
      new_references.susa_complete_ind,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, request_type_id INTO x_rowid, x_request_type_id;
Line: 779

  END insert_row;
Line: 837

      SELECT
        request_name,
        request_type,
        request_mode,
        closed_ind,
        purgable_ind,
        request_type_comment,
        wif_ind,
        wif_program_code,
        wif_program_mod_ind,
        wif_catalog_cal_type,
        wif_catalog_ci_seq_num,
        wif_catalog_mod_ind,
        special_ind,
        special_program_code,
        special_program_mod_ind,
        special_catalog,
        special_catalog_mod_ind,
        enrolled_ind,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20,
        spa_complete_ind,
        susa_complete_ind
      FROM  igs_da_cnfg_req_typ
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 890

      fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
Line: 953

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_request_type_id                   IN     NUMBER,
    x_request_name                      IN     VARCHAR2,
    x_request_type                      IN     VARCHAR2,
    x_request_mode                      IN     VARCHAR2,
    x_closed_ind                        IN     VARCHAR2,
    x_purgable_ind                      IN     VARCHAR2,
    x_request_type_comment              IN     VARCHAR2,
    x_wif_ind                           IN     VARCHAR2,
    x_wif_program_code                  IN     VARCHAR2,
    x_wif_program_mod_ind               IN     VARCHAR2,
    x_wif_catalog_cal_type              IN     VARCHAR2,
    x_wif_catalog_ci_seq_num            IN     NUMBER,
    x_wif_catalog_mod_ind               IN     VARCHAR2,
    x_special_ind                       IN     VARCHAR2,
    x_special_program_code              IN     VARCHAR2,
    x_special_program_mod_ind           IN     VARCHAR2,
    x_special_catalog                   IN     VARCHAR2,
    x_special_catalog_mod_ind           IN     VARCHAR2,
    x_enrolled_ind                      IN     VARCHAR2,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_spa_complete_ind                  IN     VARCHAR2,
    x_susa_complete_ind                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 19-MAR-2003
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 1009

    x_last_updated_by            NUMBER;
Line: 1010

    x_last_update_login          NUMBER;
Line: 1014

    x_last_update_date := SYSDATE;
Line: 1016

      x_last_updated_by := 1;
Line: 1017

      x_last_update_login := 0;
Line: 1019

      x_last_updated_by := fnd_global.user_id;
Line: 1020

      IF x_last_updated_by IS NULL THEN
        x_last_updated_by := -1;
Line: 1023

      x_last_update_login := fnd_global.login_id;
Line: 1024

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 1029

      fnd_message.set_token ('ROUTINE', 'IGS_DA_CNFG_REQ_TYP_PKG.UPDATE_ROW');
Line: 1037

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_request_type_id                   => x_request_type_id,
      x_request_name                      => x_request_name,
      x_request_type                      => x_request_type,
      x_request_mode                      => x_request_mode,
      x_closed_ind                        => x_closed_ind,
      x_purgable_ind                      => x_purgable_ind,
      x_request_type_comment              => x_request_type_comment,
      x_wif_ind                           => x_wif_ind,
      x_wif_program_code                  => x_wif_program_code,
      x_wif_program_mod_ind               => x_wif_program_mod_ind,
      x_wif_catalog_cal_type              => x_wif_catalog_cal_type,
      x_wif_catalog_ci_seq_num            => x_wif_catalog_ci_seq_num,
      x_wif_catalog_mod_ind               => x_wif_catalog_mod_ind,
      x_special_ind                       => x_special_ind,
      x_special_program_code              => x_special_program_code,
      x_special_program_mod_ind           => x_special_program_mod_ind,
      x_special_catalog                   => x_special_catalog,
      x_special_catalog_mod_ind           => x_special_catalog_mod_ind,
      x_enrolled_ind                      => x_enrolled_ind,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      x_spa_complete_ind                  => x_spa_complete_ind,
      x_susa_complete_ind                 => x_susa_complete_ind,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 1088

    UPDATE igs_da_cnfg_req_typ
      SET
        request_name                      = new_references.request_name,
        request_type                      = new_references.request_type,
        request_mode                      = new_references.request_mode,
        closed_ind                        = new_references.closed_ind,
        purgable_ind                      = new_references.purgable_ind,
        request_type_comment              = new_references.request_type_comment,
        wif_ind                           = new_references.wif_ind,
        wif_program_code                  = new_references.wif_program_code,
        wif_program_mod_ind               = new_references.wif_program_mod_ind,
        wif_catalog_cal_type              = new_references.wif_catalog_cal_type,
        wif_catalog_ci_seq_num            = new_references.wif_catalog_ci_seq_num,
        wif_catalog_mod_ind               = new_references.wif_catalog_mod_ind,
        special_ind                       = new_references.special_ind,
        special_program_code              = new_references.special_program_code,
        special_program_mod_ind           = new_references.special_program_mod_ind,
        special_catalog                   = new_references.special_catalog,
        special_catalog_mod_ind           = new_references.special_catalog_mod_ind,
        enrolled_ind                      = new_references.enrolled_ind,
        attribute_category                = new_references.attribute_category,
        attribute1                        = new_references.attribute1,
        attribute2                        = new_references.attribute2,
        attribute3                        = new_references.attribute3,
        attribute4                        = new_references.attribute4,
        attribute5                        = new_references.attribute5,
        attribute6                        = new_references.attribute6,
        attribute7                        = new_references.attribute7,
        attribute8                        = new_references.attribute8,
        attribute9                        = new_references.attribute9,
        attribute10                       = new_references.attribute10,
        attribute11                       = new_references.attribute11,
        attribute12                       = new_references.attribute12,
        attribute13                       = new_references.attribute13,
        attribute14                       = new_references.attribute14,
        attribute15                       = new_references.attribute15,
        attribute16                       = new_references.attribute16,
        attribute17                       = new_references.attribute17,
        attribute18                       = new_references.attribute18,
        attribute19                       = new_references.attribute19,
        attribute20                       = new_references.attribute20,
        spa_complete_ind                  = new_references.spa_complete_ind,
        susa_complete_ind                 = new_references.susa_complete_ind,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login
      WHERE rowid = x_rowid;
Line: 1140

  END update_row;
Line: 1192

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_da_cnfg_req_typ
      WHERE    request_type_id                   = x_request_type_id;
Line: 1210

      insert_row (
        x_rowid,
        x_request_type_id,
        x_request_name,
        x_request_type,
        x_request_mode,
        x_closed_ind,
        x_purgable_ind,
        x_request_type_comment,
        x_wif_ind,
        x_wif_program_code,
        x_wif_program_mod_ind,
        x_wif_catalog_cal_type,
        x_wif_catalog_ci_seq_num,
        x_wif_catalog_mod_ind,
        x_special_ind,
        x_special_program_code,
        x_special_program_mod_ind,
        x_special_catalog,
        x_special_catalog_mod_ind,
        x_enrolled_ind,
        x_attribute_category,
        x_attribute1,
        x_attribute2,
        x_attribute3,
        x_attribute4,
        x_attribute5,
        x_attribute6,
        x_attribute7,
        x_attribute8,
        x_attribute9,
        x_attribute10,
        x_attribute11,
        x_attribute12,
        x_attribute13,
        x_attribute14,
        x_attribute15,
        x_attribute16,
        x_attribute17,
        x_attribute18,
        x_attribute19,
        x_attribute20,
        x_spa_complete_ind,
        x_susa_complete_ind,
        x_mode
      );
Line: 1260

    update_row (
      x_rowid,
      x_request_type_id,
      x_request_name,
      x_request_type,
      x_request_mode,
      x_closed_ind,
      x_purgable_ind,
      x_request_type_comment,
      x_wif_ind,
      x_wif_program_code,
      x_wif_program_mod_ind,
      x_wif_catalog_cal_type,
      x_wif_catalog_ci_seq_num,
      x_wif_catalog_mod_ind,
      x_special_ind,
      x_special_program_code,
      x_special_program_mod_ind,
      x_special_catalog,
      x_special_catalog_mod_ind,
      x_enrolled_ind,
      x_attribute_category,
      x_attribute1,
      x_attribute2,
      x_attribute3,
      x_attribute4,
      x_attribute5,
      x_attribute6,
      x_attribute7,
      x_attribute8,
      x_attribute9,
      x_attribute10,
      x_attribute11,
      x_attribute12,
      x_attribute13,
      x_attribute14,
      x_attribute15,
      x_attribute16,
      x_attribute17,
      x_attribute18,
      x_attribute19,
      x_attribute20,
      x_spa_complete_ind,
      x_susa_complete_ind,
      x_mode
    );
Line: 1310

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 19-MAR-2003
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

  CURSOR cur_parent_table IS
   SELECT
     request_type_id
     FROM igs_da_cnfg_req_typ_v
     WHERE row_id = x_rowid;
Line: 1330

   SELECT
     rowid
     FROM igs_da_cnfg_ftr
     WHERE request_type_id = cp_request_type_id;
Line: 1337

   SELECT
     rowid
     FROM igs_da_cnfg_stat
     WHERE request_type_id = cp_request_type_id;
Line: 1343

   SELECT
     rowid
     FROM igs_da_cnfg
     WHERE request_type_id = cp_request_type_id;
Line: 1361

      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 1374

    igs_da_cnfg_ftr_pkg.delete_row (
          x_rowid  => l_cur_igs_da_cnfg_ftr.rowid
                                   );
Line: 1383

       igs_da_cnfg_stat_pkg.delete_row (
          x_rowid  => l_cur_igs_da_cnfg_stat.rowid
                                    );
Line: 1392

    igs_da_cnfg_pkg.delete_row (
          x_rowid  => l_cur_igs_da_cnfg.rowid
    );
Line: 1399

    DELETE FROM igs_da_cnfg_req_typ
    WHERE rowid = x_rowid;
Line: 1409

 END delete_row;