DBA Data[Home] [Help]

APPS.IGS_PE_NONIMG_FORM_PKG SQL Statements

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

Line: 52

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_last_session_flag                 IN     VARCHAR2,
    x_adjudicated_flag                  IN     VARCHAR2,
    x_sevis_school_id                   IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-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_pe_nonimg_form
      WHERE    rowid = x_rowid;
Line: 82

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 144

    new_references.last_updated_by                   := x_last_updated_by;
Line: 145

    new_references.last_update_login                 := x_last_update_login;
Line: 150

  PROCEDURE afterrowinsertupdate(p_insert BOOLEAN ,p_update BOOLEAN) AS
  /*************************************************************
  Created By : masehgal.
  Date Created By : 07/Dec/2002
  Purpose :
  Know limitations, enhancements or remarks
  Change History
  Who             When            What

  (reverse chronological order - newest change first)
  ***************************************************************/

     CURSOR per_type(cp_system_type igs_pe_person_types.system_type%TYPE,cp_closed_ind igs_pe_person_types.closed_ind%TYPE)IS
        SELECT person_type_code
        FROM   igs_pe_person_types
        WHERE  system_type = cp_system_type                                        --'NONIMG_STUDENT'
        AND    closed_ind = cp_closed_ind;                                         --'N';
Line: 169

        SELECT typ.rowid,typ.*
        FROM   igs_pe_typ_instances_all typ , igs_pe_person_types per_typ
        WHERE  per_typ.system_type = cp_system_type                               --'NONIMG_STUDENT'
        AND    typ.person_id = new_references.person_id
        AND    typ.person_type_code = per_typ.person_type_code
        AND    typ.end_date IS NULL ;
Line: 185

      IF p_insert = TRUE THEN
         igs_pe_typ_instances_pkg.insert_row
                (
                 x_rowid                        => lv_rowid,
                 x_person_id                    => new_references.person_id,
                 x_course_cd                    => null,
                 x_type_instance_id             => l_type_instance_id,
                 x_person_type_code             => l_per_type.person_type_code,
                 x_cc_version_number            => null,
                 x_funnel_status                => null,
                 x_admission_appl_number        => null,
                 x_nominated_course_cd          => null,
                 x_ncc_version_number           => null,
                 x_sequence_number              => null,
                 x_start_date                   => new_references.form_effective_date,
                 x_end_date                     => null,
                 x_create_method                => 'CREATE_NONIMG_STUDENT',
                 x_ended_by                     => null,
                 x_end_method                   => null,
                 x_org_id                       => null,
                 x_emplmnt_category_code        => null
                 );
Line: 208

      ELSIF p_update = TRUE THEN
         IF     (new_references.form_effective_date <> old_references.form_effective_date )  THEN
                 OPEN  person_type('NONIMG_STUDENT');
Line: 213

                 igs_pe_typ_instances_pkg.update_row
                   (
                   x_rowid                        => l_person_type.rowid,
                   x_person_id                    => l_person_type.person_id,
                   x_course_cd                    => l_person_type.course_cd,
                   x_type_instance_id             => l_person_type.type_instance_id,
                   x_person_type_code             => l_person_type.person_type_code,
                   x_cc_version_number            => l_person_type.cc_version_number,
                   x_funnel_status                => l_person_type.funnel_status,
                   x_admission_appl_number        => l_person_type.admission_appl_number,
                   x_nominated_course_cd          => l_person_type.nominated_course_cd,
                   x_ncc_version_number           => l_person_type.ncc_version_number,
                   x_sequence_number              => l_person_type.sequence_number,
                   x_start_date                   => new_references.form_effective_date,
                   x_end_date                     => l_person_type.end_date,
                   x_create_method                => l_person_type.create_method,
                   x_ended_by                     => l_person_type.ended_by,
                   x_end_method                   => l_person_type.end_method,
                   x_emplmnt_category_code        => l_person_type.emplmnt_category_code
                 );
Line: 237

 END afterrowinsertupdate;
Line: 253

        SELECT rowid
        FROM   igs_pe_typ_instances_all
        WHERE  person_id = cp_person_id
        AND    create_method = cp_create_method      --'CREATE_NONIMG_STUDENT'
        AND    end_method IS NULL ;
