DBA Data[Home] [Help]

APPS.IGS_HE_POOUS_ALL_PKG SQL Statements

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

Line: 49

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_funding_source                    IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-2002
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || sbaliga        27-Mar-2002     Renamed column fte_pc_override as fte_itensity
  ||                                and added 3 new parameters x_fte_calc_type,x_teach_period_start_dt
  ||                                and x_teach_period_end_dt  as part of #2278825
  ||  (reverse chronological order - newest change first)
  || smaddali 20-aug-03   Added new field funding_source for hefd208 bug#2717751
  || jchakrab      15-Sep-2004      Added 4 new columns - CREDIT_VALUE_YOP3, LEVEL_CREDIT3,
  ||                                CREDIT_VALUE_YOP4 and LEVEL_CREDIT4 as part of HEFD350
  ||
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_HE_POOUS_ALL
      WHERE    rowid = x_rowid;
Line: 84

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 141

    new_references.last_updated_by                   := x_last_updated_by;
Line: 142

    new_references.last_update_login                 := x_last_update_login;
Line: 200

      SELECT 'X'
      FROM   IGS_PS_OFR_OPT_UNIT_SET_V
      WHERE  COURSE_CD = cp_course_cd
      AND    CRV_VERSION_NUMBER = cp_crv_version_number
      AND    CAL_TYPE = cp_cal_type
      AND    LOCATION_CD = cp_location_cd
      AND    ATTENDANCE_MODE = cp_attendance_mode
      AND    ATTENDANCE_TYPE = cp_attendance_type
      AND    UNIT_SET_CD = cp_unit_set_cd
      AND    US_VERSION_NUMBER = cp_us_version_number;
Line: 237

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

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

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

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

      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE    hesa_poous_id = x_hesa_poous_id
      FOR UPDATE NOWAIT;
Line: 344

      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE    course_cd = x_course_cd
      AND      crv_version_number = x_crv_version_number
      AND      cal_type = x_cal_type
      AND      location_cd = x_location_cd
      AND      attendance_mode = x_attendance_mode
      AND      attendance_type = x_attendance_type
      AND      unit_set_cd = x_unit_set_cd
      AND      us_version_number = x_us_version_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 391

      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE   ((attendance_mode = x_attendance_mode) AND
               (attendance_type = x_attendance_type) AND
               (cal_type = x_cal_type) AND
               (course_cd = x_course_cd) AND
               (crv_version_number = x_version_number) AND
               (location_cd = x_location_cd));
Line: 432

      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE   ((unit_set_cd = x_unit_set_cd) AND
               (us_version_number = x_version_number));
Line: 472

      SELECT   rowid
      FROM     IGS_HE_POOUS_ALL
      WHERE    COURSE_CD = x_course_cd
      AND      CRV_VERSION_NUMBER = x_version_number
      AND      CAL_TYPE = x_cal_type
      AND      UNIT_SET_CD = x_unit_set_cd
      AND      US_VERSION_NUMBER = x_us_version_number ;
Line: 505

    SELECT 'X' FROM igs_en_stdnt_ps_att
    WHERE course_cd =   cp_course_cd
      AND version_number = cp_version
      AND cal_type       = cp_cal_type
      AND location_cd    = cp_location_cd
      AND attendance_mode = cp_attendance_mode
      AND attendance_type =cp_attendance_type;
