DBA Data[Home] [Help]

APPS.IGF_SL_ALT_BORW_PKG SQL Statements

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

Line: 31

    x_last_update_date                  IN     DATE     ,
    x_last_updated_by                   IN     NUMBER   ,
    x_last_update_login                 IN     NUMBER    ,
    x_other_loan_amt                    IN     NUMBER,
    x_cs1_lname                         IN     VARCHAR2,
    x_cs1_fname                         IN     VARCHAR2,
    x_cs1_mi_txt                        IN     VARCHAR2,
    x_cs1_ssn_txt                       IN     VARCHAR2,
    x_cs1_citizenship_status            IN     VARCHAR2,
    x_cs1_address_line_1_txt            IN     VARCHAR2,
    x_cs1_address_line_2_txt            IN     VARCHAR2,
    x_cs1_city_txt                      IN     VARCHAR2,
    x_cs1_state_txt                     IN     VARCHAR2,
    x_cs1_zip_txt                       IN     VARCHAR2,
    x_cs1_zip_suffix_txt                IN     VARCHAR2,
    x_cs1_telephone_number_txt          IN     VARCHAR2,
    x_cs1_signature_code_txt            IN     VARCHAR2,
    x_cs2_lname                         IN     VARCHAR2,
    x_cs2_fname                         IN     VARCHAR2,
    x_cs2_mi_txt                        IN     VARCHAR2,
    x_cs2_ssn_txt                       IN     VARCHAR2,
    x_cs2_citizenship_status            IN     VARCHAR2,
    x_cs2_address_line_1_txt            IN     VARCHAR2,
    x_cs2_address_line_2_txt            IN     VARCHAR2,
    x_cs2_city_txt                      IN     VARCHAR2,
    x_cs2_state_txt                     IN     VARCHAR2,
    x_cs2_zip_txt                       IN     VARCHAR2,
    x_cs2_zip_suffix_txt                IN     VARCHAR2,
    x_cs2_telephone_number_txt          IN     VARCHAR2,
    x_cs2_signature_code_txt            IN     VARCHAR2,
    x_cs1_credit_auth_code_txt          IN     VARCHAR2,
    x_cs1_birth_date                    IN     Date    ,
    x_cs1_drv_license_num_txt           IN     VARCHAR2,
    x_cs1_drv_license_state_txt         IN     VARCHAR2,
    x_cs1_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs1_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs1_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs1_gross_annual_sal_num          IN     NUMBER  ,
    x_cs1_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs1_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs1_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs1_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs1_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs1_other_income_amt              IN     NUMBER  ,
    x_cs1_rel_to_student_flag           IN     VARCHAR2,
    x_cs1_suffix_txt                    IN     VARCHAR2,
    x_cs1_years_at_address_txt          IN     NUMBER  ,
    x_cs2_credit_auth_code_txt          IN     VARCHAR2,
    x_cs2_birth_date                    IN     Date    ,
    x_cs2_drv_license_num_txt           IN     VARCHAR2,
    x_cs2_drv_license_state_txt         IN     VARCHAR2,
    x_cs2_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs2_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs2_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs2_gross_annual_sal_num          IN     NUMBER  ,
    x_cs2_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs2_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs2_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs2_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs2_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs2_other_income_amt              IN     NUMBER  ,
    x_cs2_rel_to_student_flag           IN     VARCHAR2,
    x_cs2_suffix_txt                    IN     VARCHAR2,
    x_cs2_years_at_address_txt          IN     NUMBER
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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   igf_sl_alt_borw_all
       WHERE  rowid = x_rowid;
Line: 119

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 157

    new_references.last_updated_by                   := x_last_updated_by;
Line: 158

    new_references.last_update_login                 := x_last_update_login;
Line: 241

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

       SELECT rowid
       FROM   igf_sl_alt_borw_all
       WHERE  albw_id = x_albw_id
       FOR UPDATE NOWAIT;
Line: 295

       SELECT rowid
       FROM   igf_sl_alt_borw_all
       WHERE  ((loan_id = x_loan_id));
