DBA Data[Home] [Help]

APPS.IGS_AD_HZ_ACAD_HIST_PKG SQL Statements

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

Line: 57

    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 : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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)
  ||  vdixit.in	      23-JULY-2001      Added new column transcript_required
  ||					to the tbh calls

  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_AD_HZ_ACAD_HIST
      WHERE    rowid = x_rowid;
Line: 87

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 151

    new_references.last_updated_by                   := x_last_updated_by;
Line: 152

    new_references.last_update_login                 := x_last_update_login;
Line: 195

         SELECT   rowid
         FROM     hz_education
         WHERE    education_id = new_references.education_id ;
Line: 219

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

      SELECT   rowid
      FROM     igs_ad_hz_acad_hist
      WHERE    hz_acad_hist_id = x_hz_acad_hist_id
      FOR UPDATE NOWAIT;
Line: 278

      SELECT   rowid
      FROM     igs_ad_hz_acad_hist
      WHERE   ((education_id = x_education_id));
Line: 350

    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 : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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)
  ||  vdixit.in	      23-JULY-2001      Added new column transcript_required
  ||					to the tbh calls
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_recalc_total_cp_attempted,
      x_recalc_total_cp_earned,
      x_recalc_total_unit_gp,
      x_recalc_tot_gpa_uts_attempted,
      x_recalc_inst_gpa,
      x_recalc_grading_scale_id,
      x_selfrep_total_cp_attempted,
      x_selfrep_total_cp_earned,
      x_selfrep_total_unit_gp,
      x_selfrep_tot_gpa_uts_attemp,
      x_selfrep_inst_gpa,
      x_selfrep_grading_scale_id,
      x_selfrep_weighted_gpa,
      x_selfrep_rank_in_class,
      x_selfrep_weighed_rank,
      x_selfrep_class_size,
      x_attribute_category,
      x_attribute1,
      x_attribute2,
      x_attribute3,
      x_attribute4,
      x_attribute5,
      x_attribute6,
      x_attribute7,
      x_attribute8,
      x_attribute9,
      x_attribute10,
      x_attribute11,
      x_attribute12,
      x_attribute13,
      x_attribute14,
      x_attribute15,
      x_attribute16,
      x_attribute17,
      x_attribute18,
      x_attribute19,
      x_attribute20,
      x_hz_acad_hist_id,
      x_education_id,
      x_current_inst,
      x_degree_attempted,
      x_comments,
      x_planned_completion_date,
      x_transcript_required,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 422

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

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

    ELSIF (p_action = 'DELETE') THEN
    NULL;
Line: 442

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_recalc_total_cp_attempted         IN     NUMBER,
    x_recalc_total_cp_earned            IN     NUMBER,
    x_recalc_total_unit_gp              IN     NUMBER,
    x_recalc_tot_gpa_uts_attempted      IN     NUMBER,
    x_recalc_inst_gpa                   IN     VARCHAR2,
    x_recalc_grading_scale_id           IN     NUMBER,
    x_selfrep_total_cp_attempted        IN     NUMBER,
    x_selfrep_total_cp_earned           IN     NUMBER,
    x_selfrep_total_unit_gp             IN     NUMBER,
    x_selfrep_tot_gpa_uts_attemp        IN     NUMBER,
    x_selfrep_inst_gpa                  IN     VARCHAR2,
    x_selfrep_grading_scale_id          IN     NUMBER,
    x_selfrep_weighted_gpa              IN     VARCHAR2,
    x_selfrep_rank_in_class             IN     NUMBER,
    x_selfrep_weighed_rank              IN     VARCHAR2,
    x_selfrep_class_size                IN     NUMBER DEFAULT NULL,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_hz_acad_hist_id                   IN OUT NOCOPY NUMBER,
    x_education_id                      IN     NUMBER,
    x_current_inst                      IN     VARCHAR2,
    x_degree_attempted                  IN     VARCHAR2 ,
    x_program_type_attempted            IN     VARCHAR2 ,
    x_comments                          IN     VARCHAR2,
    x_planned_completion_date           IN     DATE,
    x_transcript_required               IN     VARCHAR2 DEFAULT NULL,
    x_mode                              IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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)
  ||  vdixit.in	      23-JULY-2001      Added new column transcript_required
  ||					to the tbh calls
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_hz_acad_hist
      WHERE    hz_acad_hist_id	= x_hz_acad_hist_id;