Line: 575

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_funding_source                    IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-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
  || pmarada    20-may-2003     While delete a record checking whether any student program
  ||                            attempt exist as per the bug 2932025.
  || sbaliga    27-Mar-2002     Renamed column fte_pc_override as fte_itensity
  ||                            and added 3 new parameters x_fte_calc_type,x_teach_period_start_dt
  ||                            and x_teach_period_end_dt  as part of #2278825
  ||  (reverse chronological order - newest change first)
  || smaddali 20-aug-03   Added new field funding_source for hefd208 bug#2717751
  || jchakrab  15-Sep-2004      Added 4 new columns - CREDIT_VALUE_YOP3, LEVEL_CREDIT3,
  ||                            CREDIT_VALUE_YOP4 and LEVEL_CREDIT4 as part of HEFD350
  ||
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_hesa_poous_id,
      x_org_id,
      x_course_cd,
      x_crv_version_number,
      x_cal_type,
      x_location_cd,
      x_attendance_mode,
      x_attendance_type,
      x_unit_set_cd,
      x_us_version_number,
      x_location_of_study,
      x_mode_of_study,
      x_ufi_place,
      x_franchising_activity,
      x_type_of_year,
      x_leng_current_year,
      x_grading_schema_cd,
      x_gs_version_number,
      x_credit_value_yop1,
      x_level_credit1,
      x_credit_value_yop2,
      x_level_credit2,
      x_credit_value_yop3,
      x_level_credit3,
      x_credit_value_yop4,
      x_level_credit4,
      x_fte_intensity,
      x_fte_calc_type,
      x_teach_period_start_dt,
      x_teach_period_end_dt,
      x_other_instit_teach1,
      x_other_instit_teach2,
      x_prop_not_taught,
      x_fundability_cd,
      x_fee_band,
      x_level_applicable_to_funding,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_funding_source
    );
Line: 648

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

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

    ELSIF (p_action = 'DELETE') THEN
       check_spa_exists;
Line: 667

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
        check_spa_exists;
Line: 687

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_hesa_poous_id                     IN OUT NOCOPY NUMBER,
    x_org_id                            IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_crv_version_number                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_location_cd                       IN     VARCHAR2,
    x_attendance_mode                   IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_location_of_study                 IN     VARCHAR2,
    x_mode_of_study                     IN     VARCHAR2,
    x_ufi_place                         IN     VARCHAR2,
    x_franchising_activity              IN     VARCHAR2,
    x_type_of_year                      IN     VARCHAR2,
    x_leng_current_year                 IN     NUMBER,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_gs_version_number                 IN     NUMBER,
    x_credit_value_yop1                 IN     NUMBER,
    x_level_credit1                     IN     VARCHAR2,
    x_credit_value_yop2                 IN     NUMBER,
    x_level_credit2                     IN     VARCHAR2,
    x_credit_value_yop3                 IN     NUMBER,
    x_level_credit3                     IN     VARCHAR2,
    x_credit_value_yop4                 IN     NUMBER,
    x_level_credit4                     IN     VARCHAR2,
    x_fte_intensity                     IN     NUMBER   ,
    x_fte_calc_type                     IN     VARCHAR2    ,
    x_teach_period_start_dt             IN     DATE        ,
    x_teach_period_end_dt               IN      DATE      ,
    x_other_instit_teach1               IN     VARCHAR2,
    x_other_instit_teach2               IN     VARCHAR2,
    x_prop_not_taught                   IN     NUMBER,
    x_fundability_cd                    IN     VARCHAR2,
    x_fee_band                          IN     VARCHAR2,
    x_level_applicable_to_funding       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_funding_source                    IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-2002
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || sbaliga          27-Mar-2002     Renamed column fte_pc_override as fte_intensity
  ||                                  and added 3 new parameters x_fte_calc_type,x_teach_period_start_dt
  ||                                  and x_teach_period_end_dt as part of #2278825
  ||  smvk            13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||                                  w.r.t. SWCR006
  ||  (reverse chronological order - newest change first)
  || smaddali 20-aug-03   Added new field funding_source for hefd208 bug#2717751
  || jchakrab         15-Sep-2004     Added 4 new columns - CREDIT_VALUE_YOP3, LEVEL_CREDIT3,
  ||                                  CREDIT_VALUE_YOP4 and LEVEL_CREDIT4 as part of HEFD350
  ||
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE    hesa_poous_id                     = x_hesa_poous_id;
Line: 751

    x_last_update_date           DATE;
