DBA Data[Home] [Help]

APPS.IGF_GR_ELEC_STAT_SUM_PKG SQL Statements

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

Line: 32

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : adhawan
  ||  Created On : 09-JAN-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     igf_gr_elec_stat_sum_all
      WHERE    rowid = x_rowid;
Line: 59

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 98

    new_references.last_updated_by                   := x_last_updated_by;
Line: 99

    new_references.last_update_login                 := x_last_update_login;
Line: 117

      SELECT   rowid
      FROM     igf_gr_elec_stat_sum_all
      WHERE    ess_id = x_ess_id
      FOR UPDATE NOWAIT;
Line: 163

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : adhawan
  ||  Created On : 09-JAN-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_ess_id,
      x_rep_pell_id,
      x_duns_id,
      x_gaps_award_num,
      x_acct_schedule_number,
      x_acct_schedule_date,
      x_prev_obligation_amt,
      x_obligation_adj_amt,
      x_curr_obligation_amt,
      x_prev_obligation_pymt_amt,
      x_obligation_pymt_adj_amt,
      x_curr_obligation_pymt_amt,
      x_ytd_total_recp,
      x_ytd_accepted_disb_amt,
      x_ytd_posted_disb_amt,
      x_ytd_admin_cost_allowance,
      x_caps_drwn_dn_pymts,
      x_gaps_last_date,
      x_last_pymt_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 208

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_ess_id                            IN OUT NOCOPY NUMBER,
    x_rep_pell_id                       IN     VARCHAR2,
    x_duns_id                           IN     VARCHAR2,
    x_gaps_award_num                    IN     VARCHAR2,
    x_acct_schedule_number              IN     VARCHAR2,
    x_acct_schedule_date                IN     DATE,
    x_prev_obligation_amt               IN     NUMBER,
    x_obligation_adj_amt                IN     NUMBER,
    x_curr_obligation_amt               IN     NUMBER,
    x_prev_obligation_pymt_amt          IN     NUMBER,
    x_obligation_pymt_adj_amt           IN     NUMBER,
    x_curr_obligation_pymt_amt          IN     NUMBER,
    x_ytd_total_recp                    IN     NUMBER,
    x_ytd_accepted_disb_amt             IN     NUMBER,
    x_ytd_posted_disb_amt               IN     NUMBER,
    x_ytd_admin_cost_allowance          IN     NUMBER,
    x_caps_drwn_dn_pymts                IN     NUMBER,
    x_gaps_last_date                    IN     DATE,
    x_last_pymt_number                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : adhawan
  ||  Created On : 09-JAN-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     igf_gr_elec_stat_sum_all
      WHERE    ess_id                            = x_ess_id;
Line: 270

    x_last_update_date           DATE;
Line: 271

    x_last_updated_by            NUMBER;
Line: 272

    x_last_update_login          NUMBER;
Line: 276

    x_program_update_date        DATE;
Line: 283

    x_last_update_date := SYSDATE;
Line: 285

      x_last_updated_by := 1;
Line: 286

      x_last_update_login := 0;
Line: 288

      x_last_updated_by := fnd_global.user_id;
Line: 289

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

      x_last_update_login := fnd_global.login_id;
Line: 293

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

        x_program_update_date    := NULL;
Line: 306

        x_program_update_date    := SYSDATE;
Line: 313

    SELECT igf_gr_elec_stat_sum_s.NEXTVAL INTO x_ess_id FROM DUAL;
