DBA Data[Home] [Help]

APPS.IGS_UC_QUAL_DETS_PKG SQL Statements

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

Line: 28

    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 : 12-FEB-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_UC_QUAL_DETS
      WHERE    rowid = x_rowid;
Line: 55

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 90

    new_references.last_updated_by                   := x_last_updated_by;
Line: 91

    new_references.last_update_login                 := x_last_update_login;
Line: 145

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE    person_id = x_person_id
      AND      exam_level = x_exam_level
      AND      ((subject_code = x_subject_code) OR (subject_code IS NULL AND x_subject_code IS NULL))
      AND      ((year = x_year) OR (year IS NULL AND x_year IS NULL))
      AND      ((sitting = x_sitting) OR (sitting IS NULL AND x_sitting IS NULL))
      AND      ((awarding_body = x_awarding_body) OR (awarding_body IS NULL AND x_awarding_body IS NULL))
      AND      ( (approved_result = x_approved_result) OR (approved_result IS NULL AND x_approved_result IS NULL) )
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 306

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE    qual_dets_id = x_qual_dets_id;
Line: 342

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE   ((claimed_result = x_grade) AND
               (grading_schema_cd = x_grading_schema_cd) AND
               (version_number = x_version_number))
      OR      ((grading_schema_cd = x_grading_schema_cd) AND
               (predicted_result = x_grade) AND
               (version_number = x_version_number))
      OR      ((approved_result = x_grade) AND
               (grading_schema_cd = x_grading_schema_cd) AND
               (version_number = x_version_number));
Line: 385

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE   ((exam_level = x_award_cd));
Line: 420

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE   ((subject_code = x_field_of_study));
Line: 455

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE   ((awarding_body = x_party_number));
Line: 492

      SELECT   rowid
      FROM     igs_uc_qual_dets
      WHERE   ((person_id = x_person_id));
Line: 533

    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 : 12-FEB-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_qual_dets_id,
      x_person_id,
      x_exam_level,
      x_subject_code,
      x_year,
      x_sitting,
      x_awarding_body,
      x_grading_schema_cd,
      x_version_number,
      x_predicted_result,
      x_approved_result,
      x_claimed_result,
      x_ucas_tariff,
      x_imported_flag,
      x_imported_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 574

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

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

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
              Check_Child_Existance;
Line: 611

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_qual_dets_id                      IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_exam_level                        IN     VARCHAR2,
    x_subject_code                      IN     VARCHAR2,
    x_year                              IN     NUMBER,
    x_sitting                           IN     VARCHAR2,
    x_awarding_body                     IN     VARCHAR2,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_predicted_result                  IN     VARCHAR2,
    x_approved_result                   IN     VARCHAR2,
    x_claimed_result                    IN     VARCHAR2,
    x_ucas_tariff                       IN     NUMBER,
    x_imported_flag                     IN     VARCHAR2,
    x_imported_date                     IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 12-FEB-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_uc_qual_dets
      WHERE    qual_dets_id                      = x_qual_dets_id;
Line: 644

    x_last_update_date           DATE;
Line: 645

    x_last_updated_by            NUMBER;
Line: 646

    x_last_update_login          NUMBER;
Line: 650

    x_last_update_date := SYSDATE;
Line: 652

      x_last_updated_by := 1;
Line: 653

      x_last_update_login := 0;
Line: 655

      x_last_updated_by := fnd_global.user_id;
Line: 656

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

      x_last_update_login := fnd_global.login_id;
Line: 660

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

    SELECT    igs_uc_qual_dets_s.NEXTVAL
    INTO      x_qual_dets_id
    FROM      dual;