Line: 340

    x_last_update_date                  IN     DATE     ,
    x_last_updated_by                   IN     NUMBER   ,
    x_last_update_login                 IN     NUMBER  ,
    x_other_loan_amt                    IN     NUMBER,
    x_cs1_lname                         IN     VARCHAR2,
    x_cs1_fname                         IN     VARCHAR2,
    x_cs1_mi_txt                        IN     VARCHAR2,
    x_cs1_ssn_txt                       IN     VARCHAR2,
    x_cs1_citizenship_status            IN     VARCHAR2,
    x_cs1_address_line_1_txt            IN     VARCHAR2,
    x_cs1_address_line_2_txt            IN     VARCHAR2,
    x_cs1_city_txt                      IN     VARCHAR2,
    x_cs1_state_txt                     IN     VARCHAR2,
    x_cs1_zip_txt                       IN     VARCHAR2,
    x_cs1_zip_suffix_txt                IN     VARCHAR2,
    x_cs1_telephone_number_txt          IN     VARCHAR2,
    x_cs1_signature_code_txt            IN     VARCHAR2,
    x_cs2_lname                         IN     VARCHAR2,
    x_cs2_fname                         IN     VARCHAR2,
    x_cs2_mi_txt                        IN     VARCHAR2,
    x_cs2_ssn_txt                       IN     VARCHAR2,
    x_cs2_citizenship_status            IN     VARCHAR2,
    x_cs2_address_line_1_txt            IN     VARCHAR2,
    x_cs2_address_line_2_txt            IN     VARCHAR2,
    x_cs2_city_txt                      IN     VARCHAR2,
    x_cs2_state_txt                     IN     VARCHAR2,
    x_cs2_zip_txt                       IN     VARCHAR2,
    x_cs2_zip_suffix_txt                IN     VARCHAR2,
    x_cs2_telephone_number_txt          IN     VARCHAR2,
    x_cs2_signature_code_txt            IN     VARCHAR2,
    x_cs1_credit_auth_code_txt          IN     VARCHAR2,
    x_cs1_birth_date                    IN     Date    ,
    x_cs1_drv_license_num_txt           IN     VARCHAR2,
    x_cs1_drv_license_state_txt         IN     VARCHAR2,
    x_cs1_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs1_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs1_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs1_gross_annual_sal_num          IN     NUMBER  ,
    x_cs1_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs1_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs1_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs1_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs1_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs1_other_income_amt              IN     NUMBER  ,
    x_cs1_rel_to_student_flag           IN     VARCHAR2,
    x_cs1_suffix_txt                    IN     VARCHAR2,
    x_cs1_years_at_address_txt          IN     NUMBER  ,
    x_cs2_credit_auth_code_txt          IN     VARCHAR2,
    x_cs2_birth_date                    IN     Date    ,
    x_cs2_drv_license_num_txt           IN     VARCHAR2,
    x_cs2_drv_license_state_txt         IN     VARCHAR2,
    x_cs2_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs2_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs2_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs2_gross_annual_sal_num          IN     NUMBER  ,
    x_cs2_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs2_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs2_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs2_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs2_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs2_other_income_amt              IN     NUMBER  ,
    x_cs2_rel_to_student_flag           IN     VARCHAR2,
    x_cs2_suffix_txt                    IN     VARCHAR2,
    x_cs2_years_at_address_txt          IN     NUMBER
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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_albw_id,
      x_loan_id,
      x_fed_stafford_loan_debt,
      x_fed_sls_debt,
      x_heal_debt,
      x_perkins_debt,
      x_other_debt,
      x_crdt_undr_difft_name,
      x_borw_gross_annual_sal,
      x_borw_other_income,
      x_student_major,
      x_int_rate_opt,
      x_repayment_opt_code,
      x_stud_mth_housing_pymt,
      x_stud_mth_crdtcard_pymt,
      x_stud_mth_auto_pymt,
      x_stud_mth_ed_loan_pymt,
      x_stud_mth_other_pymt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_other_loan_amt,
      x_cs1_lname,
      x_cs1_fname,
      x_cs1_mi_txt,
      x_cs1_ssn_txt,
      x_cs1_citizenship_status,
      x_cs1_address_line_1_txt,
      x_cs1_address_line_2_txt,
      x_cs1_city_txt,
      x_cs1_state_txt,
      x_cs1_zip_txt,
      x_cs1_zip_suffix_txt,
      x_cs1_telephone_number_txt,
      x_cs1_signature_code_txt,
      x_cs2_lname,
      x_cs2_fname,
      x_cs2_mi_txt,
      x_cs2_ssn_txt,
      x_cs2_citizenship_status,
      x_cs2_address_line_1_txt,
      x_cs2_address_line_2_txt,
      x_cs2_city_txt,
      x_cs2_state_txt,
      x_cs2_zip_txt,
      x_cs2_zip_suffix_txt,
      x_cs2_telephone_number_txt,
      x_cs2_signature_code_txt,
      x_cs1_credit_auth_code_txt,
      x_cs1_birth_date,
      x_cs1_drv_license_num_txt,
      x_cs1_drv_license_state_txt,
      x_cs1_elect_sig_ind_code_txt,
      x_cs1_frgn_postal_code_txt,
      x_cs1_frgn_tel_num_prefix_txt,
      x_cs1_gross_annual_sal_num,
      x_cs1_mthl_auto_pay_txt,
      x_cs1_mthl_cc_pay_txt,
      x_cs1_mthl_edu_loan_pay_txt,
      x_cs1_mthl_housing_pay_txt,
      x_cs1_mthl_other_pay_txt,
      x_cs1_other_income_amt,
      x_cs1_rel_to_student_flag,
      x_cs1_suffix_txt,
      x_cs1_years_at_address_txt,
      x_cs2_credit_auth_code_txt,
      x_cs2_birth_date,
      x_cs2_drv_license_num_txt,
      x_cs2_drv_license_state_txt,
      x_cs2_elect_sig_ind_code_txt,
      x_cs2_frgn_postal_code_txt,
      x_cs2_frgn_tel_num_prefix_txt,
      x_cs2_gross_annual_sal_num,
      x_cs2_mthl_auto_pay_txt,
      x_cs2_mthl_cc_pay_txt,
      x_cs2_mthl_edu_loan_pay_txt,
      x_cs2_mthl_housing_pay_txt,
      x_cs2_mthl_other_pay_txt,
      x_cs2_other_income_amt,
      x_cs2_rel_to_student_flag,
      x_cs2_suffix_txt,
      x_cs2_years_at_address_txt
    );