Line: 752

    x_last_updated_by            NUMBER;
Line: 753

    x_last_update_login          NUMBER;
Line: 757

    x_last_update_date := SYSDATE;
Line: 759

      x_last_updated_by := 1;
Line: 760

      x_last_update_login := 0;
Line: 762

      x_last_updated_by := fnd_global.user_id;
Line: 763

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

      x_last_update_login := fnd_global.login_id;
Line: 767

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

    SELECT    igs_he_poous_all_s.NEXTVAL
    INTO      x_hesa_poous_id
    FROM      dual;
Line: 781

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_hesa_poous_id                     => x_hesa_poous_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_course_cd                         => x_course_cd,
      x_crv_version_number                => x_crv_version_number,
      x_cal_type                          => x_cal_type,
      x_location_cd                       => x_location_cd,
      x_attendance_mode                   => x_attendance_mode,
      x_attendance_type                   => x_attendance_type,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_location_of_study                 => x_location_of_study,
      x_mode_of_study                     => x_mode_of_study,
      x_ufi_place                         => x_ufi_place,
      x_franchising_activity              => x_franchising_activity,
      x_type_of_year                      => x_type_of_year,
      x_leng_current_year                 => x_leng_current_year,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_gs_version_number                 => x_gs_version_number,
      x_credit_value_yop1                 => x_credit_value_yop1,
      x_level_credit1                     => x_level_credit1,
      x_credit_value_yop2                 => x_credit_value_yop2,
      x_level_credit2                     => x_level_credit2,
      x_credit_value_yop3                 => x_credit_value_yop3,
      x_level_credit3                     => x_level_credit3,
      x_credit_value_yop4                 => x_credit_value_yop4,
      x_level_credit4                     => x_level_credit4,
      x_fte_intensity                     => x_fte_intensity,
      x_fte_calc_type                     => x_fte_calc_type,
      x_teach_period_start_dt             => x_teach_period_start_dt,
      x_teach_period_end_dt               => x_teach_period_end_dt,
      x_other_instit_teach1               => x_other_instit_teach1,
      x_other_instit_teach2               => x_other_instit_teach2,
      x_prop_not_taught                   => x_prop_not_taught,
      x_fundability_cd                    => x_fundability_cd,
      x_fee_band                          => x_fee_band,
      x_level_applicable_to_funding       => x_level_applicable_to_funding,
      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_funding_source                    => x_funding_source
    );
Line: 827

    INSERT INTO igs_he_poous_all (
      hesa_poous_id,
      org_id,
      course_cd,
      crv_version_number,
      cal_type,
      location_cd,
      attendance_mode,
      attendance_type,
      unit_set_cd,
      us_version_number,
      location_of_study,
      mode_of_study,
      ufi_place,
      franchising_activity,
      type_of_year,
      leng_current_year,
      grading_schema_cd,
      gs_version_number,
      credit_value_yop1,
      level_credit1,
      credit_value_yop2,
      level_credit2,
      credit_value_yop3,
      level_credit3,
      credit_value_yop4,
      level_credit4,
      fte_intensity,
      fte_calc_type,
      teach_period_start_dt,
      teach_period_end_dt,
      other_instit_teach1,
      other_instit_teach2,
      prop_not_taught,
      fundability_cd,
      fee_band,
      level_applicable_to_funding,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      funding_source
    ) VALUES (
      new_references.hesa_poous_id,
      new_references.org_id,
      new_references.course_cd,
      new_references.crv_version_number,
      new_references.cal_type,
      new_references.location_cd,
      new_references.attendance_mode,
      new_references.attendance_type,
      new_references.unit_set_cd,
      new_references.us_version_number,
      new_references.location_of_study,
      new_references.mode_of_study,
      new_references.ufi_place,
      new_references.franchising_activity,
      new_references.type_of_year,
      new_references.leng_current_year,
      new_references.grading_schema_cd,
      new_references.gs_version_number,
      new_references.credit_value_yop1,
      new_references.level_credit1,
      new_references.credit_value_yop2,
      new_references.level_credit2,
      new_references.credit_value_yop3,
      new_references.level_credit3,
      new_references.credit_value_yop4,
      new_references.level_credit4,
      new_references.fte_intensity,
      new_references.fte_calc_type,
      new_references.teach_period_start_dt,
      new_references.teach_period_end_dt,
      new_references.other_instit_teach1,
      new_references.other_instit_teach2,
      new_references.prop_not_taught,
      new_references.fundability_cd,
      new_references.fee_band,
      new_references.level_applicable_to_funding,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.funding_source
    );