Line: 266

         igs_pe_typ_instances_pkg.delete_row ( x_rowid => l_per_inst_rowid.rowid ) ;
Line: 308

        FND_MESSAGE.SET_NAME ('FND','FORM_RECORD_DELETED');
Line: 327

      SELECT   rowid
      FROM     igs_pe_nonimg_form
      WHERE    nonimg_form_id = x_nonimg_form_id
      FOR UPDATE NOWAIT;
Line: 393

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_last_session_flag			IN     VARCHAR2,
    x_adjudicated_flag			IN     VARCHAR2,
    x_sevis_school_id                   IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-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_nonimg_form_id,
      x_person_id,
      x_print_form,
      x_form_effective_date,
      x_form_status,
      x_acad_term_length,
      x_tuition_amt,
      x_living_exp_amt,
      x_personal_funds_amt,
      x_issue_reason,
      x_commuter_ind,
      x_english_reqd,
      x_length_of_study,
      x_prgm_start_date,
      x_prgm_end_date,
      x_primary_major,
      x_education_level,
      x_educ_lvl_remarks,
      x_depdnt_exp_amt,
      x_other_exp_amt,
      x_other_exp_desc,
      x_school_funds_amt,
      x_school_funds_desc,
      x_other_funds_amt,
      x_other_funds_desc,
      x_empl_funds_amt,
      x_remarks,
      x_visa_type,
      x_curr_session_end_date,
      x_next_session_start_date,
      x_transfer_from_school,
      x_other_reason,
      x_last_reprint_date,
      x_reprint_reason,
      x_reprint_remarks,
      x_secondary_major,
      x_minor,
      x_english_reqd_met,
      x_not_reqd_reason,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_last_session_flag,
      x_adjudicated_flag,
      x_sevis_school_id
    );
Line: 464

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

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 488

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_nonimg_form_id                    IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_print_form                        IN     VARCHAR2,
    x_form_effective_date               IN     DATE,
    x_form_status                       IN     VARCHAR2,
    x_acad_term_length                  IN     VARCHAR2,
    x_tuition_amt                       IN     NUMBER,
    x_living_exp_amt                    IN     NUMBER,
    x_personal_funds_amt                IN     NUMBER,
    x_issue_reason                      IN     VARCHAR2,
    x_commuter_ind                      IN     VARCHAR2,
    x_english_reqd                      IN     VARCHAR2,
    x_length_of_study                   IN     VARCHAR2,
    x_prgm_start_date                   IN     DATE,
    x_prgm_end_date                     IN     DATE,
    x_primary_major                     IN     VARCHAR2,
    x_education_level                   IN     VARCHAR2,
    x_educ_lvl_remarks                  IN     VARCHAR2,
    x_depdnt_exp_amt                    IN     NUMBER,
    x_other_exp_amt                     IN     NUMBER,
    x_other_exp_desc                    IN     VARCHAR2,
    x_school_funds_amt                  IN     NUMBER,
    x_school_funds_desc                 IN     VARCHAR2,
    x_other_funds_amt                   IN     NUMBER,
    x_other_funds_desc                  IN     VARCHAR2,
    x_empl_funds_amt                    IN     NUMBER,
    x_remarks                           IN     VARCHAR2,
    x_visa_type                         IN     VARCHAR2,
    x_curr_session_end_date             IN     DATE,
    x_next_session_start_date           IN     DATE,
    x_transfer_from_school              IN     VARCHAR2,
    x_other_reason                      IN     VARCHAR2,
    x_last_reprint_date                 IN     DATE,
    x_reprint_reason                    IN     VARCHAR2,
    x_reprint_remarks                   IN     VARCHAR2,
    x_secondary_major                   IN     VARCHAR2,
    x_minor                             IN     VARCHAR2,
    x_english_reqd_met                  IN     VARCHAR2,
    x_not_reqd_reason                   IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_last_session_flag			IN     VARCHAR2,
    x_adjudicated_flag			IN     VARCHAR2,
    x_sevis_school_id			IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-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)
  */

    x_last_update_date           DATE;
Line: 545

    x_last_updated_by            NUMBER;
Line: 546

    x_last_update_login          NUMBER;
