DBA Data[Home] [Help]

APPS.IGF_GR_ATTEND_PELL_PKG SQL Statements

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

Line: 20

    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_attend_pell
      WHERE    rowid = x_rowid;
Line: 47

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 74

    new_references.last_updated_by                   := x_last_updated_by;
Line: 75

    new_references.last_update_login                 := x_last_update_login;
Line: 98

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

      SELECT   rowid
      FROM     igf_gr_attend_pell
      WHERE    acampus_id = x_acampus_id
      FOR UPDATE NOWAIT;
Line: 154

      SELECT   *
      FROM     igf_gr_attend_pell
      WHERE   ((rcampus_id = x_rcampus_id));
Line: 194

    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_acampus_id,
      x_rcampus_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_attending_pell_cd,
      x_ope_cd,
      x_atd_entity_id_txt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 227

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_acampus_id                        IN OUT NOCOPY NUMBER,
    x_rcampus_id                        IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_attending_pell_cd                 IN     VARCHAR2,
    x_ope_cd                            IN     VARCHAR2,
    x_atd_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: 281

    x_last_updated_by            NUMBER;
Line: 282

    x_last_update_login          NUMBER;
Line: 286

    x_last_update_date := SYSDATE;
Line: 288

      x_last_updated_by := 1;
Line: 289

      x_last_update_login := 0;
Line: 291

      x_last_updated_by := fnd_global.user_id;
Line: 292

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

      x_last_update_login := fnd_global.login_id;
Line: 296

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

      fnd_message.set_token ('ROUTINE', 'IGF_GR_ATTEND_PELL_PKG.INSERT_ROW');
Line: 309

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_acampus_id                        => x_acampus_id,
      x_rcampus_id                        => x_rcampus_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_attending_pell_cd                 => x_attending_pell_cd,
      x_ope_cd                            => x_ope_cd,
      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: 325

    INSERT INTO igf_gr_attend_pell (
      acampus_id,
      rcampus_id,
      ci_cal_type,
      ci_sequence_number,
      attending_pell_cd,
      ope_cd,
      atd_entity_id_txt,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igf_gr_attend_pell_s.NEXTVAL,
      new_references.rcampus_id,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.attending_pell_cd,
      new_references.ope_cd,
      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
    ) RETURNING ROWID, acampus_id INTO x_rowid, x_acampus_id;
Line: 353

  END insert_row;
Line: 376

      SELECT
        rcampus_id,
        ci_cal_type,
        ci_sequence_number,
        attending_pell_cd,
        ope_cd,
        atd_entity_id_txt
      FROM  igf_gr_attend_pell
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 394

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_acampus_id                        IN     NUMBER,
    x_rcampus_id                        IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_attending_pell_cd                 IN     VARCHAR2,
    x_ope_cd                            IN     VARCHAR2,
    x_atd_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: 443

    x_last_updated_by            NUMBER;
Line: 444

    x_last_update_login          NUMBER;
Line: 448

    x_last_update_date := SYSDATE;
Line: 450

      x_last_updated_by := 1;
Line: 451

      x_last_update_login := 0;
Line: 453

      x_last_updated_by := fnd_global.user_id;
Line: 454

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

      x_last_update_login := fnd_global.login_id;
Line: 458

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

      fnd_message.set_token ('ROUTINE', 'IGF_GR_ATTEND_PELL_PKG.UPDATE_ROW');
Line: 469

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_acampus_id                        => x_acampus_id,
      x_rcampus_id                        => x_rcampus_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_attending_pell_cd                 => x_attending_pell_cd,
      x_ope_cd                            => x_ope_cd,
      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: 485

    UPDATE igf_gr_attend_pell
      SET
        rcampus_id                        = new_references.rcampus_id,
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        attending_pell_cd                 = new_references.attending_pell_cd,
        ope_cd                            = new_references.ope_cd,
        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
      WHERE rowid = x_rowid;
Line: 502

  END update_row;
Line: 519

  ||  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_attend_pell
      WHERE    acampus_id                        = x_acampus_id;
Line: 537

      insert_row (
        x_rowid,
        x_acampus_id,
        x_rcampus_id,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_attending_pell_cd,
        x_ope_cd,
        x_atd_entity_id_txt,
        x_mode
      );
Line: 552

    update_row (
      x_rowid,
      x_acampus_id,
      x_rcampus_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_attending_pell_cd,
      x_ope_cd,
      x_atd_entity_id_txt,
      x_mode
    );
Line: 567

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

    DELETE FROM igf_gr_attend_pell
    WHERE rowid = x_rowid;
Line: 593

  END delete_row;
Line: 636

      SELECT   rowid
        FROM     igf_gr_attend_pell
       WHERE     NVL(attending_pell_cd,'*') = NVL(x_attending_pell_cd,'*')
         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: 664

      SELECT   rowid
        FROM     igf_gr_attend_pell
       WHERE     NVL(atd_entity_id_txt,'*') = NVL(x_atd_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));