Line: 506

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation( new_references.albw_id ) ) THEN
        FND_MESSAGE.SET_NAME('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 514

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

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation ( new_references.albw_id ) ) THEN
        FND_MESSAGE.SET_NAME('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 529

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_albw_id                           IN OUT NOCOPY NUMBER,
    x_loan_id                           IN     NUMBER,
    x_fed_stafford_loan_debt            IN     NUMBER,
    x_fed_sls_debt                      IN     NUMBER,
    x_heal_debt                         IN     NUMBER,
    x_perkins_debt                      IN     NUMBER,
    x_other_debt                        IN     NUMBER,
    x_crdt_undr_difft_name              IN     VARCHAR2,
    x_borw_gross_annual_sal             IN     NUMBER,
    x_borw_other_income                 IN     NUMBER,
    x_student_major                     IN     VARCHAR2,
    x_int_rate_opt                      IN     VARCHAR2,
    x_repayment_opt_code                IN     VARCHAR2,
    x_stud_mth_housing_pymt             IN     NUMBER,
    x_stud_mth_crdtcard_pymt            IN     NUMBER,
    x_stud_mth_auto_pymt                IN     NUMBER,
    x_stud_mth_ed_loan_pymt             IN     NUMBER,
    x_stud_mth_other_pymt               IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_other_loan_amt                    IN     NUMBER,
    x_cs1_lname                         IN     VARCHAR2,
    x_cs1_fname                         IN     VARCHAR2,
    x_cs1_mi_txt                        IN     VARCHAR2,
    x_cs1_ssn_txt                       IN     VARCHAR2,
    x_cs1_citizenship_status            IN     VARCHAR2,
    x_cs1_address_line_1_txt            IN     VARCHAR2,
    x_cs1_address_line_2_txt            IN     VARCHAR2,
    x_cs1_city_txt                      IN     VARCHAR2,
    x_cs1_state_txt                     IN     VARCHAR2,
    x_cs1_zip_txt                       IN     VARCHAR2,
    x_cs1_zip_suffix_txt                IN     VARCHAR2,
    x_cs1_telephone_number_txt          IN     VARCHAR2,
    x_cs1_signature_code_txt            IN     VARCHAR2,
    x_cs2_lname                         IN     VARCHAR2,
    x_cs2_fname                         IN     VARCHAR2,
    x_cs2_mi_txt                        IN     VARCHAR2,
    x_cs2_ssn_txt                       IN     VARCHAR2,
    x_cs2_citizenship_status            IN     VARCHAR2,
    x_cs2_address_line_1_txt            IN     VARCHAR2,
    x_cs2_address_line_2_txt            IN     VARCHAR2,
    x_cs2_city_txt                      IN     VARCHAR2,
    x_cs2_state_txt                     IN     VARCHAR2,
    x_cs2_zip_txt                       IN     VARCHAR2,
    x_cs2_zip_suffix_txt                IN     VARCHAR2,
    x_cs2_telephone_number_txt          IN     VARCHAR2,
    x_cs2_signature_code_txt            IN     VARCHAR2,
    x_cs1_credit_auth_code_txt          IN     VARCHAR2,
    x_cs1_birth_date                    IN     Date    ,
    x_cs1_drv_license_num_txt           IN     VARCHAR2,
    x_cs1_drv_license_state_txt         IN     VARCHAR2,
    x_cs1_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs1_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs1_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs1_gross_annual_sal_num          IN     NUMBER  ,
    x_cs1_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs1_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs1_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs1_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs1_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs1_other_income_amt              IN     NUMBER  ,
    x_cs1_rel_to_student_flag           IN     VARCHAR2,
    x_cs1_suffix_txt                    IN     VARCHAR2,
    x_cs1_years_at_address_txt          IN     NUMBER  ,
    x_cs2_credit_auth_code_txt          IN     VARCHAR2,
    x_cs2_birth_date                    IN     Date    ,
    x_cs2_drv_license_num_txt           IN     VARCHAR2,
    x_cs2_drv_license_state_txt         IN     VARCHAR2,
    x_cs2_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs2_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs2_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs2_gross_annual_sal_num          IN     NUMBER  ,
    x_cs2_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs2_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs2_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs2_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs2_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs2_other_income_amt              IN     NUMBER  ,
    x_cs2_rel_to_student_flag           IN     VARCHAR2,
    x_cs2_suffix_txt                    IN     VARCHAR2,
    x_cs2_years_at_address_txt          IN     NUMBER
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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   igf_sl_alt_borw_all
       WHERE  albw_id  = x_albw_id;
Line: 626

    x_last_update_date           DATE;
Line: 627

    x_last_updated_by            NUMBER;
Line: 628

    x_last_update_login          NUMBER;
Line: 632

    x_program_update_date        DATE;
Line: 636

    x_last_update_date := SYSDATE;
Line: 638

      x_last_updated_by := 1;
Line: 639

      x_last_update_login := 0;
Line: 641

      x_last_updated_by := fnd_global.user_id;
Line: 642

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

      x_last_update_login := fnd_global.login_id;
Line: 646

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

        x_program_update_date    := NULL;
Line: 659

        x_program_update_date    := SYSDATE;
Line: 667

    SELECT    igf_sl_alt_borw_all_s.NEXTVAL
    INTO      x_albw_id
    FROM      dual;
Line: 674

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_albw_id                           => x_albw_id,
      x_loan_id                           => x_loan_id,
      x_fed_stafford_loan_debt            => x_fed_stafford_loan_debt,
      x_fed_sls_debt                      => x_fed_sls_debt,
      x_heal_debt                         => x_heal_debt,
      x_perkins_debt                      => x_perkins_debt,
      x_other_debt                        => x_other_debt,
      x_crdt_undr_difft_name              => x_crdt_undr_difft_name,
      x_borw_gross_annual_sal             => x_borw_gross_annual_sal,
      x_borw_other_income                 => x_borw_other_income,
      x_student_major                     => x_student_major,
      x_int_rate_opt                      => x_int_rate_opt,
      x_repayment_opt_code                => x_repayment_opt_code,
      x_stud_mth_housing_pymt             => x_stud_mth_housing_pymt,
      x_stud_mth_crdtcard_pymt            => x_stud_mth_crdtcard_pymt,
      x_stud_mth_auto_pymt                => x_stud_mth_auto_pymt,
      x_stud_mth_ed_loan_pymt             => x_stud_mth_ed_loan_pymt,
      x_stud_mth_other_pymt               => x_stud_mth_other_pymt,
      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_other_loan_amt                    => x_other_loan_amt,
      x_cs1_lname                         => x_cs1_lname                                       ,
      x_cs1_fname                         => x_cs1_fname                                       ,
      x_cs1_mi_txt                        => x_cs1_mi_txt                                      ,
      x_cs1_ssn_txt                       => x_cs1_ssn_txt                                     ,
      x_cs1_citizenship_status            => x_cs1_citizenship_status                          ,
      x_cs1_address_line_1_txt            => x_cs1_address_line_1_txt                          ,
      x_cs1_address_line_2_txt            => x_cs1_address_line_2_txt                          ,
      x_cs1_city_txt                      => x_cs1_city_txt                                    ,
      x_cs1_state_txt                     => x_cs1_state_txt                                   ,
      x_cs1_zip_txt                       => x_cs1_zip_txt                                     ,
      x_cs1_zip_suffix_txt                => x_cs1_zip_suffix_txt                              ,
      x_cs1_telephone_number_txt          => x_cs1_telephone_number_txt                        ,
      x_cs1_signature_code_txt            => x_cs1_signature_code_txt                          ,
      x_cs2_lname                         => x_cs2_lname                                       ,
      x_cs2_fname                         => x_cs2_fname                                       ,
      x_cs2_mi_txt                        => x_cs2_mi_txt                                      ,
      x_cs2_ssn_txt                       => x_cs2_ssn_txt                                     ,
      x_cs2_citizenship_status            => x_cs2_citizenship_status                          ,
      x_cs2_address_line_1_txt            => x_cs2_address_line_1_txt                          ,
      x_cs2_address_line_2_txt            => x_cs2_address_line_2_txt                          ,
      x_cs2_city_txt                      => x_cs2_city_txt                                    ,
      x_cs2_state_txt                     => x_cs2_state_txt                                   ,
      x_cs2_zip_txt                       => x_cs2_zip_txt                                     ,
      x_cs2_zip_suffix_txt                => x_cs2_zip_suffix_txt                              ,
      x_cs2_telephone_number_txt          => x_cs2_telephone_number_txt                        ,
      x_cs2_signature_code_txt            => x_cs2_signature_code_txt                          ,
      x_cs1_credit_auth_code_txt          => x_cs1_credit_auth_code_txt                        ,
      x_cs1_birth_date                    => x_cs1_birth_date                                  ,
      x_cs1_drv_license_num_txt           => x_cs1_drv_license_num_txt                         ,
      x_cs1_drv_license_state_txt         => x_cs1_drv_license_state_txt                       ,
      x_cs1_elect_sig_ind_code_txt        => x_cs1_elect_sig_ind_code_txt                      ,
      x_cs1_frgn_postal_code_txt          => x_cs1_frgn_postal_code_txt                        ,
      x_cs1_frgn_tel_num_prefix_txt       => x_cs1_frgn_tel_num_prefix_txt                     ,
      x_cs1_gross_annual_sal_num          => x_cs1_gross_annual_sal_num                        ,
      x_cs1_mthl_auto_pay_txt             => x_cs1_mthl_auto_pay_txt                           ,
      x_cs1_mthl_cc_pay_txt               => x_cs1_mthl_cc_pay_txt                             ,
      x_cs1_mthl_edu_loan_pay_txt         => x_cs1_mthl_edu_loan_pay_txt                       ,
      x_cs1_mthl_housing_pay_txt          => x_cs1_mthl_housing_pay_txt                        ,
      x_cs1_mthl_other_pay_txt            => x_cs1_mthl_other_pay_txt                          ,
      x_cs1_other_income_amt              => x_cs1_other_income_amt                            ,
      x_cs1_rel_to_student_flag           => x_cs1_rel_to_student_flag                         ,
      x_cs1_suffix_txt                    => x_cs1_suffix_txt                                  ,
      x_cs1_years_at_address_txt          => x_cs1_years_at_address_txt                        ,
      x_cs2_credit_auth_code_txt          => x_cs2_credit_auth_code_txt                        ,
      x_cs2_birth_date                    => x_cs2_birth_date                                  ,
      x_cs2_drv_license_num_txt           => x_cs2_drv_license_num_txt                         ,
      x_cs2_drv_license_state_txt         => x_cs2_drv_license_state_txt                       ,
      x_cs2_elect_sig_ind_code_txt        => x_cs2_elect_sig_ind_code_txt                      ,
      x_cs2_frgn_postal_code_txt          => x_cs2_frgn_postal_code_txt                        ,
      x_cs2_frgn_tel_num_prefix_txt       => x_cs2_frgn_tel_num_prefix_txt                     ,
      x_cs2_gross_annual_sal_num          => x_cs2_gross_annual_sal_num                        ,
      x_cs2_mthl_auto_pay_txt             => x_cs2_mthl_auto_pay_txt                           ,
      x_cs2_mthl_cc_pay_txt               => x_cs2_mthl_cc_pay_txt                             ,
      x_cs2_mthl_edu_loan_pay_txt         => x_cs2_mthl_edu_loan_pay_txt                       ,
      x_cs2_mthl_housing_pay_txt          => x_cs2_mthl_housing_pay_txt                        ,
      x_cs2_mthl_other_pay_txt            => x_cs2_mthl_other_pay_txt                          ,
      x_cs2_other_income_amt              => x_cs2_other_income_amt                            ,
      x_cs2_rel_to_student_flag           => x_cs2_rel_to_student_flag                         ,
      x_cs2_suffix_txt                    => x_cs2_suffix_txt                                  ,
      x_cs2_years_at_address_txt          => x_cs2_years_at_address_txt
    );