Line: 550

    x_last_update_date := SYSDATE;
Line: 552

      x_last_updated_by := 1;
Line: 553

      x_last_update_login := 0;
Line: 555

      x_last_updated_by := fnd_global.user_id;
Line: 556

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

      x_last_update_login := fnd_global.login_id;
Line: 560

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_nonimg_form_id                    => x_nonimg_form_id,
      x_person_id                         => x_person_id,
      x_print_form                        => x_print_form,
      x_form_effective_date               => x_form_effective_date,
      x_form_status                       => x_form_status,
      x_acad_term_length                  => x_acad_term_length,
      x_tuition_amt                       => x_tuition_amt,
      x_living_exp_amt                    => x_living_exp_amt,
      x_personal_funds_amt                => x_personal_funds_amt,
      x_issue_reason                      => x_issue_reason,
      x_commuter_ind                      => x_commuter_ind,
      x_english_reqd                      => x_english_reqd,
      x_length_of_study                   => x_length_of_study,
      x_prgm_start_date                   => x_prgm_start_date,
      x_prgm_end_date                     => x_prgm_end_date,
      x_primary_major                     => x_primary_major,
      x_education_level                   => x_education_level,
      x_educ_lvl_remarks                  => x_educ_lvl_remarks,
      x_depdnt_exp_amt                    => x_depdnt_exp_amt,
      x_other_exp_amt                     => x_other_exp_amt,
      x_other_exp_desc                    => x_other_exp_desc,
      x_school_funds_amt                  => x_school_funds_amt,
      x_school_funds_desc                 => x_school_funds_desc,
      x_other_funds_amt                   => x_other_funds_amt,
      x_other_funds_desc                  => x_other_funds_desc,
      x_empl_funds_amt                    => x_empl_funds_amt,
      x_remarks                           => x_remarks,
      x_visa_type                         => x_visa_type,
      x_curr_session_end_date             => x_curr_session_end_date,
      x_next_session_start_date           => x_next_session_start_date,
      x_transfer_from_school              => x_transfer_from_school,
      x_other_reason                      => x_other_reason,
      x_last_reprint_date                 => x_last_reprint_date,
      x_reprint_reason                    => x_reprint_reason,
      x_reprint_remarks                   => x_reprint_remarks,
      x_secondary_major                   => x_secondary_major,
      x_minor                             => x_minor,
      x_english_reqd_met                  => x_english_reqd_met,
      x_not_reqd_reason                   => x_not_reqd_reason,
      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,
      x_last_session_flag		  => x_last_session_flag,
      x_adjudicated_flag		  => x_adjudicated_flag,
      x_sevis_school_id			  => x_sevis_school_id
    );
Line: 624

 INSERT INTO igs_pe_nonimg_form (
      nonimg_form_id,
      person_id,
      print_form,
      form_effective_date,
      form_status,
      acad_term_length,
      tuition_amt,
      living_exp_amt,
      personal_funds_amt,
      issue_reason,
      commuter_ind,
      english_reqd,
      length_of_study,
      prgm_start_date,
      prgm_end_date,
      primary_major,
      education_level,
      educ_lvl_remarks,
      depdnt_exp_amt,
      other_exp_amt,
      other_exp_desc,
      school_funds_amt,
      school_funds_desc,
      other_funds_amt,
      other_funds_desc,
      empl_funds_amt,
      remarks,
      visa_type,
      curr_session_end_date,
      next_session_start_date,
      transfer_from_school,
      other_reason,
      last_reprint_date,
      reprint_reason,
      reprint_remarks,
      secondary_major,
      minor,
      english_reqd_met,
      not_reqd_reason,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      last_session_flag,
      adjudicated_flag,
      SEVIS_SCHOOL_IDENTIFIER
    ) VALUES (
      igs_pe_nonimg_form_s.NEXTVAL,
      new_references.person_id,
      new_references.print_form,
      new_references.form_effective_date,
      new_references.form_status,
      new_references.acad_term_length,
      new_references.tuition_amt,
      new_references.living_exp_amt,
      new_references.personal_funds_amt,
      new_references.issue_reason,
      new_references.commuter_ind,
      new_references.english_reqd,
      new_references.length_of_study,
      new_references.prgm_start_date,
      new_references.prgm_end_date,
      new_references.primary_major,
      new_references.education_level,
      new_references.educ_lvl_remarks,
      new_references.depdnt_exp_amt,
      new_references.other_exp_amt,
      new_references.other_exp_desc,
      new_references.school_funds_amt,
      new_references.school_funds_desc,
      new_references.other_funds_amt,
      new_references.other_funds_desc,
      new_references.empl_funds_amt,
      new_references.remarks,
      new_references.visa_type,
      new_references.curr_session_end_date,
      new_references.next_session_start_date,
      new_references.transfer_from_school,
      new_references.other_reason,
      new_references.last_reprint_date,
      new_references.reprint_reason,
      new_references.reprint_remarks,
      new_references.secondary_major,
      new_references.minor,
      new_references.english_reqd_met,
      new_references.not_reqd_reason,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.last_session_flag,
      new_references.adjudicated_flag,
      new_references.SEVIS_SCHOOL_IDENTIFIER
    ) RETURNING ROWID, nonimg_form_id INTO x_rowid, x_nonimg_form_id;
