DBA Data[Home] [Help]

APPS.IGF_AW_DB_COD_DTLS_PKG SQL Statements

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

Line: 29

    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_cod_dtls
      WHERE    rowid = x_rowid;
Line: 56

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 93

    new_references.last_updated_by                   := x_last_updated_by;
Line: 94

    new_references.last_update_login                 := x_last_update_login;
Line: 108

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

      SELECT   rowid
      FROM     igf_aw_db_cod_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: 166

      SELECT   rowid
      FROM     igf_aw_db_cod_dtls
      WHERE   ((award_id = x_award_id));
Line: 202

      SELECT   rowid
      FROM     igf_aw_db_cod_dtls
      WHERE    award_id = x_award_id
        AND    disb_num = x_disb_num;
Line: 245

    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_document_id_txt,
      x_disb_num,
      x_disb_seq_num,
      x_disb_accepted_amt,
      x_orig_fee_amt,
      x_disb_net_amt,
      x_disb_date,
      x_disb_rel_flag,
      x_first_disb_flag,
      x_interest_rebate_amt,
      x_disb_conf_flag,
      x_pymnt_per_start_date,
      x_note_message,
      x_rep_entity_id_txt,
      x_atd_entity_id_txt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 287

    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: 301

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

    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: 322

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_document_id_txt                   IN     VARCHAR2,
    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_rel_flag                     IN     VARCHAR2,
    x_first_disb_flag                   IN     VARCHAR2,
    x_interest_rebate_amt               IN     NUMBER,
    x_disb_conf_flag                    IN     VARCHAR2,
    x_pymnt_per_start_date              IN     DATE,
    x_note_message                      IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_atd_entity_id_txt                 IN     VARCHAR2,
    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_cod_dtls
      WHERE    award_id                          = x_award_id
      AND      disb_num                          = x_disb_num
      AND      disb_seq_num                      = x_disb_seq_num;
Line: 359

    x_last_update_date           DATE;
Line: 360

    x_last_updated_by            NUMBER;
Line: 361

    x_last_update_login          NUMBER;
Line: 365

    x_program_update_date        DATE;
Line: 369

    x_last_update_date := SYSDATE;
Line: 371

      x_last_updated_by := 1;
Line: 372

      x_last_update_login := 0;
Line: 374

      x_last_updated_by := fnd_global.user_id;
Line: 375

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

      x_last_update_login := fnd_global.login_id;
Line: 379

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

        x_program_update_date    := NULL;
Line: 392

        x_program_update_date    := SYSDATE;
Line: 396

      fnd_message.set_token ('ROUTINE', 'IGF_AW_DB_COD_DTLS_PKG.INSERT_ROW');
Line: 402

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_document_id_txt                   => x_document_id_txt,
      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_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_per_start_date              => x_pymnt_per_start_date,
      x_note_message                      => x_note_message,
      x_rep_entity_id_txt                 => x_rep_entity_id_txt,
      x_atd_entity_id_txt                 => x_atd_entity_id_txt,
      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: 427

    INSERT INTO igf_aw_db_cod_dtls (
      award_id,
      document_id_txt,
      disb_num,
      disb_seq_num,
      disb_accepted_amt,
      orig_fee_amt,
      disb_net_amt,
      disb_date,
      disb_rel_flag,
      first_disb_flag,
      interest_rebate_amt,
      disb_conf_flag,
      pymnt_per_start_date,
      note_message,
      rep_entity_id_txt,
      atd_entity_id_txt,
      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.document_id_txt,
      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_rel_flag,
      new_references.first_disb_flag,
      new_references.interest_rebate_amt,
      new_references.disb_conf_flag,
      new_references.pymnt_per_start_date,
      new_references.note_message,
      new_references.rep_entity_id_txt,
      new_references.atd_entity_id_txt,
      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: 490

  END insert_row;
Line: 522

      SELECT
        document_id_txt,
        disb_accepted_amt,
        orig_fee_amt,
        disb_net_amt,
        disb_date,
        disb_rel_flag,
        first_disb_flag,
        interest_rebate_amt,
        disb_conf_flag,
        pymnt_per_start_date,
        note_message,
        rep_entity_id_txt,
        atd_entity_id_txt
      FROM  igf_aw_db_cod_dtls
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 547

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_document_id_txt                   IN     VARCHAR2,
    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_rel_flag                     IN     VARCHAR2,
    x_first_disb_flag                   IN     VARCHAR2,
    x_interest_rebate_amt               IN     NUMBER,
    x_disb_conf_flag                    IN     VARCHAR2,
    x_pymnt_per_start_date              IN     DATE,
    x_note_message                      IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_atd_entity_id_txt                 IN     VARCHAR2,
    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: 612

    x_last_updated_by            NUMBER;
Line: 613

    x_last_update_login          NUMBER;
Line: 617

    x_program_update_date        DATE;
Line: 621

    x_last_update_date := SYSDATE;
Line: 623

      x_last_updated_by := 1;
Line: 624

      x_last_update_login := 0;
Line: 626

      x_last_updated_by := fnd_global.user_id;
Line: 627

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

      x_last_update_login := fnd_global.login_id;
Line: 631

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

      fnd_message.set_token ('ROUTINE', 'IGF_AW_DB_COD_DTLS_PKG.UPDATE_ROW');
Line: 642

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_document_id_txt                   => x_document_id_txt,
      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_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_per_start_date              => x_pymnt_per_start_date,
      x_note_message                      => x_note_message,
      x_rep_entity_id_txt                 => x_rep_entity_id_txt,
      x_atd_entity_id_txt                 => x_atd_entity_id_txt,
      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: 675

        x_program_update_date := old_references.program_update_date;
Line: 677

        x_program_update_date := SYSDATE;
Line: 681

    UPDATE igf_aw_db_cod_dtls
      SET
        document_id_txt                   = new_references.document_id_txt,
        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_rel_flag                     = new_references.disb_rel_flag,
        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_per_start_date              = new_references.pymnt_per_start_date,
        note_message                      = new_references.note_message,
        rep_entity_id_txt                 = new_references.rep_entity_id_txt,
        atd_entity_id_txt                 = new_references.atd_entity_id_txt,
        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: 709

  END update_row;
Line: 735

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

      insert_row (
        x_rowid,
        x_award_id,
        x_document_id_txt,
        x_disb_num,
        x_disb_seq_num,
        x_disb_accepted_amt,
        x_orig_fee_amt,
        x_disb_net_amt,
        x_disb_date,
        x_disb_rel_flag,
        x_first_disb_flag,
        x_interest_rebate_amt,
        x_disb_conf_flag,
        x_pymnt_per_start_date,
        x_note_message,
        x_rep_entity_id_txt,
        x_atd_entity_id_txt,
        x_mode
      );
Line: 779

    update_row (
      x_rowid,
      x_award_id,
      x_document_id_txt,
      x_disb_num,
      x_disb_seq_num,
      x_disb_accepted_amt,
      x_orig_fee_amt,
      x_disb_net_amt,
      x_disb_date,
      x_disb_rel_flag,
      x_first_disb_flag,
      x_interest_rebate_amt,
      x_disb_conf_flag,
      x_pymnt_per_start_date,
      x_note_message,
      x_rep_entity_id_txt,
      x_atd_entity_id_txt,
      x_mode
    );
Line: 803

  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: 822

    DELETE FROM igf_aw_db_cod_dtls
    WHERE rowid = x_rowid;
Line: 829

  END delete_row;