DBA Data[Home] [Help]

APPS.IGF_GR_PELL_SETUP_PKG SQL Statements

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

Line: 33

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER  ,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER  ,
    x_payment_periods_num               IN     NUMBER  ,
    x_enr_before_ts_code                IN     VARCHAR2,
    x_enr_in_mt_code                    IN     VARCHAR2,
    x_enr_after_tc_code                 IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_response_option_code              IN     VARCHAR2,
    x_term_start_offset_num             IN     NUMBER

  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 04-JAN-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_GR_PELL_SETUP_ALL
      WHERE    rowid = x_rowid;
Line: 70

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 120

    new_references.last_updated_by                   := x_last_updated_by;
Line: 121

    new_references.last_update_login                 := x_last_update_login;
Line: 134

  ||  ugummall        24-NOV-2003     Bug 3252832. FA 131 - COD Updates
  ||                                  Added two new params in cal to get_uk2_for_validation.
  ||  (reverse chronological order - newest change first)
  */
  BEGIN
    IF ( get_uk2_for_validation (
           new_references.ci_cal_type,
           new_references.ci_sequence_number,
           new_references.rep_pell_id,
           new_references.course_cd,
           new_references.version_number,
           new_references.rep_entity_id_txt
         )
       ) THEN
      fnd_message.set_name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
Line: 164

  ||  ugummall        24-NOV-2003     Bug 3252832. FA 131 - COD Updates
  ||                                  Added code to check for parent in IGS_PS_VER_ALL table.
  ||  (reverse chronological order - newest change first)
  */
  BEGIN



    IF (((old_references.rep_pell_id = new_references.rep_pell_id)) OR
        ((new_references.rep_pell_id IS NULL))) THEN
      NULL;
Line: 186

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

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

      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE    pell_seq_id = x_pell_seq_id
      FOR UPDATE NOWAIT;
Line: 260

  ||  ugummall        24-NOV-2003     Bug 3252832. FA 131 - COD Updates
  ||                                  1. Added two new params x_course_cd and x_version_number
  ||  (reverse chronological order - newest change first)
  */
    CURSOR cur_rowid IS
      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE    ci_cal_type = x_ci_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid))
      AND      NVL(rep_pell_id,-1) = NVL(x_rep_pell_id,-1)
      AND      NVL(rep_entity_id_txt,-1) = NVL(x_rep_entity_id_txt,-1)
      AND      NVL(course_cd,':*:') = NVL(x_course_cd,':*:')
      AND      NVL(version_number,-1) = NVL(x_version_number,-1);
Line: 305

      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE   ((ci_cal_type = x_cal_type) AND
               (ci_sequence_number = x_sequence_number));
Line: 341

      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE   ((course_cd = x_course_cd) AND
               (version_number = x_version_number));
Line: 376

      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE    rep_pell_id = x_rep_pell_cd ;
Line: 410

      SELECT   rowid
      FROM     igf_gr_pell_setup_all
      WHERE   rep_entity_id_txt = x_rep_entity_id_txt;
Line: 450

      SELECT   COUNT(*) num_of_rec
      FROM     igf_gr_pell_setup_all
      WHERE    REP_PELL_ID =  p_rep_pell_id
        AND    CI_CAL_TYPE = p_ci_cal_type
        AND    CI_SEQUENCE_NUMBER =  p_ci_sequence_number;
Line: 468

     fnd_message.set_name ('IGS', 'IGS_SS_INQ_DELETE_RECORD_INSTR');
Line: 501

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER  ,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER  ,
    x_payment_periods_num               IN     NUMBER  ,
    x_enr_before_ts_code                IN     VARCHAR2,
    x_enr_in_mt_code                    IN     VARCHAR2,
    x_enr_after_tc_code                 IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_response_option_code              IN     VARCHAR2,
    x_term_start_offset_num             IN     NUMBER

  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 04-JAN-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_pell_seq_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_rep_pell_id,
      x_pell_profile,
      x_branch_campus,
      x_attend_campus_id,
      x_use_census_dts,
      x_funding_method,
      x_inst_cross_ref_code,
      x_low_tution_fee,
      x_academic_cal,
      x_payment_method,
      x_wk_inst_time_calc_pymt,
      x_wk_int_time_prg_def_yr,
      x_cr_clk_hrs_prds_sch_yr,
      x_cr_clk_hrs_acad_yr,
      x_alt_coa_limit,
      x_efc_max,
      x_pell_alt_exp_max,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_course_cd,
      x_version_number,
      x_payment_periods_num,
      x_enr_before_ts_code,
      x_enr_in_mt_code,
      x_enr_after_tc_code,
      x_rep_entity_id_txt,
      x_response_option_code,
      x_term_start_offset_num
    );