Line: 726

   afterrowinsertupdate(TRUE,FALSE);
Line: 741

 END insert_row;
Line: 799

      SELECT
        person_id,
        print_form,
        form_effective_date,
        form_status,
        acad_term_length,
        tuition_amt,
        living_exp_amt,
        personal_funds_amt,
        issue_reason,
        commuter_ind,
        english_reqd,
        length_of_study,
        prgm_start_date,
        prgm_end_date,
        primary_major,
        education_level,
        educ_lvl_remarks,
        depdnt_exp_amt,
        other_exp_amt,
        other_exp_desc,
        school_funds_amt,
        school_funds_desc,
        other_funds_amt,
        other_funds_desc,
        empl_funds_amt,
        remarks,
	visa_type,
        curr_session_end_date,
        next_session_start_date,
        transfer_from_school,
        other_reason,
        last_reprint_date,
        reprint_reason,
        reprint_remarks,
        secondary_major,
        minor,
        english_reqd_met,
        not_reqd_reason,
	last_session_flag,
	adjudicated_flag,
	SEVIS_SCHOOL_IDENTIFIER
      FROM  igs_pe_nonimg_form
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 852

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_nonimg_form_id                    IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_print_form                        IN     VARCHAR2,
    x_form_effective_date               IN     DATE,
    x_form_status                       IN     VARCHAR2,
    x_acad_term_length                  IN     VARCHAR2,
    x_tuition_amt                       IN     NUMBER,
    x_living_exp_amt                    IN     NUMBER,
    x_personal_funds_amt                IN     NUMBER,
    x_issue_reason                      IN     VARCHAR2,
    x_commuter_ind                      IN     VARCHAR2,
    x_english_reqd                      IN     VARCHAR2,
    x_length_of_study                   IN     VARCHAR2,
    x_prgm_start_date                   IN     DATE,
    x_prgm_end_date                     IN     DATE,
    x_primary_major                     IN     VARCHAR2,
    x_education_level                   IN     VARCHAR2,
    x_educ_lvl_remarks                  IN     VARCHAR2,
    x_depdnt_exp_amt                    IN     NUMBER,
    x_other_exp_amt                     IN     NUMBER,
    x_other_exp_desc                    IN     VARCHAR2,
    x_school_funds_amt                  IN     NUMBER,
    x_school_funds_desc                 IN     VARCHAR2,
    x_other_funds_amt                   IN     NUMBER,
    x_other_funds_desc                  IN     VARCHAR2,
    x_empl_funds_amt                    IN     NUMBER,
    x_remarks                           IN     VARCHAR2,
    x_visa_type                         IN     VARCHAR2,
    x_curr_session_end_date             IN     DATE,
    x_next_session_start_date           IN     DATE,
    x_transfer_from_school              IN     VARCHAR2,
    x_other_reason                      IN     VARCHAR2,
    x_last_reprint_date                 IN     DATE,
    x_reprint_reason                    IN     VARCHAR2,
    x_reprint_remarks                   IN     VARCHAR2,
    x_secondary_major                   IN     VARCHAR2,
    x_minor                             IN     VARCHAR2,
    x_english_reqd_met                  IN     VARCHAR2,
    x_not_reqd_reason                   IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_last_session_flag			IN     VARCHAR2,
    x_adjudicated_flag 			IN     VARCHAR2,
    x_sevis_school_id			IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-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: 971

    x_last_updated_by            NUMBER;
