DBA Data[Home] [Help]

APPS.IGS_PR_STU_ACAD_STAT_PKG SQL Statements

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

Line: 26

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : nmankodi
  ||  Created On : 04-NOV-2002
  ||  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_pr_stu_acad_stat
      WHERE    rowid = x_rowid;
Line: 54

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 88

    new_references.last_updated_by                   := x_last_updated_by;
Line: 89

    new_references.last_update_login                 := x_last_update_login;
Line: 115

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

	    Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 140

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

      SELECT   rowid
      FROM     igs_pr_stu_acad_stat
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      cal_type = x_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      stat_type = x_stat_type
			AND      timeframe = x_timeframe
      FOR UPDATE NOWAIT;
Line: 208

      SELECT   ROWID
      FROM     igs_pr_stu_acad_stat
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd ;
Line: 231

      SELECT   ROWID
      FROM     igs_pr_stu_acad_stat
      WHERE    cal_type= x_cal_type
      AND      ci_sequence_number = x_ci_sequence_number;
Line: 263

      SELECT   rowid
      FROM     igs_pr_stu_acad_stat
      WHERE   ((stat_type = x_stat_type));
Line: 302

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : nmankodi
  ||  Created On : 04-NOV-2002
  ||  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_cal_type,
      x_ci_sequence_number,
      x_stat_type,
      x_timeframe,
      x_source_type,
      x_source_reference,
      x_attempted_credit_points,
      x_earned_credit_points,
      x_gpa,
      x_gpa_credit_points,
      x_gpa_quality_points,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 341

    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.cal_type,
             new_references.ci_sequence_number,
             new_references.stat_type,
             new_references.timeframe)
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 355

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

    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.cal_type,
             new_references.ci_sequence_number,
             new_references.stat_type,
             new_references.timeframe
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 373

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_cal_type                          IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_stat_type                         IN     VARCHAR2,
    x_timeframe                         IN     VARCHAR2,
    x_source_type                       IN     VARCHAR2,
    x_source_reference                  IN     VARCHAR2,
    x_attempted_credit_points           IN     NUMBER,
    x_earned_credit_points              IN     NUMBER,
    x_gpa                               IN     NUMBER,
    x_gpa_credit_points                 IN     NUMBER,
    x_gpa_quality_points                IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : nmankodi
  ||  Created On : 04-NOV-2002
  ||  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     igs_pr_stu_acad_stat
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      cal_type = x_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      stat_type = x_stat_type;
Line: 415

    x_last_update_date           DATE;
Line: 416

    x_last_updated_by            NUMBER;
Line: 417

    x_last_update_login          NUMBER;
Line: 421

    x_last_update_date := SYSDATE;
Line: 423

      x_last_updated_by := 1;
Line: 424

      x_last_update_login := 0;
Line: 426

      x_last_updated_by := fnd_global.user_id;
Line: 427

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

      x_last_update_login := fnd_global.login_id;