Line: 762

    INSERT INTO igf_sl_alt_borw_all (
      albw_id,
      loan_id,
      fed_stafford_loan_debt,
      fed_sls_debt,
      heal_debt,
      perkins_debt,
      other_debt,
      crdt_undr_difft_name,
      borw_gross_annual_sal,
      borw_other_income,
      student_major,
      int_rate_opt,
      repayment_opt_code,
      stud_mth_housing_pymt,
      stud_mth_crdtcard_pymt,
      stud_mth_auto_pymt,
      stud_mth_ed_loan_pymt,
      stud_mth_other_pymt,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      other_loan_amt,
      cs1_lname,
      cs1_fname,
      cs1_mi_txt,
      cs1_ssn_txt,
      cs1_citizenship_status,
      cs1_address_line_1_txt,
      cs1_address_line_2_txt,
      cs1_city_txt,
      cs1_state_txt,
      cs1_zip_txt,
      cs1_zip_suffix_txt,
      cs1_telephone_number_txt,
      cs1_signature_code_txt,
      cs2_lname,
      cs2_fname,
      cs2_mi_txt,
      cs2_ssn_txt,
      cs2_citizenship_status,
      cs2_address_line_1_txt,
      cs2_address_line_2_txt,
      cs2_city_txt,
      cs2_state_txt,
      cs2_zip_txt,
      cs2_zip_suffix_txt,
      cs2_telephone_number_txt,
      cs2_signature_code_txt,
      cs1_credit_auth_code_txt,
      cs1_birth_date,
      cs1_drv_license_num_txt,
      cs1_drv_license_state_txt,
      cs1_elect_sig_ind_code_txt,
      cs1_frgn_postal_code_txt,
      cs1_frgn_tel_num_prefix_txt,
      cs1_gross_annual_sal_num,
      cs1_mthl_auto_pay_txt,
      cs1_mthl_cc_pay_txt,
      cs1_mthl_edu_loan_pay_txt,
      cs1_mthl_housing_pay_txt,
      cs1_mthl_other_pay_txt,
      cs1_other_income_amt,
      cs1_rel_to_student_flag,
      cs1_suffix_txt,
      cs1_years_at_address_txt,
      cs2_credit_auth_code_txt,
      cs2_birth_date,
      cs2_drv_license_num_txt,
      cs2_drv_license_state_txt,
      cs2_elect_sig_ind_code_txt,
      cs2_frgn_postal_code_txt,
      cs2_frgn_tel_num_prefix_txt,
      cs2_gross_annual_sal_num,
      cs2_mthl_auto_pay_txt,
      cs2_mthl_cc_pay_txt,
      cs2_mthl_edu_loan_pay_txt,
      cs2_mthl_housing_pay_txt,
      cs2_mthl_other_pay_txt,
      cs2_other_income_amt,
      cs2_rel_to_student_flag,
      cs2_suffix_txt,
      cs2_years_at_address_txt
    ) VALUES (
      new_references.albw_id,
      new_references.loan_id,
      new_references.fed_stafford_loan_debt,
      new_references.fed_sls_debt,
      new_references.heal_debt,
      new_references.perkins_debt,
      new_references.other_debt,
      new_references.crdt_undr_difft_name,
      new_references.borw_gross_annual_sal,
      new_references.borw_other_income,
      new_references.student_major,
      new_references.int_rate_opt,
      new_references.repayment_opt_code,
      new_references.stud_mth_housing_pymt,
      new_references.stud_mth_crdtcard_pymt,
      new_references.stud_mth_auto_pymt,
      new_references.stud_mth_ed_loan_pymt,
      new_references.stud_mth_other_pymt,
      new_references.org_id,
      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_id,
      x_program_application_id,
      x_program_update_date,
      new_references.other_loan_amt,
      new_references.cs1_lname,
      new_references.cs1_fname,
      new_references.cs1_mi_txt,
      new_references.cs1_ssn_txt,
      new_references.cs1_citizenship_status,
      new_references.cs1_address_line_1_txt,
      new_references.cs1_address_line_2_txt,
      new_references.cs1_city_txt,
      new_references.cs1_state_txt,
      new_references.cs1_zip_txt,
      new_references.cs1_zip_suffix_txt,
      new_references.cs1_telephone_number_txt,
      new_references.cs1_signature_code_txt,
      new_references.cs2_lname,
      new_references.cs2_fname,
      new_references.cs2_mi_txt,
      new_references.cs2_ssn_txt,
      new_references.cs2_citizenship_status,
      new_references.cs2_address_line_1_txt,
      new_references.cs2_address_line_2_txt,
      new_references.cs2_city_txt,
      new_references.cs2_state_txt,
      new_references.cs2_zip_txt,
      new_references.cs2_zip_suffix_txt,
      new_references.cs2_telephone_number_txt,
      new_references.cs2_signature_code_txt,
      new_references.cs1_credit_auth_code_txt,
      new_references.cs1_birth_date,
      new_references.cs1_drv_license_num_txt,
      new_references.cs1_drv_license_state_txt,
      new_references.cs1_elect_sig_ind_code_txt,
      new_references.cs1_frgn_postal_code_txt,
      new_references.cs1_frgn_tel_num_prefix_txt,
      new_references.cs1_gross_annual_sal_num,
      new_references.cs1_mthl_auto_pay_txt,
      new_references.cs1_mthl_cc_pay_txt,
      new_references.cs1_mthl_edu_loan_pay_txt,
      new_references.cs1_mthl_housing_pay_txt,
      new_references.cs1_mthl_other_pay_txt,
      new_references.cs1_other_income_amt,
      new_references.cs1_rel_to_student_flag,
      new_references.cs1_suffix_txt,
      new_references.cs1_years_at_address_txt,
      new_references.cs2_credit_auth_code_txt,
      new_references.cs2_birth_date,
      new_references.cs2_drv_license_num_txt,
      new_references.cs2_drv_license_state_txt,
      new_references.cs2_elect_sig_ind_code_txt,
      new_references.cs2_frgn_postal_code_txt,
      new_references.cs2_frgn_tel_num_prefix_txt,
      new_references.cs2_gross_annual_sal_num,
      new_references.cs2_mthl_auto_pay_txt,
      new_references.cs2_mthl_cc_pay_txt,
      new_references.cs2_mthl_edu_loan_pay_txt,
      new_references.cs2_mthl_housing_pay_txt,
      new_references.cs2_mthl_other_pay_txt,
      new_references.cs2_other_income_amt,
      new_references.cs2_rel_to_student_flag,
      new_references.cs2_suffix_txt,
      new_references.cs2_years_at_address_txt
    );