Line: 972

    x_last_update_login          NUMBER;
Line: 976

    x_last_update_date := SYSDATE;
Line: 978

      x_last_updated_by := 1;
Line: 979

      x_last_update_login := 0;
Line: 981

      x_last_updated_by := fnd_global.user_id;
Line: 982

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

      x_last_update_login := fnd_global.login_id;
Line: 986

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_nonimg_form_id                    => x_nonimg_form_id,
      x_person_id                         => x_person_id,
      x_print_form                        => x_print_form,
      x_form_effective_date               => x_form_effective_date,
      x_form_status                       => x_form_status,
      x_acad_term_length                  => x_acad_term_length,
      x_tuition_amt                       => x_tuition_amt,
      x_living_exp_amt                    => x_living_exp_amt,
      x_personal_funds_amt                => x_personal_funds_amt,
      x_issue_reason                      => x_issue_reason,
      x_commuter_ind                      => x_commuter_ind,
      x_english_reqd                      => x_english_reqd,
      x_length_of_study                   => x_length_of_study,
      x_prgm_start_date                   => x_prgm_start_date,
      x_prgm_end_date                     => x_prgm_end_date,
      x_primary_major                     => x_primary_major,
      x_education_level                   => x_education_level,
      x_educ_lvl_remarks                  => x_educ_lvl_remarks,
      x_depdnt_exp_amt                    => x_depdnt_exp_amt,
      x_other_exp_amt                     => x_other_exp_amt,
      x_other_exp_desc                    => x_other_exp_desc,
      x_school_funds_amt                  => x_school_funds_amt,
      x_school_funds_desc                 => x_school_funds_desc,
      x_other_funds_amt                   => x_other_funds_amt,
      x_other_funds_desc                  => x_other_funds_desc,
      x_empl_funds_amt                    => x_empl_funds_amt,
      x_remarks                           => x_remarks,
      x_visa_type                         => x_visa_type,
      x_curr_session_end_date             => x_curr_session_end_date,
      x_next_session_start_date           => x_next_session_start_date,
      x_transfer_from_school              => x_transfer_from_school,
      x_other_reason                      => x_other_reason,
      x_last_reprint_date                 => x_last_reprint_date,
      x_reprint_reason                    => x_reprint_reason,
      x_reprint_remarks                   => x_reprint_remarks,
      x_secondary_major                   => x_secondary_major,
      x_minor                             => x_minor,
      x_english_reqd_met                  => x_english_reqd_met,
      x_not_reqd_reason                   => x_not_reqd_reason,
      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,
      x_last_session_flag		  => x_last_session_flag,
      x_adjudicated_flag		  => x_adjudicated_flag,
      x_sevis_school_id			  => x_sevis_school_id
    );