Line: 315

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_ess_id                            => x_ess_id,
      x_rep_pell_id                       => x_rep_pell_id,
      x_duns_id                           => x_duns_id,
      x_gaps_award_num                    => x_gaps_award_num,
      x_acct_schedule_number              => x_acct_schedule_number,
      x_acct_schedule_date                => x_acct_schedule_date,
      x_prev_obligation_amt               => x_prev_obligation_amt,
      x_obligation_adj_amt                => x_obligation_adj_amt,
      x_curr_obligation_amt               => x_curr_obligation_amt,
      x_prev_obligation_pymt_amt          => x_prev_obligation_pymt_amt,
      x_obligation_pymt_adj_amt           => x_obligation_pymt_adj_amt,
      x_curr_obligation_pymt_amt          => x_curr_obligation_pymt_amt,
      x_ytd_total_recp                    => x_ytd_total_recp,
      x_ytd_accepted_disb_amt             => x_ytd_accepted_disb_amt,
      x_ytd_posted_disb_amt               => x_ytd_posted_disb_amt,
      x_ytd_admin_cost_allowance          => x_ytd_admin_cost_allowance,
      x_caps_drwn_dn_pymts                => x_caps_drwn_dn_pymts,
      x_gaps_last_date                    => x_gaps_last_date,
      x_last_pymt_number                  => x_last_pymt_number,
      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: 343

    INSERT INTO igf_gr_elec_stat_sum_all (
      ess_id,
      rep_pell_id,
      duns_id,
      gaps_award_num,
      acct_schedule_number,
      acct_schedule_date,
      prev_obligation_amt,
      obligation_adj_amt,
      curr_obligation_amt,
      prev_obligation_pymt_amt,
      obligation_pymt_adj_amt,
      curr_obligation_pymt_amt,
      ytd_total_recp,
      ytd_accepted_disb_amt,
      ytd_posted_disb_amt,
      ytd_admin_cost_allowance,
      caps_drwn_dn_pymts,
      gaps_last_date,
      last_pymt_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      org_id
    ) VALUES (
      new_references.ess_id,
      new_references.rep_pell_id,
      new_references.duns_id,
      new_references.gaps_award_num,
      new_references.acct_schedule_number,
      new_references.acct_schedule_date,
      new_references.prev_obligation_amt,
      new_references.obligation_adj_amt,
      new_references.curr_obligation_amt,
      new_references.prev_obligation_pymt_amt,
      new_references.obligation_pymt_adj_amt,
      new_references.curr_obligation_pymt_amt,
      new_references.ytd_total_recp,
      new_references.ytd_accepted_disb_amt,
      new_references.ytd_posted_disb_amt,
      new_references.ytd_admin_cost_allowance,
      new_references.caps_drwn_dn_pymts,
      new_references.gaps_last_date,
      new_references.last_pymt_number,
      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,
      l_org_id
    );
Line: 413

  END insert_row;
Line: 448

      SELECT
        rep_pell_id,
        duns_id,
        gaps_award_num,
        acct_schedule_number,
        acct_schedule_date,
        prev_obligation_amt,
        obligation_adj_amt,
        curr_obligation_amt,
        prev_obligation_pymt_amt,
        obligation_pymt_adj_amt,
        curr_obligation_pymt_amt,
        ytd_total_recp,
        ytd_accepted_disb_amt,
        ytd_posted_disb_amt,
        ytd_admin_cost_allowance,
        caps_drwn_dn_pymts,
        gaps_last_date,
        last_pymt_number
      FROM  igf_gr_elec_stat_sum_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 478

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_ess_id                            IN     NUMBER,
    x_rep_pell_id                       IN     VARCHAR2,
    x_duns_id                           IN     VARCHAR2,
    x_gaps_award_num                    IN     VARCHAR2,
    x_acct_schedule_number              IN     VARCHAR2,
    x_acct_schedule_date                IN     DATE,
    x_prev_obligation_amt               IN     NUMBER,
    x_obligation_adj_amt                IN     NUMBER,
    x_curr_obligation_amt               IN     NUMBER,
    x_prev_obligation_pymt_amt          IN     NUMBER,
    x_obligation_pymt_adj_amt           IN     NUMBER,
    x_curr_obligation_pymt_amt          IN     NUMBER,
    x_ytd_total_recp                    IN     NUMBER,
    x_ytd_accepted_disb_amt             IN     NUMBER,
    x_ytd_posted_disb_amt               IN     NUMBER,
    x_ytd_admin_cost_allowance          IN     NUMBER,
    x_caps_drwn_dn_pymts                IN     NUMBER,
    x_gaps_last_date                    IN     DATE,
    x_last_pymt_number                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : adhawan
  ||  Created On : 09-JAN-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: 551

    x_last_updated_by            NUMBER;
Line: 552

    x_last_update_login          NUMBER;
Line: 556

    x_program_update_date        DATE;
Line: 560

    x_last_update_date := SYSDATE;
Line: 562

      x_last_updated_by := 1;
Line: 563

      x_last_update_login := 0;
Line: 565

      x_last_updated_by := fnd_global.user_id;
Line: 566

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

      x_last_update_login := fnd_global.login_id;