Line: 523

    x_last_update_date           DATE;
Line: 524

    x_last_updated_by            NUMBER;
Line: 525

    x_last_update_login          NUMBER;
Line: 529

    x_program_update_date        DATE;
Line: 535

    x_last_update_date := SYSDATE;
Line: 537

      x_last_updated_by := 1;
Line: 538

      x_last_update_login := 0;
Line: 540

      x_last_updated_by := fnd_global.user_id;
Line: 541

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

      x_last_update_login := fnd_global.login_id;
Line: 545

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

        x_program_update_date:=NULL;
Line: 557

        x_program_update_date:=SYSDATE;
Line: 567

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_recalc_total_cp_attempted         => x_recalc_total_cp_attempted,
      x_recalc_total_cp_earned            => x_recalc_total_cp_earned,
      x_recalc_total_unit_gp              => x_recalc_total_unit_gp,
      x_recalc_tot_gpa_uts_attempted      => x_recalc_tot_gpa_uts_attempted,
      x_recalc_inst_gpa                   => x_recalc_inst_gpa,
      x_recalc_grading_scale_id           => x_recalc_grading_scale_id,
      x_selfrep_total_cp_attempted        => x_selfrep_total_cp_attempted,
      x_selfrep_total_cp_earned           => x_selfrep_total_cp_earned,
      x_selfrep_total_unit_gp             => x_selfrep_total_unit_gp,
      x_selfrep_tot_gpa_uts_attemp        => x_selfrep_tot_gpa_uts_attemp,
      x_selfrep_inst_gpa                  => x_selfrep_inst_gpa,
      x_selfrep_grading_scale_id          => x_selfrep_grading_scale_id,
      x_selfrep_weighted_gpa              => x_selfrep_weighted_gpa,
      x_selfrep_rank_in_class             => x_selfrep_rank_in_class,
      x_selfrep_weighed_rank              => x_selfrep_weighed_rank,
      x_selfrep_class_size                => x_selfrep_class_size,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      x_hz_acad_hist_id                   => x_hz_acad_hist_id,
      x_education_id                      => x_education_id,
      x_current_inst                      => x_current_inst,
      x_degree_attempted            => x_degree_attempted,
      x_comments                          => x_comments,
      x_planned_completion_date           => x_planned_completion_date,
      x_transcript_required               => x_transcript_required,
      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: 624

 INSERT INTO igs_ad_hz_acad_hist (
      recalc_total_cp_attempted,
      recalc_total_cp_earned,
      recalc_total_unit_gp,
      recalc_tot_gpa_uts_attempted,
      recalc_inst_gpa,
      recalc_grading_scale_id,
      selfrep_total_cp_attempted,
      selfrep_total_cp_earned,
      selfrep_total_unit_gp,
      selfrep_tot_gpa_uts_attemp,
      selfrep_inst_gpa,
      selfrep_grading_scale_id,
      selfrep_weighted_gpa,
      selfrep_rank_in_class,
      selfrep_weighed_rank,
      selfrep_class_size,
      attribute_category,
      attribute1,
      attribute2,
      attribute3,
      attribute4,
      attribute5,
      attribute6,
      attribute7,
      attribute8,
      attribute9,
      attribute10,
      attribute11,
      attribute12,
      attribute13,
      attribute14,
      attribute15,
      attribute16,
      attribute17,
      attribute18,
      attribute19,
      attribute20,
      hz_acad_hist_id,
      education_id,
      current_inst,
      degree_attempted,
      comments,
      planned_completion_date,
      transcript_required,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_application_id,
      program_update_date,
      program_id
    ) VALUES (
      new_references.recalc_total_cp_attempted,
      new_references.recalc_total_cp_earned,
      new_references.recalc_total_unit_gp,
      new_references.recalc_tot_gpa_uts_attempted,
      new_references.recalc_inst_gpa,
      new_references.recalc_grading_scale_id,
      new_references.selfrep_total_cp_attempted,
      new_references.selfrep_total_cp_earned,
      new_references.selfrep_total_unit_gp,
      new_references.selfrep_tot_gpa_uts_attemp,
      new_references.selfrep_inst_gpa,
      new_references.selfrep_grading_scale_id,
      new_references.selfrep_weighted_gpa,
      new_references.selfrep_rank_in_class,
      new_references.selfrep_weighed_rank,
      new_references.selfrep_class_size,
      new_references.attribute_category,
      new_references.attribute1,
      new_references.attribute2,
      new_references.attribute3,
      new_references.attribute4,
      new_references.attribute5,
      new_references.attribute6,
      new_references.attribute7,
      new_references.attribute8,
      new_references.attribute9,
      new_references.attribute10,
      new_references.attribute11,
      new_references.attribute12,
      new_references.attribute13,
      new_references.attribute14,
      new_references.attribute15,
      new_references.attribute16,
      new_references.attribute17,
      new_references.attribute18,
      new_references.attribute19,
      new_references.attribute20,
      IGS_AD_HZ_ACAD_HIST_S.NEXTVAL,
      new_references.education_id,
      new_references.current_inst,
      new_references.degree_attempted,
      new_references.comments,
      new_references.planned_completion_date,
      new_references.transcript_required,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_request_id,
      x_program_application_id,
      x_program_update_date,
      x_program_id
    )RETURNING HZ_ACAD_HIST_ID INTO X_HZ_ACAD_HIST_ID;
