DBA Data[Home] [Help]

APPS.IGS_AS_STU_TRN_CMTS_PKG SQL Statements

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

Line: 25

    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 : 22-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_as_stu_trn_cmts
      WHERE    rowid = x_rowid;
Line: 52

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 84

    new_references.last_updated_by                   := x_last_updated_by;
Line: 85

    new_references.last_update_login                 := x_last_update_login;
Line: 144

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

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

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

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

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

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

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE    comment_id = x_comment_id
      FOR UPDATE NOWAIT;
Line: 270

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE    comment_type_code = x_comment_type_code
      AND      person_id = x_person_id
      AND      ((course_cd = x_course_cd) OR (course_cd IS NULL AND x_course_cd IS NULL))
      AND      ((course_type = x_course_type) OR (course_type IS NULL AND x_course_type IS NULL))
      AND      ((award_cd = x_award_cd) OR (award_cd IS NULL AND x_award_cd IS NULL))
      AND      ((load_cal_type = x_load_cal_type) OR (load_cal_type IS NULL AND x_load_cal_type IS NULL))
      AND      ((load_ci_sequence_number = x_load_ci_sequence_number) OR (load_ci_sequence_number IS NULL AND x_load_ci_sequence_number IS NULL))
      AND      ((unit_set_cd = x_unit_set_cd) OR (unit_set_cd IS NULL AND x_unit_set_cd IS NULL))
      AND      ((us_version_number = x_us_version_number) OR (us_version_number IS NULL AND x_us_version_number IS NULL))
      AND      ((uoo_id = x_uoo_id) OR (uoo_id IS NULL AND x_uoo_id IS NULL))
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 315

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((load_cal_type = x_cal_type) AND
               (load_ci_sequence_number = x_sequence_number));
Line: 352

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((unit_set_cd = x_unit_set_cd) AND
               (us_version_number = x_version_number));
Line: 388

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((award_cd = x_award_cd));
Line: 423

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((course_type = x_course_type));
Line: 458

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((uoo_id = x_uoo_id));
Line: 494

      SELECT   rowid
      FROM     igs_as_stu_trn_cmts
      WHERE   ((course_cd = x_course_cd) AND
               (person_id = x_person_id));
Line: 534

    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 : 22-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_comment_id,
      x_comment_type_code,
      x_comment_txt,
      x_person_id,
      x_course_cd,
      x_course_type,
      x_award_cd,
      x_load_cal_type,
      x_load_ci_sequence_number,
      x_unit_set_cd,
      x_us_version_number,
      x_uoo_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 572

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

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 603

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_comment_id                        IN OUT NOCOPY NUMBER,
    x_comment_type_code                 IN     VARCHAR2,
    x_comment_txt                       IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_course_type                       IN     VARCHAR2,
    x_award_cd                          IN     VARCHAR2,
    x_load_cal_type                     IN     VARCHAR2,
    x_load_ci_sequence_number           IN     NUMBER,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_uoo_id                            IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 22-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: 637

    x_last_updated_by            NUMBER;
Line: 638

    x_last_update_login          NUMBER;
Line: 642

    x_last_update_date := SYSDATE;
Line: 644

      x_last_updated_by := 1;
Line: 645

      x_last_update_login := 0;
Line: 647

      x_last_updated_by := fnd_global.user_id;
Line: 648

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

      x_last_update_login := fnd_global.login_id;