Line: 566

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
    -- Call all the procedures related to Before delete.
    -- Checks for existence of child record
    -- If child record present Then it raises exception
      check_child(x_rep_pell_id,x_ci_cal_type,x_ci_sequence_number);
Line: 587

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_pell_seq_id                       IN OUT NOCOPY NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_rep_pell_id                       IN     VARCHAR2,
    x_pell_profile                      IN     VARCHAR2,
    x_branch_campus                     IN     VARCHAR2,
    x_attend_campus_id                  IN     VARCHAR2,
    x_use_census_dts                    IN     VARCHAR2,
    x_funding_method                    IN     VARCHAR2,
    x_inst_cross_ref_code               IN     VARCHAR2,
    x_low_tution_fee                    IN     VARCHAR2,
    x_academic_cal                      IN     VARCHAR2,
    x_payment_method                    IN     VARCHAR2,
    x_wk_inst_time_calc_pymt            IN     NUMBER,
    x_wk_int_time_prg_def_yr            IN     NUMBER,
    x_cr_clk_hrs_prds_sch_yr            IN     NUMBER,
    x_cr_clk_hrs_acad_yr                IN     NUMBER,
    x_alt_coa_limit                     IN     NUMBER,
    x_efc_max                           IN     NUMBER,
    x_pell_alt_exp_max                  IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER  ,
    x_payment_periods_num               IN     NUMBER  ,
    x_enr_before_ts_code                IN     VARCHAR2,
    x_enr_in_mt_code                    IN     VARCHAR2,
    x_enr_after_tc_code                 IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_response_option_code              IN     VARCHAR2,
    x_term_start_offset_num             IN     NUMBER

  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 04-JAN-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_gr_pell_setup_all
      WHERE    pell_seq_id                       = x_pell_seq_id;
Line: 654

    x_last_update_date           DATE;
Line: 655

    x_last_updated_by            NUMBER;
Line: 656

    x_last_update_login          NUMBER;
Line: 663

    x_last_update_date := SYSDATE;
Line: 665

      x_last_updated_by := 1;
Line: 666

      x_last_update_login := 0;
Line: 668

      x_last_updated_by := fnd_global.user_id;
Line: 669

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

      x_last_update_login := fnd_global.login_id;
Line: 673

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

		SELECT igf_gr_pell_setup_s.nextval INTO x_pell_seq_id FROM dual;
Line: 684

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_pell_seq_id                       => x_pell_seq_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_rep_pell_id                       => x_rep_pell_id,
      x_pell_profile                      => x_pell_profile,
      x_branch_campus                     => x_branch_campus,
      x_attend_campus_id                  => x_attend_campus_id,
      x_use_census_dts                    => x_use_census_dts,
      x_funding_method                    => x_funding_method,
      x_inst_cross_ref_code               => x_inst_cross_ref_code,
      x_low_tution_fee                    => x_low_tution_fee,
      x_academic_cal                      => x_academic_cal,
      x_payment_method                    => x_payment_method,
      x_wk_inst_time_calc_pymt            => x_wk_inst_time_calc_pymt,
      x_wk_int_time_prg_def_yr            => x_wk_int_time_prg_def_yr,
      x_cr_clk_hrs_prds_sch_yr            => x_cr_clk_hrs_prds_sch_yr,
      x_cr_clk_hrs_acad_yr                => x_cr_clk_hrs_acad_yr,
      x_alt_coa_limit                     => x_alt_coa_limit,
      x_efc_max                           => x_efc_max,
      x_pell_alt_exp_max                  => x_pell_alt_exp_max,
      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_course_cd                         => x_course_cd,
      x_version_number                    => x_version_number,
      x_payment_periods_num               => x_payment_periods_num,
      x_enr_before_ts_code                => x_enr_before_ts_code,
      x_enr_in_mt_code                    => x_enr_in_mt_code,
      x_enr_after_tc_code                 => x_enr_after_tc_code,
      x_rep_entity_id_txt                 => x_rep_entity_id_txt,
      x_response_option_code              => x_response_option_code,
      x_term_start_offset_num             => x_term_start_offset_num

    );
