DBA Data[Home] [Help]

APPS.IGS_AS_INC_GRD_CPROF_PKG SQL Statements

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

Line: 21

    x_instructor_update_ind             IN     VARCHAR2    DEFAULT NULL,
    x_creation_date                     IN     DATE        DEFAULT NULL,
    x_created_by                        IN     NUMBER      DEFAULT NULL,
    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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_INC_GRD_CPROF
      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: 71

    new_references.instructor_update_ind             := x_instructor_update_ind;
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: 139

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

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

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

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

      SELECT   rowid
      FROM     igs_as_inc_grd_cprof
      WHERE    inc_grd_cprof_id = x_inc_grd_cprof_id
      FOR UPDATE NOWAIT;
Line: 240

      SELECT   rowid
      FROM     igs_as_inc_grd_cprof
      WHERE    version_number = x_version_number
      AND      grading_schema_cd = x_grading_schema_cd
      AND      org_unit_cd = x_org_unit_cd
      AND      incomplete_grade = x_incomplete_grade
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 280

      SELECT   rowid
      FROM     igs_as_inc_grd_cprof
      WHERE   ((default_grade = 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
               (incomplete_grade = x_grade) AND
               (version_number = x_version_number));
Line: 320

      SELECT   rowid
      FROM     igs_as_inc_grd_cprof
      WHERE   ((comp_after_dt_alias = x_dt_alias));
Line: 356

      SELECT   rowid
      FROM     igs_as_inc_grd_cprof
      WHERE   ((grading_schema_cd = x_grading_schema_cd) AND
               (version_number = x_version_number));
Line: 392

    x_instructor_update_ind             IN     VARCHAR2    DEFAULT NULL,
    x_creation_date                     IN     DATE        DEFAULT NULL,
    x_created_by                        IN     NUMBER      DEFAULT NULL,
    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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_inc_grd_cprof_id,
      x_grading_schema_cd,
      x_version_number,
      x_org_unit_cd,
      x_incomplete_grade,
      x_number_unit_time,
      x_type_unit_time,
      x_comp_after_dt_alias,
      x_default_grade,
      x_default_mark,
      x_instructor_update_ind,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 432

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_inc_grd_cprof_id                  IN OUT NOCOPY NUMBER,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_org_unit_cd                       IN     VARCHAR2,
    x_incomplete_grade                  IN     VARCHAR2,
    x_number_unit_time                  IN     NUMBER,
    x_type_unit_time                    IN     VARCHAR2,
    x_comp_after_dt_alias               IN     VARCHAR2,
    x_default_grade                     IN     VARCHAR2,
    x_default_mark                      IN     NUMBER,
    x_instructor_update_ind             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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_as_inc_grd_cprof
      WHERE    inc_grd_cprof_id                  = x_inc_grd_cprof_id;
Line: 495

    x_last_update_date           DATE;
Line: 496

    x_last_updated_by            NUMBER;
Line: 497

    x_last_update_login          NUMBER;
Line: 501

    x_last_update_date := SYSDATE;
Line: 503

      x_last_updated_by := 1;
Line: 504

      x_last_update_login := 0;
Line: 506

      x_last_updated_by := fnd_global.user_id;
Line: 507

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

      x_last_update_login := fnd_global.login_id;
Line: 511

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

    SELECT    igs_as_inc_grd_cprof_s.NEXTVAL
    INTO      x_inc_grd_cprof_id
    FROM      dual;
Line: 525

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_inc_grd_cprof_id                  => x_inc_grd_cprof_id,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_version_number                    => x_version_number,
      x_org_unit_cd                       => x_org_unit_cd,
      x_incomplete_grade                  => x_incomplete_grade,
      x_number_unit_time                  => x_number_unit_time,
      x_type_unit_time                    => x_type_unit_time,
      x_comp_after_dt_alias               => x_comp_after_dt_alias,
      x_default_grade                     => x_default_grade,
      x_default_mark                      => x_default_mark,
      x_instructor_update_ind             => x_instructor_update_ind,
      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: 545

    INSERT INTO igs_as_inc_grd_cprof (
      inc_grd_cprof_id,
      grading_schema_cd,
      version_number,
      org_unit_cd,
      incomplete_grade,
      number_unit_time,
      type_unit_time,
      comp_after_dt_alias,
      default_grade,
      default_mark,
      instructor_update_ind,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.inc_grd_cprof_id,
      new_references.grading_schema_cd,
      new_references.version_number,
      new_references.org_unit_cd,
      new_references.incomplete_grade,
      new_references.number_unit_time,
      new_references.type_unit_time,
      new_references.comp_after_dt_alias,
      new_references.default_grade,
      new_references.default_mark,
      new_references.instructor_update_ind,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 589

  END insert_row;
Line: 604

    x_instructor_update_ind             IN     VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        grading_schema_cd,
        version_number,
        org_unit_cd,
        incomplete_grade,
        number_unit_time,
        type_unit_time,
        comp_after_dt_alias,
        default_grade,
        default_mark,
        instructor_update_ind
      FROM  igs_as_inc_grd_cprof
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 638

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

        AND (tlinfo.instructor_update_ind = x_instructor_update_ind)
       ) THEN
      NULL;
Line: 670

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_inc_grd_cprof_id                  IN     NUMBER,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_org_unit_cd                       IN     VARCHAR2,
    x_incomplete_grade                  IN     VARCHAR2,
    x_number_unit_time                  IN     NUMBER,
    x_type_unit_time                    IN     VARCHAR2,
    x_comp_after_dt_alias               IN     VARCHAR2,
    x_default_grade                     IN     VARCHAR2,
    x_default_mark                      IN     NUMBER,
    x_instructor_update_ind             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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: 695

    x_last_updated_by            NUMBER;
Line: 696

    x_last_update_login          NUMBER;
Line: 700

    x_last_update_date := SYSDATE;
Line: 702

      x_last_updated_by := 1;
Line: 703

      x_last_update_login := 0;
Line: 705

      x_last_updated_by := fnd_global.user_id;
Line: 706

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

      x_last_update_login := fnd_global.login_id;
Line: 710

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_inc_grd_cprof_id                  => x_inc_grd_cprof_id,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_version_number                    => x_version_number,
      x_org_unit_cd                       => x_org_unit_cd,
      x_incomplete_grade                  => x_incomplete_grade,
      x_number_unit_time                  => x_number_unit_time,
      x_type_unit_time                    => x_type_unit_time,
      x_comp_after_dt_alias               => x_comp_after_dt_alias,
      x_default_grade                     => x_default_grade,
      x_default_mark                      => x_default_mark,
      x_instructor_update_ind             => x_instructor_update_ind,
      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: 740

    UPDATE igs_as_inc_grd_cprof
      SET
        grading_schema_cd                 = new_references.grading_schema_cd,
        version_number                    = new_references.version_number,
        org_unit_cd                       = new_references.org_unit_cd,
        incomplete_grade                  = new_references.incomplete_grade,
        number_unit_time                  = new_references.number_unit_time,
        type_unit_time                    = new_references.type_unit_time,
        comp_after_dt_alias               = new_references.comp_after_dt_alias,
        default_grade                     = new_references.default_grade,
        default_mark                      = new_references.default_mark,
        instructor_update_ind             = new_references.instructor_update_ind,
        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: 761

  END update_row;
Line: 776

    x_instructor_update_ind             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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_inc_grd_cprof
      WHERE    inc_grd_cprof_id                  = x_inc_grd_cprof_id;
Line: 800

      insert_row (
        x_rowid,
        x_inc_grd_cprof_id,
        x_grading_schema_cd,
        x_version_number,
        x_org_unit_cd,
        x_incomplete_grade,
        x_number_unit_time,
        x_type_unit_time,
        x_comp_after_dt_alias,
        x_default_grade,
        x_default_mark,
        x_instructor_update_ind,
        x_mode
      );
Line: 819

    update_row (
      x_rowid,
      x_inc_grd_cprof_id,
      x_grading_schema_cd,
      x_version_number,
      x_org_unit_cd,
      x_incomplete_grade,
      x_number_unit_time,
      x_type_unit_time,
      x_comp_after_dt_alias,
      x_default_grade,
      x_default_mark,
      x_instructor_update_ind,
      x_mode
    );
Line: 838

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 25-JUL-2001
  ||  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: 857

    DELETE FROM igs_as_inc_grd_cprof
    WHERE rowid = x_rowid;
Line: 864

  END delete_row;