Line: 952

  END insert_row;
Line: 1047

      SELECT
        loan_id,
        fed_stafford_loan_debt,
        fed_sls_debt,
        heal_debt,
        perkins_debt,
        other_debt,
        crdt_undr_difft_name,
        borw_gross_annual_sal,
        borw_other_income,
        student_major,
        int_rate_opt,
        repayment_opt_code,
        stud_mth_housing_pymt,
        stud_mth_crdtcard_pymt,
        stud_mth_auto_pymt,
        stud_mth_ed_loan_pymt,
        stud_mth_other_pymt,
        other_loan_amt,
        cs1_lname,
        cs1_fname,
        cs1_mi_txt,
        cs1_ssn_txt,
        cs1_citizenship_status,
        cs1_address_line_1_txt,
        cs1_address_line_2_txt,
        cs1_city_txt,
        cs1_state_txt,
        cs1_zip_txt,
        cs1_zip_suffix_txt,
        cs1_telephone_number_txt,
        cs1_signature_code_txt,
        cs2_lname,
        cs2_fname,
        cs2_mi_txt,
        cs2_ssn_txt,
        cs2_citizenship_status,
        cs2_address_line_1_txt,
        cs2_address_line_2_txt,
        cs2_city_txt,
        cs2_state_txt,
        cs2_zip_txt,
        cs2_zip_suffix_txt,
        cs2_telephone_number_txt,
        cs2_signature_code_txt,
        cs1_credit_auth_code_txt,
        cs1_birth_date,
        cs1_drv_license_num_txt,
        cs1_drv_license_state_txt,
        cs1_elect_sig_ind_code_txt,
        cs1_frgn_postal_code_txt,
        cs1_frgn_tel_num_prefix_txt,
        cs1_gross_annual_sal_num,
        cs1_mthl_auto_pay_txt,
        cs1_mthl_cc_pay_txt,
        cs1_mthl_edu_loan_pay_txt,
        cs1_mthl_housing_pay_txt,
        cs1_mthl_other_pay_txt,
        cs1_other_income_amt,
        cs1_rel_to_student_flag,
        cs1_suffix_txt,
        cs1_years_at_address_txt,
        cs2_credit_auth_code_txt,
        cs2_birth_date,
        cs2_drv_license_num_txt,
        cs2_drv_license_state_txt,
        cs2_elect_sig_ind_code_txt,
        cs2_frgn_postal_code_txt,
        cs2_frgn_tel_num_prefix_txt,
        cs2_gross_annual_sal_num,
        cs2_mthl_auto_pay_txt,
        cs2_mthl_cc_pay_txt,
        cs2_mthl_edu_loan_pay_txt,
        cs2_mthl_housing_pay_txt,
        cs2_mthl_other_pay_txt,
        cs2_other_income_amt,
        cs2_rel_to_student_flag,
        cs2_suffix_txt,
        cs2_years_at_address_txt
      FROM  igf_sl_alt_borw_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 1137

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_albw_id                           IN     NUMBER,
    x_loan_id                           IN     NUMBER,
    x_fed_stafford_loan_debt            IN     NUMBER,
    x_fed_sls_debt                      IN     NUMBER,
    x_heal_debt                         IN     NUMBER,
    x_perkins_debt                      IN     NUMBER,
    x_other_debt                        IN     NUMBER,
    x_crdt_undr_difft_name              IN     VARCHAR2,
    x_borw_gross_annual_sal             IN     NUMBER,
    x_borw_other_income                 IN     NUMBER,
    x_student_major                     IN     VARCHAR2,
    x_int_rate_opt                      IN     VARCHAR2,
    x_repayment_opt_code                IN     VARCHAR2,
    x_stud_mth_housing_pymt             IN     NUMBER,
    x_stud_mth_crdtcard_pymt            IN     NUMBER,
    x_stud_mth_auto_pymt                IN     NUMBER,
    x_stud_mth_ed_loan_pymt             IN     NUMBER,
    x_stud_mth_other_pymt               IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_other_loan_amt                    IN     NUMBER,
    x_cs1_lname                         IN     VARCHAR2,
    x_cs1_fname                         IN     VARCHAR2,
    x_cs1_mi_txt                        IN     VARCHAR2,
    x_cs1_ssn_txt                       IN     VARCHAR2,
    x_cs1_citizenship_status            IN     VARCHAR2,
    x_cs1_address_line_1_txt            IN     VARCHAR2,
    x_cs1_address_line_2_txt            IN     VARCHAR2,
    x_cs1_city_txt                      IN     VARCHAR2,
    x_cs1_state_txt                     IN     VARCHAR2,
    x_cs1_zip_txt                       IN     VARCHAR2,
    x_cs1_zip_suffix_txt                IN     VARCHAR2,
    x_cs1_telephone_number_txt          IN     VARCHAR2,
    x_cs1_signature_code_txt            IN     VARCHAR2,
    x_cs2_lname                         IN     VARCHAR2,
    x_cs2_fname                         IN     VARCHAR2,
    x_cs2_mi_txt                        IN     VARCHAR2,
    x_cs2_ssn_txt                       IN     VARCHAR2,
    x_cs2_citizenship_status            IN     VARCHAR2,
    x_cs2_address_line_1_txt            IN     VARCHAR2,
    x_cs2_address_line_2_txt            IN     VARCHAR2,
    x_cs2_city_txt                      IN     VARCHAR2,
    x_cs2_state_txt                     IN     VARCHAR2,
    x_cs2_zip_txt                       IN     VARCHAR2,
    x_cs2_zip_suffix_txt                IN     VARCHAR2,
    x_cs2_telephone_number_txt          IN     VARCHAR2,
    x_cs2_signature_code_txt            IN     VARCHAR2,
    x_cs1_credit_auth_code_txt          IN     VARCHAR2,
    x_cs1_birth_date                    IN     Date    ,
    x_cs1_drv_license_num_txt           IN     VARCHAR2,
    x_cs1_drv_license_state_txt         IN     VARCHAR2,
    x_cs1_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs1_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs1_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs1_gross_annual_sal_num          IN     NUMBER  ,
    x_cs1_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs1_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs1_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs1_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs1_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs1_other_income_amt              IN     NUMBER  ,
    x_cs1_rel_to_student_flag           IN     VARCHAR2,
    x_cs1_suffix_txt                    IN     VARCHAR2,
    x_cs1_years_at_address_txt          IN     NUMBER  ,
    x_cs2_credit_auth_code_txt          IN     VARCHAR2,
    x_cs2_birth_date                    IN     Date    ,
    x_cs2_drv_license_num_txt           IN     VARCHAR2,
    x_cs2_drv_license_state_txt         IN     VARCHAR2,
    x_cs2_elect_sig_ind_code_txt        IN     VARCHAR2,
    x_cs2_frgn_postal_code_txt          IN     VARCHAR2,
    x_cs2_frgn_tel_num_prefix_txt       IN     VARCHAR2,
    x_cs2_gross_annual_sal_num          IN     NUMBER  ,
    x_cs2_mthl_auto_pay_txt             IN     VARCHAR2,
    x_cs2_mthl_cc_pay_txt               IN     VARCHAR2,
    x_cs2_mthl_edu_loan_pay_txt         IN     VARCHAR2,
    x_cs2_mthl_housing_pay_txt          IN     VARCHAR2,
    x_cs2_mthl_other_pay_txt            IN     VARCHAR2,
    x_cs2_other_income_amt              IN     NUMBER  ,
    x_cs2_rel_to_student_flag           IN     VARCHAR2,
    x_cs2_suffix_txt                    IN     VARCHAR2,
    x_cs2_years_at_address_txt          IN     NUMBER
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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: 1330

    x_last_updated_by            NUMBER;