Line: 759

 END insert_row;
Line: 822

      SELECT
        recalc_total_cp_attempted,
        recalc_total_cp_earned,
        recalc_total_unit_gp,
        recalc_tot_gpa_uts_attempted,
        recalc_inst_gpa,
        recalc_grading_scale_id,
        selfrep_total_cp_attempted,
        selfrep_total_cp_earned,
        selfrep_total_unit_gp,
        selfrep_tot_gpa_uts_attemp,
        selfrep_inst_gpa,
        selfrep_grading_scale_id,
        selfrep_weighted_gpa,
        selfrep_rank_in_class,
        selfrep_weighed_rank,
        selfrep_class_size,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20,
        hz_acad_hist_id,
        education_id,
        current_inst,
        degree_attempted,
        comments,
        planned_completion_date,
        transcript_required
      FROM  igs_ad_hz_acad_hist
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 878

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_recalc_total_cp_attempted         IN     NUMBER,
    x_recalc_total_cp_earned            IN     NUMBER,
    x_recalc_total_unit_gp              IN     NUMBER,
    x_recalc_tot_gpa_uts_attempted      IN     NUMBER,
    x_recalc_inst_gpa                   IN     VARCHAR2,
    x_recalc_grading_scale_id           IN     NUMBER,
    x_selfrep_total_cp_attempted        IN     NUMBER,
    x_selfrep_total_cp_earned           IN     NUMBER,
    x_selfrep_total_unit_gp             IN     NUMBER,
    x_selfrep_tot_gpa_uts_attemp        IN     NUMBER,
    x_selfrep_inst_gpa                  IN     VARCHAR2,
    x_selfrep_grading_scale_id          IN     NUMBER,
    x_selfrep_weighted_gpa              IN     VARCHAR2,
    x_selfrep_rank_in_class             IN     NUMBER,
    x_selfrep_weighed_rank              IN     VARCHAR2,
    x_selfrep_class_size                IN     NUMBER DEFAULT NULL,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_hz_acad_hist_id                   IN     NUMBER,
    x_education_id                      IN     NUMBER,
    x_current_inst                      IN     VARCHAR2,
    x_degree_attempted            IN     VARCHAR2,
    x_program_type_attempted            IN     VARCHAR2 ,
    x_comments                          IN     VARCHAR2,
    x_planned_completion_date           IN     DATE,
    x_transcript_required               IN     VARCHAR2 DEFAULT NULL,
    x_mode                              IN  VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-AUG-2000
  ||  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)
  ||  vdixit.in	      23-JULY-2001      Added new column transcript_required
  ||					to the tbh calls
  */
    x_last_update_date           DATE ;
