DBA Data[Home] [Help]

APPS.IGF_AW_DB_CHG_DTLS_PKG SQL Statements

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

Line: 33

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-2004
  ||  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_db_chg_dtls
      WHERE    rowid = x_rowid;
Line: 60

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 100

    new_references.last_updated_by                   := x_last_updated_by;
Line: 101

    new_references.last_update_login                 := x_last_update_login;
Line: 115

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

      SELECT   rowid
      FROM     igf_aw_db_chg_dtls
      WHERE    award_id = x_award_id
      AND      disb_num = x_disb_num
      AND      disb_seq_num = x_disb_seq_num
      FOR UPDATE NOWAIT;
Line: 173

      SELECT   rowid
      FROM     igf_aw_db_chg_dtls
      WHERE   ((award_id = x_award_id));
Line: 209

      SELECT   rowid
      FROM     igf_aw_db_chg_dtls
      WHERE    award_id = x_award_id
        AND    disb_num = x_disb_num;
Line: 256

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-2004
  ||  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_disb_num,
      x_disb_seq_num,
      x_disb_accepted_amt,
      x_orig_fee_amt,
      x_disb_net_amt,
      x_disb_date,
      x_disb_activity,
      x_disb_status,
      x_disb_status_date,
      x_disb_rel_flag,
      x_first_disb_flag,
      x_interest_rebate_amt,
      x_disb_conf_flag,
      x_pymnt_prd_start_date,
      x_note_message,
      x_batch_id_txt,
      x_ack_date,
      x_booking_id_txt,
      x_booking_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 302

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

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

    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.disb_num,
             new_references.disb_seq_num
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 337

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_disb_num                          IN     NUMBER,
    x_disb_seq_num                      IN     NUMBER,
    x_disb_accepted_amt                 IN     NUMBER,
    x_orig_fee_amt                      IN     NUMBER,
    x_disb_net_amt                      IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_disb_activity                     IN     VARCHAR2,
    x_disb_status                       IN     VARCHAR2,
    x_disb_status_date                  IN     DATE,
    x_disb_rel_flag                     IN     VARCHAR2,
    x_first_disb_flag                   IN     VARCHAR2,
    x_interest_rebate_amt               IN     NUMBER,
    x_disb_conf_flag                    IN     VARCHAR2,
    x_pymnt_prd_start_date              IN     DATE,
    x_note_message                      IN     VARCHAR2,
    x_batch_id_txt                      IN     VARCHAR2,
    x_ack_date                          IN     DATE,
    x_booking_id_txt                    IN     VARCHAR2,
    x_booking_date                      IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-2004
  ||  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     igf_aw_db_chg_dtls
      WHERE    award_id                          = x_award_id
      AND      disb_num                          = x_disb_num
      AND      disb_seq_num                      = x_disb_seq_num;
Line: 378

    x_last_update_date           DATE;
Line: 379

    x_last_updated_by            NUMBER;
Line: 380

    x_last_update_login          NUMBER;
Line: 384

    x_program_update_date        DATE;
Line: 388

    x_last_update_date := SYSDATE;
Line: 390

      x_last_updated_by := 1;
Line: 391

      x_last_update_login := 0;
Line: 393

      x_last_updated_by := fnd_global.user_id;
Line: 394

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

      x_last_update_login := fnd_global.login_id;
Line: 398

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

        x_program_update_date    := NULL;
Line: 411

        x_program_update_date    := SYSDATE;
Line: 415

      fnd_message.set_token ('ROUTINE', 'IGF_AW_DB_CHG_DTLS_PKG.INSERT_ROW');