Line: 1331

    x_last_update_login          NUMBER;
Line: 1335

    x_program_update_date        DATE;
Line: 1339

    x_last_update_date := SYSDATE;
Line: 1341

      x_last_updated_by := 1;
Line: 1342

      x_last_update_login := 0;
Line: 1344

      x_last_updated_by := fnd_global.user_id;
Line: 1345

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

      x_last_update_login := fnd_global.login_id;
Line: 1349

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_albw_id                           => x_albw_id,
      x_loan_id                           => x_loan_id,
      x_fed_stafford_loan_debt            => x_fed_stafford_loan_debt,
      x_fed_sls_debt                      => x_fed_sls_debt,
      x_heal_debt                         => x_heal_debt,
      x_perkins_debt                      => x_perkins_debt,
      x_other_debt                        => x_other_debt,
      x_crdt_undr_difft_name              => x_crdt_undr_difft_name,
      x_borw_gross_annual_sal             => x_borw_gross_annual_sal,
      x_borw_other_income                 => x_borw_other_income,
      x_student_major                     => x_student_major,
      x_int_rate_opt                      => x_int_rate_opt,
      x_repayment_opt_code                => x_repayment_opt_code,
      x_stud_mth_housing_pymt             => x_stud_mth_housing_pymt,
      x_stud_mth_crdtcard_pymt            => x_stud_mth_crdtcard_pymt,
      x_stud_mth_auto_pymt                => x_stud_mth_auto_pymt,
      x_stud_mth_ed_loan_pymt             => x_stud_mth_ed_loan_pymt,
      x_stud_mth_other_pymt               => x_stud_mth_other_pymt,
      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_other_loan_amt                    => x_other_loan_amt,
      x_cs1_lname                         => x_cs1_lname                                       ,
      x_cs1_fname                         => x_cs1_fname                                       ,
      x_cs1_mi_txt                        => x_cs1_mi_txt                                      ,
      x_cs1_ssn_txt                       => x_cs1_ssn_txt                                     ,
      x_cs1_citizenship_status            => x_cs1_citizenship_status                          ,
      x_cs1_address_line_1_txt            => x_cs1_address_line_1_txt                          ,
      x_cs1_address_line_2_txt            => x_cs1_address_line_2_txt                          ,
      x_cs1_city_txt                      => x_cs1_city_txt                                    ,
      x_cs1_state_txt                     => x_cs1_state_txt                                   ,
      x_cs1_zip_txt                       => x_cs1_zip_txt                                     ,
      x_cs1_zip_suffix_txt                => x_cs1_zip_suffix_txt                              ,
      x_cs1_telephone_number_txt          => x_cs1_telephone_number_txt                        ,
      x_cs1_signature_code_txt            => x_cs1_signature_code_txt                          ,
      x_cs2_lname                         => x_cs2_lname                                       ,
      x_cs2_fname                         => x_cs2_fname                                       ,
      x_cs2_mi_txt                        => x_cs2_mi_txt                                      ,
      x_cs2_ssn_txt                       => x_cs2_ssn_txt                                     ,
      x_cs2_citizenship_status            => x_cs2_citizenship_status                          ,
      x_cs2_address_line_1_txt            => x_cs2_address_line_1_txt                          ,
      x_cs2_address_line_2_txt            => x_cs2_address_line_2_txt                          ,
      x_cs2_city_txt                      => x_cs2_city_txt                                    ,
      x_cs2_state_txt                     => x_cs2_state_txt                                   ,
      x_cs2_zip_txt                       => x_cs2_zip_txt                                     ,
      x_cs2_zip_suffix_txt                => x_cs2_zip_suffix_txt                              ,
      x_cs2_telephone_number_txt          => x_cs2_telephone_number_txt                        ,
      x_cs2_signature_code_txt            => x_cs2_signature_code_txt                          ,
      x_cs1_credit_auth_code_txt          => x_cs1_credit_auth_code_txt                        ,
      x_cs1_birth_date                    => x_cs1_birth_date                                  ,
      x_cs1_drv_license_num_txt           => x_cs1_drv_license_num_txt                         ,
      x_cs1_drv_license_state_txt         => x_cs1_drv_license_state_txt                       ,
      x_cs1_elect_sig_ind_code_txt        => x_cs1_elect_sig_ind_code_txt                      ,
      x_cs1_frgn_postal_code_txt          => x_cs1_frgn_postal_code_txt                        ,
      x_cs1_frgn_tel_num_prefix_txt       => x_cs1_frgn_tel_num_prefix_txt                     ,
      x_cs1_gross_annual_sal_num          => x_cs1_gross_annual_sal_num                        ,
      x_cs1_mthl_auto_pay_txt             => x_cs1_mthl_auto_pay_txt                           ,
      x_cs1_mthl_cc_pay_txt               => x_cs1_mthl_cc_pay_txt                             ,
      x_cs1_mthl_edu_loan_pay_txt         => x_cs1_mthl_edu_loan_pay_txt                       ,
      x_cs1_mthl_housing_pay_txt          => x_cs1_mthl_housing_pay_txt                        ,
      x_cs1_mthl_other_pay_txt            => x_cs1_mthl_other_pay_txt                          ,
      x_cs1_other_income_amt              => x_cs1_other_income_amt                            ,
      x_cs1_rel_to_student_flag           => x_cs1_rel_to_student_flag                         ,
      x_cs1_suffix_txt                    => x_cs1_suffix_txt                                  ,
      x_cs1_years_at_address_txt          => x_cs1_years_at_address_txt                        ,
      x_cs2_credit_auth_code_txt          => x_cs2_credit_auth_code_txt                        ,
      x_cs2_birth_date                    => x_cs2_birth_date                                  ,
      x_cs2_drv_license_num_txt           => x_cs2_drv_license_num_txt                         ,
      x_cs2_drv_license_state_txt         => x_cs2_drv_license_state_txt                       ,
      x_cs2_elect_sig_ind_code_txt        => x_cs2_elect_sig_ind_code_txt                      ,
      x_cs2_frgn_postal_code_txt          => x_cs2_frgn_postal_code_txt                        ,
      x_cs2_frgn_tel_num_prefix_txt       => x_cs2_frgn_tel_num_prefix_txt                     ,
      x_cs2_gross_annual_sal_num          => x_cs2_gross_annual_sal_num                        ,
      x_cs2_mthl_auto_pay_txt             => x_cs2_mthl_auto_pay_txt                           ,
      x_cs2_mthl_cc_pay_txt               => x_cs2_mthl_cc_pay_txt                             ,
      x_cs2_mthl_edu_loan_pay_txt         => x_cs2_mthl_edu_loan_pay_txt                       ,
      x_cs2_mthl_housing_pay_txt          => x_cs2_mthl_housing_pay_txt                        ,
      x_cs2_mthl_other_pay_txt            => x_cs2_mthl_other_pay_txt                          ,
      x_cs2_other_income_amt              => x_cs2_other_income_amt                            ,
      x_cs2_rel_to_student_flag           => x_cs2_rel_to_student_flag                         ,
      x_cs2_suffix_txt                    => x_cs2_suffix_txt                                  ,
      x_cs2_years_at_address_txt          => x_cs2_years_at_address_txt
    );