Line: 1005

    x_last_updated_by            NUMBER;
Line: 1006

    x_last_update_login          NUMBER;
Line: 1010

    x_program_update_date        DATE;
Line: 1016

    x_last_update_date := SYSDATE;
Line: 1018

      x_last_updated_by := 1;
Line: 1019

      x_last_update_login := 0;
Line: 1021

      x_last_updated_by := fnd_global.user_id;
Line: 1022

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

      x_last_update_login := fnd_global.login_id;
Line: 1026

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

        x_program_update_date:=NULL;
Line: 1038

        x_program_update_date:=SYSDATE;
Line: 1047

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_recalc_total_cp_attempted         => x_recalc_total_cp_attempted,
      x_recalc_total_cp_earned            => x_recalc_total_cp_earned,
      x_recalc_total_unit_gp              => x_recalc_total_unit_gp,
      x_recalc_tot_gpa_uts_attempted      => x_recalc_tot_gpa_uts_attempted,
      x_recalc_inst_gpa                   => x_recalc_inst_gpa,
      x_recalc_grading_scale_id           => x_recalc_grading_scale_id,
      x_selfrep_total_cp_attempted        => x_selfrep_total_cp_attempted,
      x_selfrep_total_cp_earned           => x_selfrep_total_cp_earned,
      x_selfrep_total_unit_gp             => x_selfrep_total_unit_gp,
      x_selfrep_tot_gpa_uts_attemp        => x_selfrep_tot_gpa_uts_attemp,
      x_selfrep_inst_gpa                  => x_selfrep_inst_gpa,
      x_selfrep_grading_scale_id          => x_selfrep_grading_scale_id,
      x_selfrep_weighted_gpa              => x_selfrep_weighted_gpa,
      x_selfrep_rank_in_class             => x_selfrep_rank_in_class,
      x_selfrep_weighed_rank              => x_selfrep_weighed_rank,
      x_selfrep_class_size                => x_selfrep_class_size,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      x_hz_acad_hist_id                   => x_hz_acad_hist_id,
      x_education_id                      => x_education_id,
      x_current_inst                      => x_current_inst,
      x_degree_attempted            => x_degree_attempted,
      x_comments                          => x_comments,
      x_planned_completion_date           => x_planned_completion_date,
      x_transcript_required               => x_transcript_required,
      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: 1103

 UPDATE igs_ad_hz_acad_hist
      SET
        recalc_total_cp_attempted         = new_references.recalc_total_cp_attempted,
        recalc_total_cp_earned            = new_references.recalc_total_cp_earned,
        recalc_total_unit_gp              = new_references.recalc_total_unit_gp,
        recalc_tot_gpa_uts_attempted      = new_references.recalc_tot_gpa_uts_attempted,
        recalc_inst_gpa                   = new_references.recalc_inst_gpa,
        recalc_grading_scale_id           = new_references.recalc_grading_scale_id,
        selfrep_total_cp_attempted        = new_references.selfrep_total_cp_attempted,
        selfrep_total_cp_earned           = new_references.selfrep_total_cp_earned,
        selfrep_total_unit_gp             = new_references.selfrep_total_unit_gp,
        selfrep_tot_gpa_uts_attemp        = new_references.selfrep_tot_gpa_uts_attemp,
        selfrep_inst_gpa                  = new_references.selfrep_inst_gpa,
        selfrep_grading_scale_id          = new_references.selfrep_grading_scale_id,
        selfrep_weighted_gpa              = new_references.selfrep_weighted_gpa,
        selfrep_rank_in_class             = new_references.selfrep_rank_in_class,
        selfrep_weighed_rank              = new_references.selfrep_weighed_rank,
        selfrep_class_size                = new_references.selfrep_class_size,
        attribute_category                = new_references.attribute_category,
        attribute1                        = new_references.attribute1,
        attribute2                        = new_references.attribute2,
        attribute3                        = new_references.attribute3,
        attribute4                        = new_references.attribute4,
        attribute5                        = new_references.attribute5,
        attribute6                        = new_references.attribute6,
        attribute7                        = new_references.attribute7,
        attribute8                        = new_references.attribute8,
        attribute9                        = new_references.attribute9,
        attribute10                       = new_references.attribute10,
        attribute11                       = new_references.attribute11,
        attribute12                       = new_references.attribute12,
        attribute13                       = new_references.attribute13,
        attribute14                       = new_references.attribute14,
        attribute15                       = new_references.attribute15,
        attribute16                       = new_references.attribute16,
        attribute17                       = new_references.attribute17,
        attribute18                       = new_references.attribute18,
        attribute19                       = new_references.attribute19,
        attribute20                       = new_references.attribute20,
        hz_acad_hist_id                   = new_references.hz_acad_hist_id,
        education_id                      = new_references.education_id,
        current_inst                      = new_references.current_inst,
        degree_attempted            = new_references.degree_attempted,
        comments                          = new_references.comments,
        planned_completion_date           = new_references.planned_completion_date,
        transcript_required               = new_references.transcript_required,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        request_id                        = x_request_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date,
        program_id                        = x_program_id
      WHERE rowid = x_rowid;