Line: 723

    INSERT INTO igf_gr_pell_setup_all (
      pell_seq_id,
      ci_cal_type,
      ci_sequence_number,
      rep_pell_id,
      branch_campus,
      attend_campus_id,
      funding_method,
      inst_cross_ref_code,
      academic_cal,
      payment_method,
      wk_inst_time_calc_pymt,
      wk_int_time_prg_def_yr,
      cr_clk_hrs_prds_sch_yr,
      cr_clk_hrs_acad_yr,
      alt_coa_limit,
      efc_max,
      pell_alt_exp_max,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      org_id,
      course_cd,
      version_number,
      payment_periods_num,
      enr_before_ts_code,
      enr_in_mt_code,
      enr_after_tc_code,
      rep_entity_id_txt,
      response_option_code,
      term_start_offset_num

    ) VALUES (
      new_references.pell_seq_id,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.rep_pell_id,
      new_references.branch_campus,
      new_references.attend_campus_id,
      new_references.funding_method,
      new_references.inst_cross_ref_code,
      new_references.academic_cal,
      new_references.payment_method,
      new_references.wk_inst_time_calc_pymt,
      new_references.wk_int_time_prg_def_yr,
      new_references.cr_clk_hrs_prds_sch_yr,
      new_references.cr_clk_hrs_acad_yr,
      new_references.alt_coa_limit,
      new_references.efc_max,
      new_references.pell_alt_exp_max ,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      l_org_id,
      new_references.course_cd,
      new_references.version_number,
      new_references.payment_periods_num,
      new_references.enr_before_ts_code,
      new_references.enr_in_mt_code,
      new_references.enr_after_tc_code,
      new_references.rep_entity_id_txt,
      new_references.response_option_code,
      new_references.term_start_offset_num

    );
Line: 801

  END insert_row;
Line: 847

      SELECT
        ci_cal_type,
        ci_sequence_number,
        rep_pell_id,
        branch_campus,
        attend_campus_id,
        funding_method,
        inst_cross_ref_code,
        academic_cal,
        payment_method,
        wk_inst_time_calc_pymt,
        wk_int_time_prg_def_yr,
        cr_clk_hrs_prds_sch_yr,
        cr_clk_hrs_acad_yr,
        alt_coa_limit,
	      efc_max,
	      pell_alt_exp_max,
        course_cd,
        version_number,
        payment_periods_num,
        enr_before_ts_code,
        enr_in_mt_code,
        enr_after_tc_code,
        rep_entity_id_txt,
        response_option_code,
	term_start_offset_num

      FROM  igf_gr_pell_setup_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 885

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_pell_seq_id                       IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_rep_pell_id                       IN     VARCHAR2,
    x_pell_profile                      IN     VARCHAR2,
    x_branch_campus                     IN     VARCHAR2,
    x_attend_campus_id                  IN     VARCHAR2,
    x_use_census_dts                    IN     VARCHAR2,
    x_funding_method                    IN     VARCHAR2,
    x_inst_cross_ref_code               IN     VARCHAR2,
    x_low_tution_fee                    IN     VARCHAR2,
    x_academic_cal                      IN     VARCHAR2,
    x_payment_method                    IN     VARCHAR2,
    x_wk_inst_time_calc_pymt            IN     NUMBER,
    x_wk_int_time_prg_def_yr            IN     NUMBER,
    x_cr_clk_hrs_prds_sch_yr            IN     NUMBER,
    x_cr_clk_hrs_acad_yr                IN     NUMBER,
    x_alt_coa_limit                     IN     NUMBER,
    x_efc_max                           IN     NUMBER,
    x_pell_alt_exp_max                  IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER  ,
    x_payment_periods_num               IN     NUMBER  ,
    x_enr_before_ts_code                IN     VARCHAR2,
    x_enr_in_mt_code                    IN     VARCHAR2,
    x_enr_after_tc_code                 IN     VARCHAR2,
    x_rep_entity_id_txt                 IN     VARCHAR2,
    x_response_option_code              IN     VARCHAR2,
    x_term_start_offset_num             IN     NUMBER

  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 04-JAN-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: 977

    x_last_updated_by            NUMBER;
Line: 978

    x_last_update_login          NUMBER;
Line: 982

    x_last_update_date := SYSDATE;
Line: 984

      x_last_updated_by := 1;
Line: 985

      x_last_update_login := 0;
Line: 987

      x_last_updated_by := fnd_global.user_id;
Line: 988

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

      x_last_update_login := fnd_global.login_id;
