DBA Data[Home] [Help]

APPS.IGS_AD_BATC_DEF_DET_PKG SQL Statements

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

Line: 27

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-AUG-2001
  ||  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_AD_BATC_DEF_DET_ALL
      WHERE    rowid = x_rowid;
Line: 54

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 88

    new_references.last_updated_by                   := x_last_updated_by;
Line: 89

    new_references.last_update_login                 := x_last_update_login;
Line: 99

      SELECT   rowid
      FROM     IGS_AD_BATC_DEF_DET_ALL
      WHERE    batch_id = x_batch_id
      FOR UPDATE NOWAIT;
Line: 138

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-AUG-2001
  ||  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_batch_id,
      x_description,
      x_acad_cal_type,
      x_acad_ci_sequence_number,
      x_adm_cal_type,
      x_adm_ci_sequence_number,
      x_admission_cat,
      x_s_admission_process_type,
      x_decision_make_id,
      x_decision_date,
      x_decision_reason_id,
      x_pending_reason_id,
      x_offer_dt,
      x_offer_response_dt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 178

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_batch_id                          IN OUT NOCOPY NUMBER,
    x_description                       IN     VARCHAR2,
    x_acad_cal_type                     IN     VARCHAR2,
    x_acad_ci_sequence_number           IN     NUMBER,
    x_adm_cal_type                      IN     VARCHAR2,
    x_adm_ci_sequence_number            IN     NUMBER,
    x_admission_cat                     IN     VARCHAR2,
    x_s_admission_process_type          IN     VARCHAR2,
    x_decision_make_id                  IN     NUMBER,
    x_decision_date                     IN     DATE,
    x_decision_reason_id                IN     NUMBER,
    x_pending_reason_id                 IN     NUMBER,
    x_offer_dt                          IN     DATE,
    x_offer_response_dt                 IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-AUG-2001
  ||  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)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_batc_def_det_all
      WHERE    batch_id = x_batch_id;
Line: 235

    x_last_update_date           DATE;
Line: 236

    x_last_updated_by            NUMBER;
Line: 237

    x_last_update_login          NUMBER;
Line: 241

    x_last_update_date := SYSDATE;
Line: 243

      x_last_updated_by := 1;
Line: 244

      x_last_update_login := 0;
Line: 246

      x_last_updated_by := fnd_global.user_id;
Line: 247

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

      x_last_update_login := fnd_global.login_id;
Line: 251

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_batch_id                          => x_batch_id,
      x_description                       => x_description,
      x_acad_cal_type                     => x_acad_cal_type,
      x_acad_ci_sequence_number           => x_acad_ci_sequence_number,
      x_adm_cal_type                      => x_adm_cal_type,
      x_adm_ci_sequence_number            => x_adm_ci_sequence_number,
      x_admission_cat                     => x_admission_cat,
      x_s_admission_process_type          => x_s_admission_process_type,
      x_decision_make_id                  => x_decision_make_id,
      x_decision_date                     => x_decision_date,
      x_decision_reason_id                => x_decision_reason_id,
      x_pending_reason_id                 => x_pending_reason_id,
      x_offer_dt                          => x_offer_dt,
      x_offer_response_dt                 => x_offer_response_dt,
      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: 287

    INSERT INTO igs_ad_batc_def_det_all (
      batch_id,
      description,
      acad_cal_type,
      acad_ci_sequence_number,
      adm_cal_type,
      adm_ci_sequence_number,
      admission_cat,
      s_admission_process_type,
      decision_make_id,
      decision_date,
      decision_reason_id,
      pending_reason_id,
      offer_dt,
      offer_response_dt,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_ad_batc_def_det_s.NEXTVAL,
      new_references.description,
      new_references.acad_cal_type,
      new_references.acad_ci_sequence_number,
      new_references.adm_cal_type,
      new_references.adm_ci_sequence_number,
      new_references.admission_cat,
      new_references.s_admission_process_type,
      new_references.decision_make_id,
      new_references.decision_date,
      new_references.decision_reason_id,
      new_references.pending_reason_id,
      new_references.offer_dt,
      new_references.offer_response_dt,
      new_references.org_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    )RETURNING batch_id INTO x_batch_id;
Line: 339

  END insert_row;