Line: 1182

 END update_row;
Line: 1237

  ||  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)
  ||  vdixit.in	      23-JULY-2001      Added new column transcript_required
  ||					to the tbh calls
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_ad_hz_acad_hist
      WHERE    hz_acad_hist_id	= x_hz_acad_hist_id;
Line: 1259

      insert_row (
        x_rowid =>                           x_rowid,
        x_recalc_total_cp_attempted =>       x_recalc_total_cp_attempted,
        x_recalc_total_cp_earned =>          x_recalc_total_cp_earned,
        x_recalc_total_unit_gp =>            x_recalc_total_unit_gp,
        x_recalc_tot_gpa_uts_attempted =>    x_recalc_tot_gpa_uts_attempted,
        x_recalc_inst_gpa =>                 x_recalc_inst_gpa,
        x_recalc_grading_scale_id =>         x_recalc_grading_scale_id,
        x_selfrep_total_cp_attempted =>      x_selfrep_total_cp_attempted,
        x_selfrep_total_cp_earned =>         x_selfrep_total_cp_earned,
        x_selfrep_total_unit_gp =>           x_selfrep_total_unit_gp,
        x_selfrep_tot_gpa_uts_attemp =>      x_selfrep_tot_gpa_uts_attemp,
        x_selfrep_inst_gpa =>                x_selfrep_inst_gpa,
        x_selfrep_grading_scale_id =>        x_selfrep_grading_scale_id,
        x_selfrep_weighted_gpa =>            x_selfrep_weighted_gpa,
        x_selfrep_rank_in_class =>           x_selfrep_rank_in_class,
        x_selfrep_weighed_rank =>            x_selfrep_weighed_rank,
        x_selfrep_class_size =>              x_selfrep_class_size,
        x_attribute_category =>              x_attribute_category,
        x_attribute1 =>                      x_attribute1,
        x_attribute2 =>                      x_attribute2,
        x_attribute3 =>                      x_attribute3,
        x_attribute4 =>                      x_attribute4,
        x_attribute5 =>                      x_attribute5,
        x_attribute6 =>                      x_attribute6,
        x_attribute7 =>                      x_attribute7,
        x_attribute8 =>                      x_attribute8,
        x_attribute9 =>                      x_attribute9,
        x_attribute10 =>                     x_attribute10,
        x_attribute11 =>                     x_attribute11,
        x_attribute12 =>                     x_attribute12,
        x_attribute13 =>                     x_attribute13,
        x_attribute14 =>                     x_attribute14,
        x_attribute15 =>                     x_attribute15,
        x_attribute16 =>                     x_attribute16,
        x_attribute17 =>                     x_attribute17,
        x_attribute18 =>                     x_attribute18,
        x_attribute19 =>                     x_attribute19,
        x_attribute20 =>                     x_attribute20,
        x_hz_acad_hist_id =>                 x_hz_acad_hist_id,
        x_education_id =>                    x_education_id,
        x_current_inst =>                    x_current_inst,
        x_degree_attempted =>                x_degree_attempted,
        x_comments =>                        x_comments,
        x_planned_completion_date =>         x_planned_completion_date,
        x_transcript_required =>             x_transcript_required,
        x_mode              =>               l_mode
      );