Line: 570

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_ess_id                            => x_ess_id,
      x_rep_pell_id                       => x_rep_pell_id,
      x_duns_id                           => x_duns_id,
      x_gaps_award_num                    => x_gaps_award_num,
      x_acct_schedule_number              => x_acct_schedule_number,
      x_acct_schedule_date                => x_acct_schedule_date,
      x_prev_obligation_amt               => x_prev_obligation_amt,
      x_obligation_adj_amt                => x_obligation_adj_amt,
      x_curr_obligation_amt               => x_curr_obligation_amt,
      x_prev_obligation_pymt_amt          => x_prev_obligation_pymt_amt,
      x_obligation_pymt_adj_amt           => x_obligation_pymt_adj_amt,
      x_curr_obligation_pymt_amt          => x_curr_obligation_pymt_amt,
      x_ytd_total_recp                    => x_ytd_total_recp,
      x_ytd_accepted_disb_amt             => x_ytd_accepted_disb_amt,
      x_ytd_posted_disb_amt               => x_ytd_posted_disb_amt,
      x_ytd_admin_cost_allowance          => x_ytd_admin_cost_allowance,
      x_caps_drwn_dn_pymts                => x_caps_drwn_dn_pymts,
      x_gaps_last_date                    => x_gaps_last_date,
      x_last_pymt_number                  => x_last_pymt_number,
      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: 616

        x_program_update_date := old_references.program_update_date;
Line: 618

        x_program_update_date := SYSDATE;
Line: 622

    UPDATE igf_gr_elec_stat_sum_all
      SET
        rep_pell_id                       = new_references.rep_pell_id,
        duns_id                           = new_references.duns_id,
        gaps_award_num                    = new_references.gaps_award_num,
        acct_schedule_number              = new_references.acct_schedule_number,
        acct_schedule_date                = new_references.acct_schedule_date,
        prev_obligation_amt               = new_references.prev_obligation_amt,
        obligation_adj_amt                = new_references.obligation_adj_amt,
        curr_obligation_amt               = new_references.curr_obligation_amt,
        prev_obligation_pymt_amt          = new_references.prev_obligation_pymt_amt,
        obligation_pymt_adj_amt           = new_references.obligation_pymt_adj_amt,
        curr_obligation_pymt_amt          = new_references.curr_obligation_pymt_amt,
        ytd_total_recp                    = new_references.ytd_total_recp,
        ytd_accepted_disb_amt             = new_references.ytd_accepted_disb_amt,
        ytd_posted_disb_amt               = new_references.ytd_posted_disb_amt,
        ytd_admin_cost_allowance          = new_references.ytd_admin_cost_allowance,
        caps_drwn_dn_pymts                = new_references.caps_drwn_dn_pymts,
        gaps_last_date                    = new_references.gaps_last_date,
        last_pymt_number                  = new_references.last_pymt_number,
        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: 655

  END update_row;
Line: 684

  ||  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_gr_elec_stat_sum_all
      WHERE    ess_id                            = x_ess_id;
Line: 702

      insert_row (
        x_rowid,
        x_ess_id,
        x_rep_pell_id,
        x_duns_id,
        x_gaps_award_num,
        x_acct_schedule_number,
        x_acct_schedule_date,
        x_prev_obligation_amt,
        x_obligation_adj_amt,
        x_curr_obligation_amt,
        x_prev_obligation_pymt_amt,
        x_obligation_pymt_adj_amt,
        x_curr_obligation_pymt_amt,
        x_ytd_total_recp,
        x_ytd_accepted_disb_amt,
        x_ytd_posted_disb_amt,
        x_ytd_admin_cost_allowance,
        x_caps_drwn_dn_pymts,
        x_gaps_last_date,
        x_last_pymt_number,
        x_mode
      );
Line: 729

    update_row (
      x_rowid,
      x_ess_id,
      x_rep_pell_id,
      x_duns_id,
      x_gaps_award_num,
      x_acct_schedule_number,
      x_acct_schedule_date,
      x_prev_obligation_amt,
      x_obligation_adj_amt,
      x_curr_obligation_amt,
      x_prev_obligation_pymt_amt,
      x_obligation_pymt_adj_amt,
      x_curr_obligation_pymt_amt,
      x_ytd_total_recp,
      x_ytd_accepted_disb_amt,
      x_ytd_posted_disb_amt,
      x_ytd_admin_cost_allowance,
      x_caps_drwn_dn_pymts,
      x_gaps_last_date,
      x_last_pymt_number,
      x_mode
    );
Line: 756

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : adhawan
  ||  Created On : 09-JAN-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: 775

    DELETE FROM igf_gr_elec_stat_sum_all
    WHERE rowid = x_rowid;
Line: 782

  END delete_row;