Line: 992

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_pell_seq_id                       => x_pell_seq_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_rep_pell_id                       => x_rep_pell_id,
      x_pell_profile                      => x_pell_profile,
      x_branch_campus                     => x_branch_campus,
      x_attend_campus_id                  => x_attend_campus_id,
      x_use_census_dts                    => x_use_census_dts,
      x_funding_method                    => x_funding_method,
      x_inst_cross_ref_code               => x_inst_cross_ref_code,
      x_low_tution_fee                    => x_low_tution_fee,
      x_academic_cal                      => x_academic_cal,
      x_payment_method                    => x_payment_method,
      x_wk_inst_time_calc_pymt            => x_wk_inst_time_calc_pymt,
      x_wk_int_time_prg_def_yr            => x_wk_int_time_prg_def_yr,
      x_cr_clk_hrs_prds_sch_yr            => x_cr_clk_hrs_prds_sch_yr,
      x_cr_clk_hrs_acad_yr                => x_cr_clk_hrs_acad_yr,
      x_alt_coa_limit                     => x_alt_coa_limit,
      x_efc_max                           => x_efc_max ,
      x_pell_alt_exp_max                  => x_pell_alt_exp_max,
      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_course_cd                         => x_course_cd,
      x_version_number                    => x_version_number,
      x_payment_periods_num               => x_payment_periods_num,
      x_enr_before_ts_code                => x_enr_before_ts_code,
      x_enr_in_mt_code                    => x_enr_in_mt_code,
      x_enr_after_tc_code                 => x_enr_after_tc_code,
      x_rep_entity_id_txt                 => x_rep_entity_id_txt,
      x_response_option_code              => x_response_option_code,
      x_term_start_offset_num             => x_term_start_offset_num

    );
Line: 1041

    UPDATE igf_gr_pell_setup_all
      SET
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        rep_pell_id                       = new_references.rep_pell_id,
        branch_campus                     = new_references.branch_campus,
        attend_campus_id                  = new_references.attend_campus_id,
        funding_method                    = new_references.funding_method,
        inst_cross_ref_code               = new_references.inst_cross_ref_code,
        academic_cal                      = new_references.academic_cal,
        payment_method                    = new_references.payment_method,
        wk_inst_time_calc_pymt            = new_references.wk_inst_time_calc_pymt,
        wk_int_time_prg_def_yr            = new_references.wk_int_time_prg_def_yr,
        cr_clk_hrs_prds_sch_yr            = new_references.cr_clk_hrs_prds_sch_yr,
        cr_clk_hrs_acad_yr                = new_references.cr_clk_hrs_acad_yr,
        alt_coa_limit                     = new_references.alt_coa_limit,
        efc_max                           = new_references.efc_max ,
        pell_alt_exp_max                  = new_references.pell_alt_exp_max ,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        course_cd                         = x_course_cd,
        version_number                    = x_version_number,
        payment_periods_num               = x_payment_periods_num,
        enr_before_ts_code                = x_enr_before_ts_code,
        enr_in_mt_code                    = x_enr_in_mt_code,
        enr_after_tc_code                 = x_enr_after_tc_code,
        rep_entity_id_txt                 = new_references.rep_entity_id_txt,
        response_option_code              = new_references.response_option_code,
	term_start_offset_num             = new_references.term_start_offset_num

      WHERE rowid = x_rowid;
Line: 1078

  END update_row;
Line: 1118

  ||  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_gr_pell_setup_all
      WHERE    pell_seq_id                       = x_pell_seq_id;
Line: 1136

      insert_row (
        x_rowid,
        x_pell_seq_id,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_rep_pell_id,
        x_pell_profile,
        x_branch_campus,
        x_attend_campus_id,
        x_use_census_dts,
        x_funding_method,
        x_inst_cross_ref_code,
        x_low_tution_fee,
        x_academic_cal,
        x_payment_method,
        x_wk_inst_time_calc_pymt,
        x_wk_int_time_prg_def_yr,
        x_cr_clk_hrs_prds_sch_yr,
        x_cr_clk_hrs_acad_yr,
        x_alt_coa_limit,
	x_efc_max,
        x_pell_alt_exp_max,
        x_mode,
        x_course_cd,
        x_version_number,
        x_payment_periods_num,
        x_enr_before_ts_code,
        x_enr_in_mt_code,
        x_enr_after_tc_code,
        x_rep_entity_id_txt,
        x_response_option_code,
        x_term_start_offset_num
      );
Line: 1173

    update_row (
      x_rowid,
      x_pell_seq_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_rep_pell_id,
      x_pell_profile,
      x_branch_campus,
      x_attend_campus_id,
      x_use_census_dts,
      x_funding_method,
      x_inst_cross_ref_code,
      x_low_tution_fee,
      x_academic_cal,
      x_payment_method,
      x_wk_inst_time_calc_pymt,
      x_wk_int_time_prg_def_yr,
      x_cr_clk_hrs_prds_sch_yr,
      x_cr_clk_hrs_acad_yr,
      x_alt_coa_limit,
      x_efc_max,
      x_pell_alt_exp_max,
      x_mode,
      x_course_cd,
      x_version_number,
      x_payment_periods_num,
      x_enr_before_ts_code,
      x_enr_in_mt_code,
      x_enr_after_tc_code,
      x_rep_entity_id_txt,
      x_response_option_code,
      x_term_start_offset_num

    );
Line: 1211

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 04-JAN-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: 1230

    DELETE FROM igf_gr_pell_setup_all
    WHERE rowid = x_rowid;
Line: 1237

  END delete_row;