Line: 1455

        x_program_update_date := old_references.program_update_date;
Line: 1457

        x_program_update_date := SYSDATE;
Line: 1461

    UPDATE igf_sl_alt_borw_all
      SET
        loan_id                           = new_references.loan_id,
        fed_stafford_loan_debt            = new_references.fed_stafford_loan_debt,
        fed_sls_debt                      = new_references.fed_sls_debt,
        heal_debt                         = new_references.heal_debt,
        perkins_debt                      = new_references.perkins_debt,
        other_debt                        = new_references.other_debt,
        crdt_undr_difft_name              = new_references.crdt_undr_difft_name,
        borw_gross_annual_sal             = new_references.borw_gross_annual_sal,
        borw_other_income                 = new_references.borw_other_income,
        student_major                     = new_references.student_major,
        int_rate_opt                      = new_references.int_rate_opt,
        repayment_opt_code                = new_references.repayment_opt_code,
        stud_mth_housing_pymt             = new_references.stud_mth_housing_pymt,
        stud_mth_crdtcard_pymt            = new_references.stud_mth_crdtcard_pymt,
        stud_mth_auto_pymt                = new_references.stud_mth_auto_pymt,
        stud_mth_ed_loan_pymt             = new_references.stud_mth_ed_loan_pymt,
        stud_mth_other_pymt               = new_references.stud_mth_other_pymt,
        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_id                        = x_program_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date,
        other_loan_amt                    = new_references.other_loan_amt, -- mnade 5/30/2005 - Correcting this to use the new valud instead of passed parameter x_other_loan_amt
        cs1_lname                         = new_references.cs1_lname                   ,
        cs1_fname                         = new_references.cs1_fname                   ,
        cs1_mi_txt                        = new_references.cs1_mi_txt                  ,
        cs1_ssn_txt                       = new_references.cs1_ssn_txt                 ,
        cs1_citizenship_status            = new_references.cs1_citizenship_status      ,
        cs1_address_line_1_txt            = new_references.cs1_address_line_1_txt      ,
        cs1_address_line_2_txt            = new_references.cs1_address_line_2_txt      ,
        cs1_city_txt                      = new_references.cs1_city_txt                ,
        cs1_state_txt                     = new_references.cs1_state_txt               ,
        cs1_zip_txt                       = new_references.cs1_zip_txt                 ,
        cs1_zip_suffix_txt                = new_references.cs1_zip_suffix_txt          ,
        cs1_telephone_number_txt          = new_references.cs1_telephone_number_txt    ,
        cs1_signature_code_txt            = new_references.cs1_signature_code_txt      ,
        cs2_lname                         = new_references.cs2_lname                   ,
        cs2_fname                         = new_references.cs2_fname                   ,
        cs2_mi_txt                        = new_references.cs2_mi_txt                  ,
        cs2_ssn_txt                       = new_references.cs2_ssn_txt                 ,
        cs2_citizenship_status            = new_references.cs2_citizenship_status      ,
        cs2_address_line_1_txt            = new_references.cs2_address_line_1_txt      ,
        cs2_address_line_2_txt            = new_references.cs2_address_line_2_txt      ,
        cs2_city_txt                      = new_references.cs2_city_txt                ,
        cs2_state_txt                     = new_references.cs2_state_txt               ,
        cs2_zip_txt                       = new_references.cs2_zip_txt                 ,
        cs2_zip_suffix_txt                = new_references.cs2_zip_suffix_txt          ,
        cs2_telephone_number_txt          = new_references.cs2_telephone_number_txt    ,
        cs2_signature_code_txt            = new_references.cs2_signature_code_txt      ,
        cs1_credit_auth_code_txt          = new_references.cs1_credit_auth_code_txt    ,
        cs1_birth_date                    = new_references.cs1_birth_date              ,
        cs1_drv_license_num_txt           = new_references.cs1_drv_license_num_txt     ,
        cs1_drv_license_state_txt         = new_references.cs1_drv_license_state_txt   ,
        cs1_elect_sig_ind_code_txt        = new_references.cs1_elect_sig_ind_code_txt  ,
        cs1_frgn_postal_code_txt          = new_references.cs1_frgn_postal_code_txt    ,
        cs1_frgn_tel_num_prefix_txt       = new_references.cs1_frgn_tel_num_prefix_txt ,
        cs1_gross_annual_sal_num          = new_references.cs1_gross_annual_sal_num    ,
        cs1_mthl_auto_pay_txt             = new_references.cs1_mthl_auto_pay_txt       ,
        cs1_mthl_cc_pay_txt               = new_references.cs1_mthl_cc_pay_txt         ,
        cs1_mthl_edu_loan_pay_txt         = new_references.cs1_mthl_edu_loan_pay_txt   ,
        cs1_mthl_housing_pay_txt          = new_references.cs1_mthl_housing_pay_txt    ,
        cs1_mthl_other_pay_txt            = new_references.cs1_mthl_other_pay_txt      ,
        cs1_other_income_amt              = new_references.cs1_other_income_amt        ,
        cs1_rel_to_student_flag           = new_references.cs1_rel_to_student_flag     ,
        cs1_suffix_txt                    = new_references.cs1_suffix_txt              ,
        cs1_years_at_address_txt          = new_references.cs1_years_at_address_txt    ,
        cs2_credit_auth_code_txt          = new_references.cs2_credit_auth_code_txt    ,
        cs2_birth_date                    = new_references.cs2_birth_date              ,
        cs2_drv_license_num_txt           = new_references.cs2_drv_license_num_txt     ,
        cs2_drv_license_state_txt         = new_references.cs2_drv_license_state_txt   ,
        cs2_elect_sig_ind_code_txt        = new_references.cs2_elect_sig_ind_code_txt  ,
        cs2_frgn_postal_code_txt          = new_references.cs2_frgn_postal_code_txt    ,
        cs2_frgn_tel_num_prefix_txt       = new_references.cs2_frgn_tel_num_prefix_txt ,
        cs2_gross_annual_sal_num          = new_references.cs2_gross_annual_sal_num    ,
        cs2_mthl_auto_pay_txt             = new_references.cs2_mthl_auto_pay_txt       ,
        cs2_mthl_cc_pay_txt               = new_references.cs2_mthl_cc_pay_txt         ,
        cs2_mthl_edu_loan_pay_txt         = new_references.cs2_mthl_edu_loan_pay_txt   ,
        cs2_mthl_housing_pay_txt          = new_references.cs2_mthl_housing_pay_txt    ,
        cs2_mthl_other_pay_txt            = new_references.cs2_mthl_other_pay_txt      ,
        cs2_other_income_amt              = new_references.cs2_other_income_amt        ,
        cs2_rel_to_student_flag           = new_references.cs2_rel_to_student_flag     ,
        cs2_suffix_txt                    = new_references.cs2_suffix_txt              ,
        cs2_years_at_address_txt          = new_references.cs2_years_at_address_txt
      WHERE rowid = x_rowid;
