DBA Data[Home] [Help]

APPS.IGF_AW_AWARD_LEVEL_HIST_PKG SQL Statements

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

Line: 18

 | that they were inserted by datamerge.                                 |
 |                                                                       |
 | The ADD_ROW routine will see whether a row exists by selecting        |
 | based on the primary key, and updates the row if it exists,           |
 | or inserts the row if it doesn't already exist.                       |
 |                                                                       |
 | This module is called by AutoInstall (afplss.drv) on install and      |
 | upgrade.  The WHENEVER SQLERROR and EXIT (at bottom) are required.    |
 |                                                                       |
 | HISTORY                                                               |
 *=======================================================================*/

  l_rowid VARCHAR2(25);
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 : 27-MAY-2005
  ||  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     igf_aw_award_level_hist
      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: 109

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

    new_references.last_update_date                  := x_last_update_date;
Line: 118

    new_references.last_updated_by                   := x_last_updated_by;
Line: 119

    new_references.last_update_login                 := x_last_update_login;
Line: 142

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

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

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

      SELECT   rowid
      FROM     igf_aw_award_level_hist
      WHERE    award_id = x_award_id
      AND      award_hist_tran_id = x_award_hist_tran_id
      AND      award_attrib_code = x_award_attrib_code
      FOR UPDATE NOWAIT;
Line: 224

      SELECT   rowid
      FROM     igf_aw_award_level_hist
      WHERE   ((old_adplans_id = x_adplans_id))
      OR      ((new_adplans_id = x_adplans_id));
Line: 260

      SELECT   rowid
      FROM     igf_aw_award_level_hist
      WHERE   ((award_id = x_award_id));
Line: 303

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 27-MAY-2005
  ||  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_award_id,
      x_award_hist_tran_id,
      x_award_attrib_code,
      x_award_change_source_code,
      x_old_offered_amt,
      x_new_offered_amt,
      x_old_accepted_amt,
      x_new_accepted_amt,
      x_old_paid_amt,
      x_new_paid_amt,
      x_old_lock_award_flag,
      x_new_lock_award_flag,
      x_old_award_status_code,
      x_new_award_status_code,
      x_old_adplans_id,
      x_new_adplans_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 345

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_award_hist_tran_id                IN     NUMBER,
    x_award_attrib_code                 IN     VARCHAR2,
    x_award_change_source_code          IN     VARCHAR2,
    x_old_offered_amt                   IN     NUMBER,
    x_new_offered_amt                   IN     NUMBER,
    x_old_accepted_amt                  IN     NUMBER,
    x_new_accepted_amt                  IN     NUMBER,
    x_old_paid_amt                      IN     NUMBER,
    x_new_paid_amt                      IN     NUMBER,
    x_old_lock_award_flag               IN     VARCHAR2,
    x_new_lock_award_flag               IN     VARCHAR2,
    x_old_award_status_code             IN     VARCHAR2,
    x_new_award_status_code             IN     VARCHAR2,
    x_old_adplans_id                    IN     NUMBER,
    x_new_adplans_id                    IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 27-MAY-2005
  ||  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: 409

    x_last_updated_by            NUMBER;
Line: 410

    x_last_update_login          NUMBER;
Line: 414

    x_program_update_date        DATE;
Line: 418

    x_last_update_date := SYSDATE;
Line: 420

      x_last_updated_by := 1;
Line: 421

      x_last_update_login := 0;
Line: 423

      x_last_updated_by := fnd_global.user_id;
Line: 424

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

      x_last_update_login := fnd_global.login_id;
Line: 428

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

        x_program_update_date    := NULL;
Line: 441

        x_program_update_date    := SYSDATE;
Line: 445

      fnd_message.set_token ('ROUTINE', 'IGF_AW_AWARD_LEVEL_HIST_PKG.INSERT_ROW');
Line: 453

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_award_hist_tran_id                => x_award_hist_tran_id,
      x_award_attrib_code                 => x_award_attrib_code,
      x_award_change_source_code          => x_award_change_source_code,
      x_old_offered_amt                   => x_old_offered_amt,
      x_new_offered_amt                   => x_new_offered_amt,
      x_old_accepted_amt                  => x_old_accepted_amt,
      x_new_accepted_amt                  => x_new_accepted_amt,
      x_old_paid_amt                      => x_old_paid_amt,
      x_new_paid_amt                      => x_new_paid_amt,
      x_old_lock_award_flag               => x_old_lock_award_flag,
      x_new_lock_award_flag               => x_new_lock_award_flag,
      x_old_award_status_code             => x_old_award_status_code,
      x_new_award_status_code             => x_new_award_status_code,
      x_old_adplans_id                    => x_old_adplans_id,
      x_new_adplans_id                    => x_new_adplans_id,
      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: 478

    INSERT INTO igf_aw_award_level_hist (
      award_id,
      award_hist_tran_id,
      award_attrib_code,
      award_change_source_code,
      old_offered_amt,
      new_offered_amt,
      old_accepted_amt,
      new_accepted_amt,
      old_paid_amt,
      new_paid_amt,
      old_lock_award_flag,
      new_lock_award_flag,
      old_award_status_code,
      new_award_status_code,
      old_adplans_id,
      new_adplans_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      new_references.award_id,
      new_references.award_hist_tran_id,
      new_references.award_attrib_code,
      new_references.award_change_source_code,
      new_references.old_offered_amt,
      new_references.new_offered_amt,
      new_references.old_accepted_amt,
      new_references.new_accepted_amt,
      new_references.old_paid_amt,
      new_references.new_paid_amt,
      new_references.old_lock_award_flag,
      new_references.new_lock_award_flag,
      new_references.old_award_status_code,
      new_references.new_award_status_code,
      new_references.old_adplans_id,
      new_references.new_adplans_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login ,
      x_request_id,
      x_program_id,
      x_program_application_id,
      x_program_update_date
    ) RETURNING ROWID INTO x_rowid;