Line: 923

  END insert_row;
Line: 986

      SELECT
        course_cd,
        crv_version_number,
        cal_type,
        location_cd,
        attendance_mode,
        attendance_type,
        unit_set_cd,
        us_version_number,
        location_of_study,
        mode_of_study,
        ufi_place,
        franchising_activity,
        type_of_year,
        leng_current_year,
        grading_schema_cd,
        gs_version_number,
        credit_value_yop1,
        level_credit1,
        credit_value_yop2,
        level_credit2,
        credit_value_yop3,
        level_credit3,
        credit_value_yop4,
        level_credit4,
        fte_intensity,
        fte_calc_type,
        teach_period_start_dt,
        teach_period_end_dt,
        other_instit_teach1,
        other_instit_teach2,
        prop_not_taught,
        fundability_cd,
        fee_band,
        level_applicable_to_funding,
        funding_source
      FROM  igs_he_poous_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 1033

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_hesa_poous_id                     IN     NUMBER,
    x_org_id                            IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_crv_version_number                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_location_cd                       IN     VARCHAR2,
    x_attendance_mode                   IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_location_of_study                 IN     VARCHAR2,
    x_mode_of_study                     IN     VARCHAR2,
    x_ufi_place                         IN     VARCHAR2,
    x_franchising_activity              IN     VARCHAR2,
    x_type_of_year                      IN     VARCHAR2,
    x_leng_current_year                 IN     NUMBER,
    x_grading_schema_cd                 IN     VARCHAR2,
    x_gs_version_number                 IN     NUMBER,
    x_credit_value_yop1                 IN     NUMBER,
    x_level_credit1                     IN     VARCHAR2,
    x_credit_value_yop2                 IN     NUMBER,
    x_level_credit2                     IN     VARCHAR2,
    x_credit_value_yop3                 IN     NUMBER,
    x_level_credit3                     IN     VARCHAR2,
    x_credit_value_yop4                 IN     NUMBER,
    x_level_credit4                     IN     VARCHAR2,
    x_fte_intensity                     IN     NUMBER   ,
    x_fte_calc_type                     IN     VARCHAR2    ,
    x_teach_period_start_dt             IN     DATE        ,
    x_teach_period_end_dt               IN     DATE      ,
    x_other_instit_teach1               IN     VARCHAR2,
    x_other_instit_teach2               IN     VARCHAR2,
    x_prop_not_taught                   IN     NUMBER,
    x_fundability_cd                    IN     VARCHAR2,
    x_fee_band                          IN     VARCHAR2,
    x_level_applicable_to_funding       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_funding_source                    IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-2002
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || sbaliga        27-Mar-2002     Renamed column fte_pc_override as fte_intensity
  ||                                  and added 3 new parameters x_fte_calc_type,x_teach_period_start_dt
  ||                                  and x_teach_period_end_dt as part of #2278825
  ||  (reverse chronological order - newest change first)
  || smaddali 20-aug-03   Added new field funding_source for hefd208 bug#2717751
  || jchakrab         15-Sep-2004     Added 4 new columns - CREDIT_VALUE_YOP3, LEVEL_CREDIT3,
  ||                                  CREDIT_VALUE_YOP4 and LEVEL_CREDIT4 as part of HEFD350
  ||
  */
    x_last_update_date           DATE ;
