DBA Data[Home] [Help]

APPS.IGF_GR_REPORT_PELL_PKG SQL Statements

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

Line: 19

    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 : 16-OCT-2003
  ||  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_report_pell
      WHERE    rowid = x_rowid;
Line: 46

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 72

    new_references.last_updated_by                   := x_last_updated_by;
Line: 73

    new_references.last_update_login                 := x_last_update_login;
Line: 99

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

      SELECT   rowid
      FROM     igf_gr_report_pell
      WHERE    rcampus_id = x_rcampus_id
      FOR UPDATE NOWAIT;
Line: 182

      SELECT   rowid
      FROM     igf_gr_report_pell
      WHERE   ((ci_cal_type = x_cal_type) AND
               (ci_sequence_number = x_sequence_number));
Line: 216

    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 : 16-OCT-2003
  ||  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_rcampus_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_reporting_pell_cd,
      x_ope_cd,
      x_rep_entity_id_txt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 248

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

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 267

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 285

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_rcampus_id                        IN OUT NOCOPY NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_reporting_pell_cd                 IN     VARCHAR2,
    x_ope_cd                            IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-OCT-2003
  ||  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: 306

    x_last_updated_by            NUMBER;
Line: 307

    x_last_update_login          NUMBER;
Line: 311

    x_last_update_date := SYSDATE;
Line: 313

      x_last_updated_by := 1;
Line: 314

      x_last_update_login := 0;
Line: 316

      x_last_updated_by := fnd_global.user_id;
Line: 317

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

      x_last_update_login := fnd_global.login_id;
Line: 321

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

      fnd_message.set_token ('ROUTINE', 'IGF_GR_REPORT_PELL_PKG.INSERT_ROW');
Line: 334

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_rcampus_id                        => x_rcampus_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_reporting_pell_cd                 => x_reporting_pell_cd,
      x_ope_cd                            => x_ope_cd,
      x_rep_entity_id_txt                 => x_rep_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: 349

    INSERT INTO igf_gr_report_pell (
      rcampus_id,
      ci_cal_type,
      ci_sequence_number,
      reporting_pell_cd,
      ope_cd,
      rep_entity_id_txt,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igf_gr_report_pell_s.NEXTVAL,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.reporting_pell_cd,
      new_references.ope_cd,
      new_references.rep_entity_id_txt,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, rcampus_id INTO x_rowid, x_rcampus_id;
Line: 375

  END insert_row;
Line: 398

      SELECT
        ci_cal_type,
        ci_sequence_number,
        reporting_pell_cd,
        ope_cd,
        rep_entity_id_txt
      FROM  igf_gr_report_pell
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 415

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_rcampus_id                        IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_reporting_pell_cd                 IN     VARCHAR2,
    x_ope_cd                            IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-OCT-2003
  ||  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: 462

    x_last_updated_by            NUMBER;
Line: 463

    x_last_update_login          NUMBER;
Line: 467

    x_last_update_date := SYSDATE;
Line: 469

      x_last_updated_by := 1;
Line: 470

      x_last_update_login := 0;
Line: 472

      x_last_updated_by := fnd_global.user_id;
Line: 473

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

      x_last_update_login := fnd_global.login_id;
Line: 477

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

      fnd_message.set_token ('ROUTINE', 'IGF_GR_REPORT_PELL_PKG.UPDATE_ROW');
Line: 488

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_rcampus_id                        => x_rcampus_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_reporting_pell_cd                 => x_reporting_pell_cd,
      x_ope_cd                            => x_ope_cd,
      x_rep_entity_id_txt                 => x_rep_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: 503

    UPDATE igf_gr_report_pell
      SET
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        reporting_pell_cd                 = new_references.reporting_pell_cd,
        ope_cd                            = new_references.ope_cd,
        rep_entity_id_txt                 = new_references.rep_entity_id_txt,
        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: 519

  END update_row;
Line: 535

  ||  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_report_pell
      WHERE    rcampus_id                        = x_rcampus_id;
Line: 553

      insert_row (
        x_rowid,
        x_rcampus_id,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_reporting_pell_cd,
        x_ope_cd,
        x_rep_entity_id_txt,
        x_mode
      );
Line: 567

    update_row (
      x_rowid,
      x_rcampus_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_reporting_pell_cd,
      x_ope_cd,
      x_rep_entity_id_txt,
      x_mode
    );
Line: 581

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-OCT-2003
  ||  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: 600

    DELETE FROM igf_gr_report_pell
    WHERE rowid = x_rowid;
Line: 607

  END delete_row;
Line: 663

      SELECT   rowid
        FROM     igf_gr_report_pell
       WHERE     NVL(reporting_pell_cd,'*') = NVL(x_rep_pell,'*')
         AND     ci_cal_type = x_ci_cal_type
         AND     ci_sequence_number = x_ci_sequence_number
         AND     ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 699

      SELECT   rowid
        FROM     igf_gr_report_pell
       WHERE     NVL(rep_entity_id_txt,'*') = NVL(x_rep_entity_id_txt,'*')
         AND     ci_cal_type = x_ci_cal_type
         AND     ci_sequence_number = x_ci_sequence_number
         AND     ((l_rowid IS NULL) OR (rowid <> l_rowid));