DBA Data[Home] [Help]

APPS.IGS_EN_SPAA_HIST_PKG SQL Statements

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

Line: 24

    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-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     igs_en_spaa_hist
      WHERE    rowid = x_rowid;
Line: 51

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 82

    new_references.last_updated_by                   := x_last_updated_by;
Line: 83

    new_references.last_update_login                 := x_last_update_login;
Line: 112

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

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

      SELECT   rowid
      FROM     igs_en_spaa_hist
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      award_cd = x_award_cd
      AND      creation_date = x_creation_date
      FOR UPDATE NOWAIT;
Line: 188

      SELECT   rowid
      FROM     igs_en_spaa_hist
      WHERE   ((grading_schema_cd = x_grading_schema_cd) AND
               (gs_version_number = x_version_number));
Line: 227

    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-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_person_id,
      x_course_cd,
      x_award_cd,
      x_start_date,
      x_end_date,
      x_complete_flag,
      x_conferral_date,
      x_award_mark,
      x_award_grade,
      x_grading_schema_cd,
      x_gs_version_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 264

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

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

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

    IF (p_action IN ('VALIDATE_INSERT', 'VALIDATE_UPDATE', 'VALIDATE_DELETE')) THEN
      l_rowid := NULL;
Line: 303

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_award_cd                          IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_complete_flag                     IN     VARCHAR2,
    x_conferral_date                    IN     DATE,
    x_award_mark                        IN     NUMBER,
    x_award_grade                       IN     VARCHAR2,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_gs_version_number                 IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-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: 329

    x_last_updated_by            NUMBER;
Line: 330

    x_last_update_login          NUMBER;
Line: 334

    x_last_update_date := SYSDATE;
Line: 336

      x_last_updated_by := 1;
Line: 337

      x_last_update_login := 0;
Line: 339

      x_last_updated_by := fnd_global.user_id;
Line: 340

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

      x_last_update_login := fnd_global.login_id;
Line: 344

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPAA_HIST_PKG.INSERT_ROW');
Line: 355

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_award_cd                          => x_award_cd,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_complete_flag                     => x_complete_flag,
      x_conferral_date                    => x_conferral_date,
      x_award_mark                        => x_award_mark,
      x_award_grade                       => x_award_grade,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_gs_version_number                 => x_gs_version_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: 375

    INSERT INTO igs_en_spaa_hist (
      person_id,
      course_cd,
      award_cd,
      start_date,
      end_date,
      complete_flag,
      conferral_date,
      award_mark,
      award_grade,
      grading_schema_cd,
      gs_version_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.person_id,
      new_references.course_cd,
      new_references.award_cd,
      new_references.start_date,
      new_references.end_date,
      new_references.complete_flag,
      new_references.conferral_date,
      new_references.award_mark,
      new_references.award_grade,
      new_references.grading_schema_cd,
      new_references.gs_version_number,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID INTO x_rowid;
Line: 413

  END insert_row;
Line: 440

      SELECT
        start_date,
        end_date,
        complete_flag,
        conferral_date,
        award_mark,
        award_grade,
        grading_schema_cd,
        gs_version_number
      FROM  igs_en_spaa_hist
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 460

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_award_cd                          IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_complete_flag                     IN     VARCHAR2,
    x_conferral_date                    IN     DATE,
    x_award_mark                        IN     NUMBER,
    x_award_grade                       IN     VARCHAR2,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_gs_version_number                 IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-SEP-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: 515

    x_last_updated_by            NUMBER;
Line: 516

    x_last_update_login          NUMBER;
Line: 520

    x_last_update_date := SYSDATE;
Line: 522

      x_last_updated_by := 1;
Line: 523

      x_last_update_login := 0;
Line: 525

      x_last_updated_by := fnd_global.user_id;
Line: 526

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

      x_last_update_login := fnd_global.login_id;
Line: 530

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPAA_HIST_PKG.UPDATE_ROW');
Line: 541

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_award_cd                          => x_award_cd,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_complete_flag                     => x_complete_flag,
      x_conferral_date                    => x_conferral_date,
      x_award_mark                        => x_award_mark,
      x_award_grade                       => x_award_grade,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_gs_version_number                 => x_gs_version_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: 561

    UPDATE igs_en_spaa_hist
      SET
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        complete_flag                     = new_references.complete_flag,
        conferral_date                    = new_references.conferral_date,
        award_mark                        = new_references.award_mark,
        award_grade                       = new_references.award_grade,
        grading_schema_cd                 = new_references.grading_schema_cd,
        gs_version_number                 = new_references.gs_version_number,
        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: 582

  END update_row;
Line: 604

  ||  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     igs_en_spaa_hist
      WHERE    person_id                         = x_person_id
      AND      course_cd                         = x_course_cd
      AND      award_cd                          = x_award_cd
      AND      creation_date                     = x_creation_date;
Line: 625

      insert_row (
        x_rowid,
        x_person_id,
        x_course_cd,
        x_award_cd,
        x_start_date,
        x_end_date,
        x_complete_flag,
        x_conferral_date,
        x_award_mark,
        x_award_grade,
        x_grading_schema_cd,
        x_gs_version_number,
        x_mode
      );
Line: 644

    update_row (
      x_rowid,
      x_person_id,
      x_course_cd,
      x_award_cd,
      x_start_date,
      x_end_date,
      x_complete_flag,
      x_conferral_date,
      x_award_mark,
      x_award_grade,
      x_grading_schema_cd,
      x_gs_version_number,
      x_mode
    );
Line: 663

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

    DELETE FROM igs_en_spaa_hist
    WHERE rowid = x_rowid;
Line: 691

  END delete_row;