Line: 1148

    x_last_updated_by            NUMBER;
Line: 1149

    x_last_update_login          NUMBER;
Line: 1153

    x_last_update_date := SYSDATE;
Line: 1155

      x_last_updated_by := 1;
Line: 1156

      x_last_update_login := 0;
Line: 1158

      x_last_updated_by := fnd_global.user_id;
Line: 1159

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

      x_last_update_login := fnd_global.login_id;
Line: 1163

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_hesa_poous_id                     => x_hesa_poous_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_course_cd                         => x_course_cd,
      x_crv_version_number                => x_crv_version_number,
      x_cal_type                          => x_cal_type,
      x_location_cd                       => x_location_cd,
      x_attendance_mode                   => x_attendance_mode,
      x_attendance_type                   => x_attendance_type,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_location_of_study                 => x_location_of_study,
      x_mode_of_study                     => x_mode_of_study,
      x_ufi_place                         => x_ufi_place,
      x_franchising_activity              => x_franchising_activity,
      x_type_of_year                      => x_type_of_year,
      x_leng_current_year                 => x_leng_current_year,
      x_grading_schema_cd                 => x_grading_schema_cd,
      x_gs_version_number                 => x_gs_version_number,
      x_credit_value_yop1                 => x_credit_value_yop1,
      x_level_credit1                     => x_level_credit1,
      x_credit_value_yop2                 => x_credit_value_yop2,
      x_level_credit2                     => x_level_credit2,
      x_credit_value_yop3                 => x_credit_value_yop3,
      x_level_credit3                     => x_level_credit3,
      x_credit_value_yop4                 => x_credit_value_yop4,
      x_level_credit4                     => x_level_credit4,
      x_fte_intensity                     => x_fte_intensity,
      x_fte_calc_type                     => x_fte_calc_type,
      x_teach_period_start_dt             => x_teach_period_start_dt,
      x_teach_period_end_dt              => x_teach_period_end_dt,
      x_other_instit_teach1               => x_other_instit_teach1,
      x_other_instit_teach2               => x_other_instit_teach2,
      x_prop_not_taught                   => x_prop_not_taught,
      x_fundability_cd                    => x_fundability_cd,
      x_fee_band                          => x_fee_band,
      x_level_applicable_to_funding       => x_level_applicable_to_funding,
      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_funding_source                    => x_funding_source
    );
Line: 1219

    UPDATE igs_he_poous_all
      SET
        course_cd                         = new_references.course_cd,
        crv_version_number                = new_references.crv_version_number,
        cal_type                          = new_references.cal_type,
        location_cd                       = new_references.location_cd,
        attendance_mode                   = new_references.attendance_mode,
        attendance_type                   = new_references.attendance_type,
        unit_set_cd                       = new_references.unit_set_cd,
        us_version_number                 = new_references.us_version_number,
        location_of_study                 = new_references.location_of_study,
        mode_of_study                     = new_references.mode_of_study,
        ufi_place                         = new_references.ufi_place,
        franchising_activity              = new_references.franchising_activity,
        type_of_year                      = new_references.type_of_year,
        leng_current_year                 = new_references.leng_current_year,
        grading_schema_cd                 = new_references.grading_schema_cd,
        gs_version_number                 = new_references.gs_version_number,
        credit_value_yop1                 = new_references.credit_value_yop1,
        level_credit1                     = new_references.level_credit1,
        credit_value_yop2                 = new_references.credit_value_yop2,
        level_credit2                     = new_references.level_credit2,
        credit_value_yop3                 = new_references.credit_value_yop3,
        level_credit3                     = new_references.level_credit3,
        credit_value_yop4                 = new_references.credit_value_yop4,
        level_credit4                     = new_references.level_credit4,
        fte_intensity                     = new_references.fte_intensity,
        fte_calc_type                     = new_references.fte_calc_type,
        teach_period_start_dt             = new_references.teach_period_start_dt,
        teach_period_end_dt               = new_references.teach_period_end_dt,
        other_instit_teach1               = new_references.other_instit_teach1,
        other_instit_teach2               = new_references.other_instit_teach2,
        prop_not_taught                   = new_references.prop_not_taught,
        fundability_cd                    = new_references.fundability_cd,
        fee_band                          = new_references.fee_band,
        level_applicable_to_funding       = new_references.level_applicable_to_funding,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        funding_source                    = x_funding_source
      WHERE rowid = x_rowid;