Line: 1050

 UPDATE igs_pe_nonimg_form
      SET
        person_id                         = new_references.person_id,
        print_form                        = new_references.print_form,
        form_effective_date               = new_references.form_effective_date,
        form_status                       = new_references.form_status,
        acad_term_length                  = new_references.acad_term_length,
        tuition_amt                       = new_references.tuition_amt,
        living_exp_amt                    = new_references.living_exp_amt,
        personal_funds_amt                = new_references.personal_funds_amt,
        issue_reason                      = new_references.issue_reason,
        commuter_ind                      = new_references.commuter_ind,
        english_reqd                      = new_references.english_reqd,
        length_of_study                   = new_references.length_of_study,
        prgm_start_date                   = new_references.prgm_start_date,
        prgm_end_date                     = new_references.prgm_end_date,
        primary_major                     = new_references.primary_major,
        education_level                   = new_references.education_level,
        educ_lvl_remarks                  = new_references.educ_lvl_remarks,
        depdnt_exp_amt                    = new_references.depdnt_exp_amt,
        other_exp_amt                     = new_references.other_exp_amt,
        other_exp_desc                    = new_references.other_exp_desc,
        school_funds_amt                  = new_references.school_funds_amt,
        school_funds_desc                 = new_references.school_funds_desc,
        other_funds_amt                   = new_references.other_funds_amt,
        other_funds_desc                  = new_references.other_funds_desc,
        empl_funds_amt                    = new_references.empl_funds_amt,
        remarks                           = new_references.remarks,
	visa_type                         = new_references.visa_type,
        curr_session_end_date             = new_references.curr_session_end_date,
        next_session_start_date           = new_references.next_session_start_date,
        transfer_from_school              = new_references.transfer_from_school,
        other_reason                      = new_references.other_reason,
        last_reprint_date                 = new_references.last_reprint_date,
        reprint_reason                    = new_references.reprint_reason,
        reprint_remarks                   = new_references.reprint_remarks,
        secondary_major                   = new_references.secondary_major,
        minor                             = new_references.minor,
        english_reqd_met                  = new_references.english_reqd_met,
        not_reqd_reason                   = new_references.not_reqd_reason,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
	last_session_flag		  = x_last_session_flag,
	adjudicated_flag		  = new_references.adjudicated_flag,
	SEVIS_SCHOOL_IDENTIFIER			  = new_references.SEVIS_SCHOOL_IDENTIFIER
      WHERE rowid = x_rowid;
Line: 1109

    afterrowinsertupdate(FALSE,TRUE);
Line: 1124

 END update_row;
Line: 1176

  ||  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_pe_nonimg_form
      WHERE    nonimg_form_id                    = x_nonimg_form_id;
Line: 1194

      insert_row (
        x_rowid,
        x_nonimg_form_id,
        x_person_id,
        x_print_form,
        x_form_effective_date,
        x_form_status,
        x_acad_term_length,
        x_tuition_amt,
        x_living_exp_amt,
        x_personal_funds_amt,
        x_issue_reason,
        x_commuter_ind,
        x_english_reqd,
        x_length_of_study,
        x_prgm_start_date,
        x_prgm_end_date,
        x_primary_major,
        x_education_level,
        x_educ_lvl_remarks,
        x_depdnt_exp_amt,
        x_other_exp_amt,
        x_other_exp_desc,
        x_school_funds_amt,
        x_school_funds_desc,
        x_other_funds_amt,
        x_other_funds_desc,
        x_empl_funds_amt,
        x_remarks,
	x_visa_type,
        x_curr_session_end_date,
        x_next_session_start_date,
        x_transfer_from_school,
        x_other_reason,
        x_last_reprint_date,
        x_reprint_reason,
        x_reprint_remarks,
        x_secondary_major,
        x_minor,
        x_english_reqd_met,
        x_not_reqd_reason,
        x_mode,
	x_last_session_flag,
	x_adjudicated_flag,
	x_sevis_school_id
      );
Line: 1244

    update_row (
      x_rowid,
      x_nonimg_form_id,
      x_person_id,
      x_print_form,
      x_form_effective_date,
      x_form_status,
      x_acad_term_length,
      x_tuition_amt,
      x_living_exp_amt,
      x_personal_funds_amt,
      x_issue_reason,
      x_commuter_ind,
      x_english_reqd,
      x_length_of_study,
      x_prgm_start_date,
      x_prgm_end_date,
      x_primary_major,
      x_education_level,
      x_educ_lvl_remarks,
      x_depdnt_exp_amt,
      x_other_exp_amt,
      x_other_exp_desc,
      x_school_funds_amt,
      x_school_funds_desc,
      x_other_funds_amt,
      x_other_funds_desc,
      x_empl_funds_amt,
      x_remarks,
      x_visa_type,
      x_curr_session_end_date,
      x_next_session_start_date,
      x_transfer_from_school,
      x_other_reason,
      x_last_reprint_date,
      x_reprint_reason,
      x_reprint_remarks,
      x_secondary_major,
      x_minor,
      x_english_reqd_met,
      x_not_reqd_reason,
      x_mode,
      x_last_session_flag,
      x_adjudicated_flag,
      x_sevis_school_id
    );
Line: 1294

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

 DELETE FROM igs_pe_nonimg_form
    WHERE rowid = x_rowid;
Line: 1333

  END delete_row;