Line: 431

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

      p_action                              => 'INSERT',
      x_rowid                               => x_rowid,
      x_person_id                           => x_person_id,
      x_course_cd                           => x_course_cd ,
      x_cal_type                            => x_cal_type,
      x_ci_sequence_number                  => x_ci_sequence_number,
      x_stat_type                           => x_stat_type,
      x_timeframe                           => x_timeframe,
      x_source_type                         => x_source_type,
      x_source_reference                    => x_source_reference,
      x_attempted_credit_points             => x_attempted_credit_points,
      x_earned_credit_points                => x_earned_credit_points,
      x_gpa                                 => x_gpa,
      x_gpa_credit_points                   => x_gpa_credit_points,
      x_gpa_quality_points                  => x_gpa_quality_points,
      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: 463

    INSERT INTO igs_pr_stu_acad_stat (
      person_id,
      course_cd,
      cal_type,
      ci_sequence_number,
      stat_type,
      timeframe,
      source_type,
      source_reference,
      attempted_credit_points,
      earned_credit_points,
      gpa,
      gpa_credit_points,
      gpa_quality_points,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.person_id,
      new_references.course_cd,
      new_references.cal_type,
      new_references.ci_sequence_number,
      new_references.stat_type,
      new_references.timeframe,
      new_references.source_type,
      new_references.source_reference,
      new_references.attempted_credit_points,
      new_references.earned_credit_points,
      new_references.gpa,
      new_references.gpa_credit_points,
      new_references.gpa_quality_points,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 511

  END insert_row;
Line: 540

      SELECT
      timeframe,
      source_type,
      source_reference,
      attempted_credit_points,
      earned_credit_points,
      gpa,
      gpa_credit_points,
      gpa_quality_points
      FROM  igs_pr_stu_acad_stat
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 561

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_cal_type                          IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_stat_type                         IN     VARCHAR2,
    x_timeframe                         IN     VARCHAR2,
    x_source_type                       IN     VARCHAR2,
    x_source_reference                  IN     VARCHAR2,
    x_attempted_credit_points           IN     NUMBER,
    x_earned_credit_points              IN     NUMBER,
    x_gpa                               IN     NUMBER,
    x_gpa_credit_points                 IN     NUMBER,
    x_gpa_quality_points                IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : nmankodi
  ||  Created On : 04-NOV-2002
  ||  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: 619

    x_last_updated_by            NUMBER;
Line: 620

    x_last_update_login          NUMBER;
Line: 624

    x_last_update_date := SYSDATE;
Line: 626

      x_last_updated_by := 1;
Line: 627

      x_last_update_login := 0;
Line: 629

      x_last_updated_by := fnd_global.user_id;
Line: 630

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

      x_last_update_login := fnd_global.login_id;
Line: 634

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

      p_action                              => 'UPDATE',
      x_rowid                               => x_rowid,
      x_person_id                           => x_person_id,
      x_course_cd                           => x_course_cd ,
      x_cal_type                            => x_cal_type,
      x_ci_sequence_number                  => x_ci_sequence_number,
      x_stat_type                           => x_stat_type,
      x_timeframe                           => x_timeframe,
      x_source_type                         => x_source_type,
      x_source_reference                    => x_source_reference,
      x_attempted_credit_points             => x_attempted_credit_points,
      x_earned_credit_points                => x_earned_credit_points,
      x_gpa                                 => x_gpa,
      x_gpa_credit_points                   => x_gpa_credit_points,
      x_gpa_quality_points                  => x_gpa_quality_points,
      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: 666

    UPDATE igs_pr_stu_acad_stat
      SET
      timeframe                 = new_references.timeframe,
      source_type               = new_references.source_type,
      source_reference          = new_references.source_reference,
      attempted_credit_points   = new_references.attempted_credit_points,
      earned_credit_points      = new_references.earned_credit_points,
      gpa                       = new_references.gpa,
      gpa_credit_points         = new_references.gpa_credit_points,
      gpa_quality_points        = new_references.gpa_quality_points,
      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: 685

  END update_row;
Line: 708

  ||  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_pr_stu_acad_stat
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      cal_type = x_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      stat_type = x_stat_type
      AND      timeframe = x_timeframe;
Line: 732

      insert_row (
    x_rowid,
    x_person_id,
    x_course_cd,
    x_cal_type,
    x_ci_sequence_number,
    x_stat_type,
    x_timeframe,
    x_source_type,
    x_source_reference,
    x_attempted_credit_points,
    x_earned_credit_points,
    x_gpa,
    x_gpa_credit_points,
    x_gpa_quality_points,
    x_mode
      );
Line: 753

    update_row (
    x_rowid,
    x_person_id,
    x_course_cd,
    x_cal_type,
    x_ci_sequence_number,
    x_stat_type,
    x_timeframe,
    x_source_type,
    x_source_reference,
    x_attempted_credit_points,
    x_earned_credit_points,
    x_gpa,
    x_gpa_credit_points,
    x_gpa_quality_points,
    x_mode
    );
Line: 774

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : nmankodi
  ||  Created On : 04-NOV-2002
  ||  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: 793

    DELETE FROM igs_pr_stu_acad_stat
    WHERE rowid = x_rowid;
Line: 800

  END delete_row;