Line: 421

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_disb_num                          => x_disb_num,
      x_disb_seq_num                      => x_disb_seq_num,
      x_disb_accepted_amt                    => x_disb_accepted_amt,
      x_orig_fee_amt                      => x_orig_fee_amt,
      x_disb_net_amt                      => x_disb_net_amt,
      x_disb_date                         => x_disb_date,
      x_disb_activity                     => x_disb_activity,
      x_disb_status                       => x_disb_status,
      x_disb_status_date                  => x_disb_status_date,
      x_disb_rel_flag                     => x_disb_rel_flag,
      x_first_disb_flag                   => x_first_disb_flag,
      x_interest_rebate_amt                       => x_interest_rebate_amt,
      x_disb_conf_flag                    => x_disb_conf_flag,
      x_pymnt_prd_start_date              => x_pymnt_prd_start_date,
      x_note_message                      => x_note_message,
      x_batch_id_txt                          => x_batch_id_txt,
      x_ack_date                          => x_ack_date,
      x_booking_id_txt                        => x_booking_id_txt,
      x_booking_date                      => x_booking_date,
      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: 450

    INSERT INTO igf_aw_db_chg_dtls (
      award_id,
      disb_num,
      disb_seq_num,
      disb_accepted_amt,
      orig_fee_amt,
      disb_net_amt,
      disb_date,
      disb_activity,
      disb_status,
      disb_status_date,
      disb_rel_flag,
      first_disb_flag,
      interest_rebate_amt,
      disb_conf_flag,
      pymnt_prd_start_date,
      note_message,
      batch_id_txt,
      ack_date,
      booking_id_txt,
      booking_date,
      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.disb_num,
      new_references.disb_seq_num,
      new_references.disb_accepted_amt,
      new_references.orig_fee_amt,
      new_references.disb_net_amt,
      new_references.disb_date,
      new_references.disb_activity,
      new_references.disb_status,
      new_references.disb_status_date,
      NVL(new_references.disb_rel_flag, 'FALSE'),
      new_references.first_disb_flag,
      new_references.interest_rebate_amt,
      new_references.disb_conf_flag,
      new_references.pymnt_prd_start_date,
      new_references.note_message,
      new_references.batch_id_txt,
      new_references.ack_date,
      new_references.booking_id_txt,
      new_references.booking_date,
      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: 522

  END insert_row;
Line: 558

      SELECT
        disb_accepted_amt,
        orig_fee_amt,
        disb_net_amt,
        disb_date,
        disb_activity,
        disb_status,
        disb_status_date,
        disb_rel_flag,
        first_disb_flag,
        interest_rebate_amt,
        disb_conf_flag,
        pymnt_prd_start_date,
        note_message,
        batch_id_txt,
        ack_date,
        booking_id_txt,
        booking_date
      FROM  igf_aw_db_chg_dtls
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 587

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_disb_num                          IN     NUMBER,
    x_disb_seq_num                      IN     NUMBER,
    x_disb_accepted_amt                 IN     NUMBER,
    x_orig_fee_amt                      IN     NUMBER,
    x_disb_net_amt                      IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_disb_activity                     IN     VARCHAR2,
    x_disb_status                       IN     VARCHAR2,
    x_disb_status_date                  IN     DATE,
    x_disb_rel_flag                     IN     VARCHAR2,
    x_first_disb_flag                   IN     VARCHAR2,
    x_interest_rebate_amt               IN     NUMBER,
    x_disb_conf_flag                    IN     VARCHAR2,
    x_pymnt_prd_start_date              IN     DATE,
    x_note_message                      IN     VARCHAR2,
    x_batch_id_txt                      IN     VARCHAR2,
    x_ack_date                          IN     DATE,
    x_booking_id_txt                    IN     VARCHAR2,
    x_booking_date                      IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-2004
  ||  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: 660

    x_last_updated_by            NUMBER;
Line: 661

    x_last_update_login          NUMBER;
Line: 665

    x_program_update_date        DATE;
Line: 669

    x_last_update_date := SYSDATE;
Line: 671

      x_last_updated_by := 1;
Line: 672

      x_last_update_login := 0;
Line: 674

      x_last_updated_by := fnd_global.user_id;
Line: 675

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

      x_last_update_login := fnd_global.login_id;
Line: 679

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

      fnd_message.set_token ('ROUTINE', 'IGF_AW_DB_CHG_DTLS_PKG.UPDATE_ROW');
Line: 690

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_disb_num                          => x_disb_num,
      x_disb_seq_num                      => x_disb_seq_num,
      x_disb_accepted_amt                    => x_disb_accepted_amt,
      x_orig_fee_amt                      => x_orig_fee_amt,
      x_disb_net_amt                      => x_disb_net_amt,
      x_disb_date                         => x_disb_date,
      x_disb_activity                     => x_disb_activity,
      x_disb_status                       => x_disb_status,
      x_disb_status_date                  => x_disb_status_date,
      x_disb_rel_flag                     => x_disb_rel_flag,
      x_first_disb_flag                   => x_first_disb_flag,
      x_interest_rebate_amt                       => x_interest_rebate_amt,
      x_disb_conf_flag                    => x_disb_conf_flag,
      x_pymnt_prd_start_date              => x_pymnt_prd_start_date,
      x_note_message                      => x_note_message,
      x_batch_id_txt                          => x_batch_id_txt,
      x_ack_date                          => x_ack_date,
      x_booking_id_txt                        => x_booking_id_txt,
      x_booking_date                      => x_booking_date,
      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: 727

        x_program_update_date := old_references.program_update_date;
Line: 729

        x_program_update_date := SYSDATE;
Line: 733

    UPDATE igf_aw_db_chg_dtls
      SET
        disb_accepted_amt                    = new_references.disb_accepted_amt,
        orig_fee_amt                      = new_references.orig_fee_amt,
        disb_net_amt                      = new_references.disb_net_amt,
        disb_date                         = new_references.disb_date,
        disb_activity                     = new_references.disb_activity,
        disb_status                       = new_references.disb_status,
        disb_status_date                  = new_references.disb_status_date,
        disb_rel_flag                     = NVL(new_references.disb_rel_flag, 'FALSE'),
        first_disb_flag                   = new_references.first_disb_flag,
        interest_rebate_amt                       = new_references.interest_rebate_amt,
        disb_conf_flag                    = new_references.disb_conf_flag,
        pymnt_prd_start_date              = new_references.pymnt_prd_start_date,
        note_message                      = new_references.note_message,
        batch_id_txt                          = new_references.batch_id_txt,
        ack_date                          = new_references.ack_date,
        booking_id_txt                        = new_references.booking_id_txt,
        booking_date                      = new_references.booking_date,
        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: 765

  END update_row;
Line: 795

  ||  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_db_chg_dtls
      WHERE    award_id                          = x_award_id
      AND      disb_num                          = x_disb_num
      AND      disb_seq_num                      = x_disb_seq_num;
Line: 815

      insert_row (
        x_rowid,
        x_award_id,
        x_disb_num,
        x_disb_seq_num,
        x_disb_accepted_amt,
        x_orig_fee_amt,
        x_disb_net_amt,
        x_disb_date,
        x_disb_activity,
        x_disb_status,
        x_disb_status_date,
        x_disb_rel_flag,
        x_first_disb_flag,
        x_interest_rebate_amt,
        x_disb_conf_flag,
        x_pymnt_prd_start_date,
        x_note_message,
        x_batch_id_txt,
        x_ack_date,
        x_booking_id_txt,
        x_booking_date,
        x_mode
      );
Line: 843

    update_row (
      x_rowid,
      x_award_id,
      x_disb_num,
      x_disb_seq_num,
      x_disb_accepted_amt,
      x_orig_fee_amt,
      x_disb_net_amt,
      x_disb_date,
      x_disb_activity,
      x_disb_status,
      x_disb_status_date,
      x_disb_rel_flag,
      x_first_disb_flag,
      x_interest_rebate_amt,
      x_disb_conf_flag,
      x_pymnt_prd_start_date,
      x_note_message,
      x_batch_id_txt,
      x_ack_date,
      x_booking_id_txt,
      x_booking_date,
      x_mode
    );
Line: 871

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-2004
  ||  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: 890

    DELETE FROM igf_aw_db_chg_dtls
    WHERE rowid = x_rowid;
Line: 897

  END delete_row;