Line: 652

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_STU_TRN_CMTS_PKG.INSERT_ROW');
Line: 665

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_comment_id                        => x_comment_id,
      x_comment_type_code                 => x_comment_type_code,
      x_comment_txt                       => x_comment_txt,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_course_type                       => x_course_type,
      x_award_cd                          => x_award_cd,
      x_load_cal_type                     => x_load_cal_type,
      x_load_ci_sequence_number           => x_load_ci_sequence_number,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_uoo_id                            => x_uoo_id,
      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: 686

    INSERT INTO igs_as_stu_trn_cmts (
      comment_id,
      comment_type_code,
      comment_txt,
      person_id,
      course_cd,
      course_type,
      award_cd,
      load_cal_type,
      load_ci_sequence_number,
      unit_set_cd,
      us_version_number,
      uoo_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_as_stu_trns_cmts_s.NEXTVAL,
      new_references.comment_type_code,
      new_references.comment_txt,
      new_references.person_id,
      new_references.course_cd,
      new_references.course_type,
      new_references.award_cd,
      new_references.load_cal_type,
      new_references.load_ci_sequence_number,
      new_references.unit_set_cd,
      new_references.us_version_number,
      new_references.uoo_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, comment_id INTO x_rowid, x_comment_id;
Line: 726

  END insert_row;
Line: 754

      SELECT
        comment_type_code,
        comment_txt,
        person_id,
        course_cd,
        course_type,
        award_cd,
        load_cal_type,
        load_ci_sequence_number,
        unit_set_cd,
        us_version_number,
        uoo_id
      FROM  igs_as_stu_trn_cmts
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 777

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_comment_id                        IN     NUMBER,
    x_comment_type_code                 IN     VARCHAR2,
    x_comment_txt                       IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_course_type                       IN     VARCHAR2,
    x_award_cd                          IN     VARCHAR2,
    x_load_cal_type                     IN     VARCHAR2,
    x_load_ci_sequence_number           IN     NUMBER,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_uoo_id                            IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 22-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: 836

    x_last_updated_by            NUMBER;
Line: 837

    x_last_update_login          NUMBER;
Line: 841

    x_last_update_date := SYSDATE;
Line: 843

      x_last_updated_by := 1;
Line: 844

      x_last_update_login := 0;
Line: 846

      x_last_updated_by := fnd_global.user_id;
Line: 847

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

      x_last_update_login := fnd_global.login_id;
Line: 851

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_STU_TRN_CMTS_PKG.UPDATE_ROW');
Line: 862

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_comment_id                        => x_comment_id,
      x_comment_type_code                 => x_comment_type_code,
      x_comment_txt                       => x_comment_txt,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_course_type                       => x_course_type,
      x_award_cd                          => x_award_cd,
      x_load_cal_type                     => x_load_cal_type,
      x_load_ci_sequence_number           => x_load_ci_sequence_number,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_uoo_id                            => x_uoo_id,
      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: 883

    UPDATE igs_as_stu_trn_cmts
      SET
        comment_type_code                 = new_references.comment_type_code,
        comment_txt                       = new_references.comment_txt,
        person_id                         = new_references.person_id,
        course_cd                         = new_references.course_cd,
        course_type                       = new_references.course_type,
        award_cd                          = new_references.award_cd,
        load_cal_type                     = new_references.load_cal_type,
        load_ci_sequence_number           = new_references.load_ci_sequence_number,
        unit_set_cd                       = new_references.unit_set_cd,
        us_version_number                 = new_references.us_version_number,
        uoo_id                            = new_references.uoo_id,
        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: 907

  END update_row;
Line: 929

  ||  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_as_stu_trn_cmts
      WHERE    comment_id                        = x_comment_id;
Line: 947

      insert_row (
        x_rowid,
        x_comment_id,
        x_comment_type_code,
        x_comment_txt,
        x_person_id,
        x_course_cd,
        x_course_type,
        x_award_cd,
        x_load_cal_type,
        x_load_ci_sequence_number,
        x_unit_set_cd,
        x_us_version_number,
        x_uoo_id,
        x_mode
      );
Line: 967

    update_row (
      x_rowid,
      x_comment_id,
      x_comment_type_code,
      x_comment_txt,
      x_person_id,
      x_course_cd,
      x_course_type,
      x_award_cd,
      x_load_cal_type,
      x_load_ci_sequence_number,
      x_unit_set_cd,
      x_us_version_number,
      x_uoo_id,
      x_mode
    );
Line: 987

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

    DELETE FROM igs_as_stu_trn_cmts
    WHERE rowid = x_rowid;
Line: 1015

  END delete_row;