Line: 1554

  END update_row;
Line: 1643

  ||  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     igf_sl_alt_borw_all
      WHERE    albw_id                           = x_albw_id;
Line: 1661

      insert_row (
        x_rowid,
        x_albw_id,
        x_loan_id,
        x_fed_stafford_loan_debt,
        x_fed_sls_debt,
        x_heal_debt,
        x_perkins_debt,
        x_other_debt,
        x_crdt_undr_difft_name,
        x_borw_gross_annual_sal,
        x_borw_other_income,
        x_student_major,
        x_int_rate_opt,
        x_repayment_opt_code,
        x_stud_mth_housing_pymt,
        x_stud_mth_crdtcard_pymt,
        x_stud_mth_auto_pymt,
        x_stud_mth_ed_loan_pymt,
        x_stud_mth_other_pymt,
        x_mode,
        x_other_loan_amt,
        x_cs1_lname,
        x_cs1_fname,
        x_cs1_mi_txt,
        x_cs1_ssn_txt,
        x_cs1_citizenship_status,
        x_cs1_address_line_1_txt,
        x_cs1_address_line_2_txt,
        x_cs1_city_txt,
        x_cs1_state_txt,
        x_cs1_zip_txt,
        x_cs1_zip_suffix_txt,
        x_cs1_telephone_number_txt,
        x_cs1_signature_code_txt,
        x_cs2_lname,
        x_cs2_fname,
        x_cs2_mi_txt,
        x_cs2_ssn_txt,
        x_cs2_citizenship_status,
        x_cs2_address_line_1_txt,
        x_cs2_address_line_2_txt,
        x_cs2_city_txt,
        x_cs2_state_txt,
        x_cs2_zip_txt,
        x_cs2_zip_suffix_txt,
        x_cs2_telephone_number_txt,
        x_cs2_signature_code_txt,
        x_cs1_credit_auth_code_txt,
        x_cs1_birth_date,
        x_cs1_drv_license_num_txt,
        x_cs1_drv_license_state_txt,
        x_cs1_elect_sig_ind_code_txt,
        x_cs1_frgn_postal_code_txt,
        x_cs1_frgn_tel_num_prefix_txt,
        x_cs1_gross_annual_sal_num,
        x_cs1_mthl_auto_pay_txt,
        x_cs1_mthl_cc_pay_txt,
        x_cs1_mthl_edu_loan_pay_txt,
        x_cs1_mthl_housing_pay_txt,
        x_cs1_mthl_other_pay_txt,
        x_cs1_other_income_amt,
        x_cs1_rel_to_student_flag,
        x_cs1_suffix_txt,
        x_cs1_years_at_address_txt,
        x_cs2_credit_auth_code_txt,
        x_cs2_birth_date,
        x_cs2_drv_license_num_txt,
        x_cs2_drv_license_state_txt,
        x_cs2_elect_sig_ind_code_txt,
        x_cs2_frgn_postal_code_txt,
        x_cs2_frgn_tel_num_prefix_txt,
        x_cs2_gross_annual_sal_num,
        x_cs2_mthl_auto_pay_txt,
        x_cs2_mthl_cc_pay_txt,
        x_cs2_mthl_edu_loan_pay_txt,
        x_cs2_mthl_housing_pay_txt,
        x_cs2_mthl_other_pay_txt,
        x_cs2_other_income_amt,
        x_cs2_rel_to_student_flag,
        x_cs2_suffix_txt,
        x_cs2_years_at_address_txt
      );
Line: 1748

    update_row (
      x_rowid,
      x_albw_id,
      x_loan_id,
      x_fed_stafford_loan_debt,
      x_fed_sls_debt,
      x_heal_debt,
      x_perkins_debt,
      x_other_debt,
      x_crdt_undr_difft_name,
      x_borw_gross_annual_sal,
      x_borw_other_income,
      x_student_major,
      x_int_rate_opt,
      x_repayment_opt_code,
      x_stud_mth_housing_pymt,
      x_stud_mth_crdtcard_pymt,
      x_stud_mth_auto_pymt,
      x_stud_mth_ed_loan_pymt,
      x_stud_mth_other_pymt,
      x_mode,
      x_other_loan_amt,
      x_cs1_lname,
      x_cs1_fname,
      x_cs1_mi_txt,
      x_cs1_ssn_txt,
      x_cs1_citizenship_status,
      x_cs1_address_line_1_txt,
      x_cs1_address_line_2_txt,
      x_cs1_city_txt,
      x_cs1_state_txt,
      x_cs1_zip_txt,
      x_cs1_zip_suffix_txt,
      x_cs1_telephone_number_txt,
      x_cs1_signature_code_txt,
      x_cs2_lname,
      x_cs2_fname,
      x_cs2_mi_txt,
      x_cs2_ssn_txt,
      x_cs2_citizenship_status,
      x_cs2_address_line_1_txt,
      x_cs2_address_line_2_txt,
      x_cs2_city_txt,
      x_cs2_state_txt,
      x_cs2_zip_txt,
      x_cs2_zip_suffix_txt,
      x_cs2_telephone_number_txt,
      x_cs2_signature_code_txt,
      x_cs1_credit_auth_code_txt,
      x_cs1_birth_date,
      x_cs1_drv_license_num_txt,
      x_cs1_drv_license_state_txt,
      x_cs1_elect_sig_ind_code_txt,
      x_cs1_frgn_postal_code_txt,
      x_cs1_frgn_tel_num_prefix_txt,
      x_cs1_gross_annual_sal_num,
      x_cs1_mthl_auto_pay_txt,
      x_cs1_mthl_cc_pay_txt,
      x_cs1_mthl_edu_loan_pay_txt,
      x_cs1_mthl_housing_pay_txt,
      x_cs1_mthl_other_pay_txt,
      x_cs1_other_income_amt,
      x_cs1_rel_to_student_flag,
      x_cs1_suffix_txt,
      x_cs1_years_at_address_txt,
      x_cs2_credit_auth_code_txt,
      x_cs2_birth_date,
      x_cs2_drv_license_num_txt,
      x_cs2_drv_license_state_txt,
      x_cs2_elect_sig_ind_code_txt,
      x_cs2_frgn_postal_code_txt,
      x_cs2_frgn_tel_num_prefix_txt,
      x_cs2_gross_annual_sal_num,
      x_cs2_mthl_auto_pay_txt,
      x_cs2_mthl_cc_pay_txt,
      x_cs2_mthl_edu_loan_pay_txt,
      x_cs2_mthl_housing_pay_txt,
      x_cs2_mthl_other_pay_txt,
      x_cs2_other_income_amt,
      x_cs2_rel_to_student_flag,
      x_cs2_suffix_txt,
      x_cs2_years_at_address_txt
    );
Line: 1835

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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: 1851

    DELETE FROM igf_sl_alt_borw_all
    WHERE rowid = x_rowid;
Line: 1858

  END delete_row;