Line: 674

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_qual_dets_id                      => x_qual_dets_id,
      x_person_id                         => x_person_id,
      x_exam_level                        => x_exam_level,
      x_subject_code                      => x_subject_code,
      x_year                              => x_year,
      x_sitting                           => x_sitting,
      x_awarding_body                     => x_awarding_body,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_version_number                    => x_version_number,
      x_predicted_result                  => x_predicted_result,
      x_approved_result                   => x_approved_result,
      x_claimed_result                    => x_claimed_result,
      x_ucas_tariff                       => x_ucas_tariff,
      x_imported_flag                     => x_imported_flag,
      x_imported_date                     => x_imported_date,
      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: 701

 INSERT INTO igs_uc_qual_dets (
      qual_dets_id,
      person_id,
      exam_level,
      subject_code,
      year,
      sitting,
      awarding_body,
      grading_schema_cd,
      version_number,
      predicted_result,
      approved_result,
      claimed_result,
      ucas_tariff,
      imported_flag,
      imported_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.qual_dets_id,
      new_references.person_id,
      new_references.exam_level,
      new_references.subject_code,
      new_references.year,
      new_references.sitting,
      new_references.awarding_body,
      new_references.grading_schema_cd,
      new_references.version_number,
      new_references.predicted_result,
      new_references.approved_result,
      new_references.claimed_result,
      new_references.ucas_tariff,
      new_references.imported_flag,
      new_references.imported_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 770

 END insert_row;
Line: 801

      SELECT
        person_id,
        exam_level,
        subject_code,
        year,
        sitting,
        awarding_body,
        grading_schema_cd,
        version_number,
        predicted_result,
        approved_result,
        claimed_result,
        ucas_tariff,
        imported_flag,
        imported_date
      FROM  igs_uc_qual_dets
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 827

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_qual_dets_id                      IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_exam_level                        IN     VARCHAR2,
    x_subject_code                      IN     VARCHAR2,
    x_year                              IN     NUMBER,
    x_sitting                           IN     VARCHAR2,
    x_awarding_body                     IN     VARCHAR2,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_predicted_result                  IN     VARCHAR2,
    x_approved_result                   IN     VARCHAR2,
    x_claimed_result                    IN     VARCHAR2,
    x_ucas_tariff                       IN     NUMBER,
    x_imported_flag                     IN     VARCHAR2,
    x_imported_date                     IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 12-FEB-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: 892

    x_last_updated_by            NUMBER;
Line: 893

    x_last_update_login          NUMBER;
Line: 897

    x_last_update_date := SYSDATE;
Line: 899

      x_last_updated_by := 1;
Line: 900

      x_last_update_login := 0;
Line: 902

      x_last_updated_by := fnd_global.user_id;
Line: 903

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

      x_last_update_login := fnd_global.login_id;
Line: 907

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_qual_dets_id                      => x_qual_dets_id,
      x_person_id                         => x_person_id,
      x_exam_level                        => x_exam_level,
      x_subject_code                      => x_subject_code,
      x_year                              => x_year,
      x_sitting                           => x_sitting,
      x_awarding_body                     => x_awarding_body,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_version_number                    => x_version_number,
      x_predicted_result                  => x_predicted_result,
      x_approved_result                   => x_approved_result,
      x_claimed_result                    => x_claimed_result,
      x_ucas_tariff                       => x_ucas_tariff,
      x_imported_flag                     => x_imported_flag,
      x_imported_date                     => x_imported_date,
      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: 944

 UPDATE igs_uc_qual_dets
      SET
        person_id                         = new_references.person_id,
        exam_level                        = new_references.exam_level,
        subject_code                      = new_references.subject_code,
        year                              = new_references.year,
        sitting                           = new_references.sitting,
        awarding_body                     = new_references.awarding_body,
        grading_schema_cd                 = new_references.grading_schema_cd,
        version_number                    = new_references.version_number,
        predicted_result                  = new_references.predicted_result,
        approved_result                   = new_references.approved_result,
        claimed_result                    = new_references.claimed_result,
        ucas_tariff                       = new_references.ucas_tariff,
        imported_flag                     = new_references.imported_flag,
        imported_date                     = new_references.imported_date,
        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: 988

  END update_row;
Line: 1013

  ||  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_uc_qual_dets
      WHERE    qual_dets_id                      = x_qual_dets_id;
Line: 1031

      insert_row (
        x_rowid,
        x_qual_dets_id,
        x_person_id,
        x_exam_level,
        x_subject_code,
        x_year,
        x_sitting,
        x_awarding_body,
        x_grading_schema_cd,
        x_version_number,
        x_predicted_result,
        x_approved_result,
        x_claimed_result,
        x_ucas_tariff,
        x_imported_flag,
        x_imported_date,
        x_mode
      );
Line: 1054

    update_row (
      x_rowid,
      x_qual_dets_id,
      x_person_id,
      x_exam_level,
      x_subject_code,
      x_year,
      x_sitting,
      x_awarding_body,
      x_grading_schema_cd,
      x_version_number,
      x_predicted_result,
      x_approved_result,
      x_claimed_result,
      x_ucas_tariff,
      x_imported_flag,
      x_imported_date,
      x_mode
    );
Line: 1077

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 12-FEB-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: 1100

 DELETE FROM igs_uc_qual_dets
    WHERE rowid = x_rowid;
Line: 1114

  END delete_row;