Line: 1265

  END update_row;
Line: 1312

  ||  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
  || sbaliga         27-Mar-2002     Renamed column fte_pc_override as fte_intensity
  ||                                  and added 3 new parameters x_fte_calc_type,x_teach_period_start_dt
  ||                                  and x_teach_period_end_dt as part of #2278825
  ||  (reverse chronological order - newest change first)
  || smaddali 20-aug-03   Added new field funding_source for hefd208 bug#2717751
  || jchakrab        15-Sep-2004     Added 4 new columns - CREDIT_VALUE_YOP3, LEVEL_CREDIT3,
  ||                                 CREDIT_VALUE_YOP4 and LEVEL_CREDIT4 as part of HEFD350
  ||
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_he_poous_all
      WHERE    hesa_poous_id                     = x_hesa_poous_id;
Line: 1337

      insert_row (
        x_rowid,
        x_hesa_poous_id,
        x_org_id,
        x_course_cd,
        x_crv_version_number,
        x_cal_type,
        x_location_cd,
        x_attendance_mode,
        x_attendance_type,
        x_unit_set_cd,
        x_us_version_number,
        x_location_of_study,
        x_mode_of_study,
        x_ufi_place,
        x_franchising_activity,
        x_type_of_year,
        x_leng_current_year,
        x_grading_schema_cd,
        x_gs_version_number,
        x_credit_value_yop1,
        x_level_credit1,
        x_credit_value_yop2,
        x_level_credit2,
        x_credit_value_yop3,
        x_level_credit3,
        x_credit_value_yop4,
        x_level_credit4,
        x_fte_intensity,
        x_fte_calc_type,
        x_teach_period_start_dt,
        x_teach_period_end_dt,
        x_other_instit_teach1,
        x_other_instit_teach2,
        x_prop_not_taught,
        x_fundability_cd,
        x_fee_band,
        x_level_applicable_to_funding,
        x_mode,
        x_funding_source
      );
Line: 1382

    update_row (
      x_rowid,
      x_hesa_poous_id,
      x_org_id,
      x_course_cd,
      x_crv_version_number,
      x_cal_type,
      x_location_cd,
      x_attendance_mode,
      x_attendance_type,
      x_unit_set_cd,
      x_us_version_number,
      x_location_of_study,
      x_mode_of_study,
      x_ufi_place,
      x_franchising_activity,
      x_type_of_year,
      x_leng_current_year,
      x_grading_schema_cd,
      x_gs_version_number,
      x_credit_value_yop1,
      x_level_credit1,
      x_credit_value_yop2,
      x_level_credit2,
      x_credit_value_yop3,
      x_level_credit3,
      x_credit_value_yop4,
      x_level_credit4,
      x_fte_intensity,
      x_fte_calc_type,
      x_teach_period_start_dt,
      x_teach_period_end_dt,
      x_other_instit_teach1,
      x_other_instit_teach2,
      x_prop_not_taught,
      x_fundability_cd,
      x_fee_band,
      x_level_applicable_to_funding,
      x_mode,
      x_funding_source
    );
Line: 1427

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-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: 1446

    DELETE FROM igs_he_poous_all
    WHERE rowid = x_rowid;
Line: 1453

  END delete_row;