Line: 369

      SELECT
        batch_id,
        description,
        acad_cal_type,
        acad_ci_sequence_number,
        adm_cal_type,
        adm_ci_sequence_number,
        admission_cat,
        s_admission_process_type,
        decision_make_id,
        decision_date,
        decision_reason_id,
        pending_reason_id,
        offer_dt,
        offer_response_dt
      FROM  igs_ad_batc_def_det_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 395

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_batch_id                          IN     NUMBER,
    x_description                       IN     VARCHAR2,
    x_acad_cal_type                     IN     VARCHAR2,
    x_acad_ci_sequence_number           IN     NUMBER,
    x_adm_cal_type                      IN     VARCHAR2,
    x_adm_ci_sequence_number            IN     NUMBER,
    x_admission_cat                     IN     VARCHAR2,
    x_s_admission_process_type          IN     VARCHAR2,
    x_decision_make_id                  IN     NUMBER,
    x_decision_date                     IN     DATE,
    x_decision_reason_id                IN     NUMBER,
    x_pending_reason_id                 IN     NUMBER,
    x_offer_dt                          IN     DATE,
    x_offer_response_dt                 IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-AUG-2001
  ||  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: 459

    x_last_updated_by            NUMBER;
Line: 460

    x_last_update_login          NUMBER;
Line: 464

    x_last_update_date := SYSDATE;
Line: 466

      x_last_updated_by := 1;
Line: 467

      x_last_update_login := 0;
Line: 469

      x_last_updated_by := fnd_global.user_id;
Line: 470

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

      x_last_update_login := fnd_global.login_id;
Line: 474

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_batch_id                          => x_batch_id,
      x_description                       => x_description,
      x_acad_cal_type                     => x_acad_cal_type,
      x_acad_ci_sequence_number           => x_acad_ci_sequence_number,
      x_adm_cal_type                      => x_adm_cal_type,
      x_adm_ci_sequence_number            => x_adm_ci_sequence_number,
      x_admission_cat                     => x_admission_cat,
      x_s_admission_process_type          => x_s_admission_process_type,
      x_decision_make_id                  => x_decision_make_id,
      x_decision_date                     => x_decision_date,
      x_decision_reason_id                => x_decision_reason_id,
      x_pending_reason_id                 => x_pending_reason_id,
      x_offer_dt                          => x_offer_dt,
      x_offer_response_dt                 => x_offer_response_dt,
      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: 507

    UPDATE igs_ad_batc_def_det_all
      SET
        batch_id                          = new_references.batch_id,
        description                       = new_references.description,
        acad_cal_type                     = new_references.acad_cal_type,
        acad_ci_sequence_number           = new_references.acad_ci_sequence_number,
        adm_cal_type                      = new_references.adm_cal_type,
        adm_ci_sequence_number            = new_references.adm_ci_sequence_number,
        admission_cat                     = new_references.admission_cat,
        s_admission_process_type          = new_references.s_admission_process_type,
        decision_make_id                  = new_references.decision_make_id,
        decision_date                     = new_references.decision_date,
        decision_reason_id                = new_references.decision_reason_id,
        pending_reason_id                 = new_references.pending_reason_id,
        offer_dt                          = new_references.offer_dt,
        offer_response_dt                 = new_references.offer_response_dt,
        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: 532

  END update_row;
Line: 556

  ||  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_ad_batc_def_det_all
      WHERE    batch_id = x_batch_id;
Line: 574

      insert_row (
        x_rowid,
        x_batch_id,
        x_description,
        x_acad_cal_type,
        x_acad_ci_sequence_number,
        x_adm_cal_type,
        x_adm_ci_sequence_number,
        x_admission_cat,
        x_s_admission_process_type,
        x_decision_make_id,
        x_decision_date,
        x_decision_reason_id,
        x_pending_reason_id,
        x_offer_dt,
        x_offer_response_dt,
        x_mode
      );
Line: 596

    update_row (
      x_rowid,
      x_batch_id,
      x_description,
      x_acad_cal_type,
      x_acad_ci_sequence_number,
      x_adm_cal_type,
      x_adm_ci_sequence_number,
      x_admission_cat,
      x_s_admission_process_type,
      x_decision_make_id,
      x_decision_date,
      x_decision_reason_id,
      x_pending_reason_id,
      x_offer_dt,
      x_offer_response_dt,
      x_mode
    );
Line: 618

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 14-AUG-2001
  ||  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)
  */
  BEGIN

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 637

    DELETE FROM igs_ad_batc_def_det_all
    WHERE rowid = x_rowid;
Line: 644

  END delete_row;