Line: 532

  END insert_row;
Line: 564

      SELECT
        award_change_source_code,
        old_offered_amt,
        new_offered_amt,
        old_accepted_amt,
        new_accepted_amt,
        old_paid_amt,
        new_paid_amt,
        old_lock_award_flag,
        new_lock_award_flag,
        old_award_status_code,
        new_award_status_code,
        old_adplans_id,
        new_adplans_id
      FROM  igf_aw_award_level_hist
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 589

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_award_hist_tran_id                IN     NUMBER,
    x_award_attrib_code                 IN     VARCHAR2,
    x_award_change_source_code          IN     VARCHAR2,
    x_old_offered_amt                   IN     NUMBER,
    x_new_offered_amt                   IN     NUMBER,
    x_old_accepted_amt                  IN     NUMBER,
    x_new_accepted_amt                  IN     NUMBER,
    x_old_paid_amt                      IN     NUMBER,
    x_new_paid_amt                      IN     NUMBER,
    x_old_lock_award_flag               IN     VARCHAR2,
    x_new_lock_award_flag               IN     VARCHAR2,
    x_old_award_status_code             IN     VARCHAR2,
    x_new_award_status_code             IN     VARCHAR2,
    x_old_adplans_id                    IN     NUMBER,
    x_new_adplans_id                    IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 27-MAY-2005
  ||  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: 654

    x_last_updated_by            NUMBER;
Line: 655

    x_last_update_login          NUMBER;
Line: 659

    x_program_update_date        DATE;
Line: 663

    x_last_update_date := SYSDATE;
Line: 665

      x_last_updated_by := 1;
Line: 666

      x_last_update_login := 0;
Line: 668

      x_last_updated_by := fnd_global.user_id;
Line: 669

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

      x_last_update_login := fnd_global.login_id;
Line: 673

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

      fnd_message.set_token ('ROUTINE', 'IGF_AW_AWARD_LEVEL_HIST_PKG.UPDATE_ROW');
Line: 684

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_award_hist_tran_id                => x_award_hist_tran_id,
      x_award_attrib_code                 => x_award_attrib_code,
      x_award_change_source_code          => x_award_change_source_code,
      x_old_offered_amt                   => x_old_offered_amt,
      x_new_offered_amt                   => x_new_offered_amt,
      x_old_accepted_amt                  => x_old_accepted_amt,
      x_new_accepted_amt                  => x_new_accepted_amt,
      x_old_paid_amt                      => x_old_paid_amt,
      x_new_paid_amt                      => x_new_paid_amt,
      x_old_lock_award_flag               => x_old_lock_award_flag,
      x_new_lock_award_flag               => x_new_lock_award_flag,
      x_old_award_status_code             => x_old_award_status_code,
      x_new_award_status_code             => x_new_award_status_code,
      x_old_adplans_id                    => x_old_adplans_id,
      x_new_adplans_id                    => x_new_adplans_id,
      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: 717

        x_program_update_date := old_references.program_update_date;
Line: 719

        x_program_update_date := SYSDATE;
Line: 728

    UPDATE igf_aw_award_level_hist
      SET
        award_change_source_code          = new_references.award_change_source_code,
--      old_offered_amt                   = new_references.old_offered_amt,
        new_offered_amt                   = new_references.new_offered_amt,
--      old_accepted_amt                  = new_references.old_accepted_amt,
        new_accepted_amt                  = new_references.new_accepted_amt,
--      old_paid_amt                      = new_references.old_paid_amt,
        new_paid_amt                      = new_references.new_paid_amt,
--      old_lock_award_flag               = new_references.old_lock_award_flag,
        new_lock_award_flag               = new_references.new_lock_award_flag,
--      old_award_status_code             = new_references.old_award_status_code,
        new_award_status_code             = new_references.new_award_status_code,
--      old_adplans_id                    = new_references.old_adplans_id,
        new_adplans_id                    = new_references.new_adplans_id,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login ,
        request_id                        = x_request_id,
        program_id                        = x_program_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date
      WHERE rowid = x_rowid;
Line: 756

  END update_row;
Line: 782

  ||  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     igf_aw_award_level_hist
      WHERE    award_id                          = x_award_id
      AND      award_hist_tran_id                = x_award_hist_tran_id
      AND      award_attrib_code                 = x_award_attrib_code;
Line: 802

      insert_row (
        x_rowid,
        x_award_id,
        x_award_hist_tran_id,
        x_award_attrib_code,
        x_award_change_source_code,
        x_old_offered_amt,
        x_new_offered_amt,
        x_old_accepted_amt,
        x_new_accepted_amt,
        x_old_paid_amt,
        x_new_paid_amt,
        x_old_lock_award_flag,
        x_new_lock_award_flag,
        x_old_award_status_code,
        x_new_award_status_code,
        x_old_adplans_id,
        x_new_adplans_id,
        x_mode
      );
Line: 826

    update_row (
      x_rowid,
      x_award_id,
      x_award_hist_tran_id,
      x_award_attrib_code,
      x_award_change_source_code,
      x_old_offered_amt,
      x_new_offered_amt,
      x_old_accepted_amt,
      x_new_accepted_amt,
      x_old_paid_amt,
      x_new_paid_amt,
      x_old_lock_award_flag,
      x_new_lock_award_flag,
      x_old_award_status_code,
      x_new_award_status_code,
      x_old_adplans_id,
      x_new_adplans_id,
      x_mode
    );
Line: 850

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 27-MAY-2005
  ||  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: 869

    DELETE FROM igf_aw_award_level_hist
    WHERE rowid = x_rowid;
Line: 876

  END delete_row;