Line: 1311

    update_row (
        x_rowid =>                           x_rowid,
        x_recalc_total_cp_attempted =>       x_recalc_total_cp_attempted,
        x_recalc_total_cp_earned =>          x_recalc_total_cp_earned,
        x_recalc_total_unit_gp =>            x_recalc_total_unit_gp,
        x_recalc_tot_gpa_uts_attempted =>    x_recalc_tot_gpa_uts_attempted,
        x_recalc_inst_gpa =>                 x_recalc_inst_gpa,
        x_recalc_grading_scale_id =>         x_recalc_grading_scale_id,
        x_selfrep_total_cp_attempted =>      x_selfrep_total_cp_attempted,
        x_selfrep_total_cp_earned =>         x_selfrep_total_cp_earned,
        x_selfrep_total_unit_gp =>           x_selfrep_total_unit_gp,
        x_selfrep_tot_gpa_uts_attemp =>      x_selfrep_tot_gpa_uts_attemp,
        x_selfrep_inst_gpa =>                x_selfrep_inst_gpa,
        x_selfrep_grading_scale_id =>        x_selfrep_grading_scale_id,
        x_selfrep_weighted_gpa =>            x_selfrep_weighted_gpa,
        x_selfrep_rank_in_class =>           x_selfrep_rank_in_class,
        x_selfrep_weighed_rank =>            x_selfrep_weighed_rank,
        x_selfrep_class_size =>              x_selfrep_class_size,
        x_attribute_category =>              x_attribute_category,
        x_attribute1 =>                      x_attribute1,
        x_attribute2 =>                      x_attribute2,
        x_attribute3 =>                      x_attribute3,
        x_attribute4 =>                      x_attribute4,
        x_attribute5 =>                      x_attribute5,
        x_attribute6 =>                      x_attribute6,
        x_attribute7 =>                      x_attribute7,
        x_attribute8 =>                      x_attribute8,
        x_attribute9 =>                      x_attribute9,
        x_attribute10 =>                     x_attribute10,
        x_attribute11 =>                     x_attribute11,
        x_attribute12 =>                     x_attribute12,
        x_attribute13 =>                     x_attribute13,
        x_attribute14 =>                     x_attribute14,
        x_attribute15 =>                     x_attribute15,
        x_attribute16 =>                     x_attribute16,
        x_attribute17 =>                     x_attribute17,
        x_attribute18 =>                     x_attribute18,
        x_attribute19 =>                     x_attribute19,
        x_attribute20 =>                     x_attribute20,
        x_hz_acad_hist_id =>                 x_hz_acad_hist_id,
        x_education_id =>                    x_education_id,
        x_current_inst =>                    x_current_inst,
        x_degree_attempted =>                x_degree_attempted,
        x_comments =>                        x_comments,
        x_planned_completion_date =>         x_planned_completion_date,
        x_transcript_required =>             x_transcript_required,
        x_mode              =>               l_mode
    );
Line: 1363

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

 DELETE FROM igs_ad_hz_acad_hist
    WHERE rowid = x_rowid;
Line: 1400

  END delete_row;