DBA Data[Home] [Help]

APPS.IGS_PE_HZ_PARTIES_PKG SQL Statements

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

Line: 54

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-AUG-2000
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_PE_HZ_PARTIES
      WHERE    rowid = x_rowid;
Line: 81

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 143

    new_references.last_updated_by                   := x_last_updated_by;
Line: 144

    new_references.last_update_login                 := x_last_update_login;
Line: 162

      SELECT   rowid
      FROM     igs_pe_hz_parties
      WHERE    party_id = x_party_id
      FOR UPDATE NOWAIT;
Line: 197

    SELECT 'X'
    FROM igs_pe_hz_parties
    WHERE oss_org_unit_cd = cp_oss_org_unit_cd;
Line: 232

      SELECT rowid
      FROM   igs_pe_hz_parties
      WHERE  ((sec_school_location_id = x_code_id));
Line: 265

        SELECT   rowid
        FROM     HZ_PARTIES
        WHERE    party_id = x_party_id
        FOR UPDATE NOWAIT;
Line: 290

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

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

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

  ||  pkpatel         11-DEC-2003     Bug 2863933 (Modified the update statement and called it conditionally)
  ||  gmaheswa	      07-01-2003      Bug 3354341 (Loop is kept to make local instituion ind to 'N' for all institutions whose
  ||                                  local instituion indicator is set to 'Y'. This is useful when there is corrupt data i.e
  ||                                  having more than one local instituion.
  */
	e_resource_busy                 EXCEPTION;
Line: 343

	SELECT party_id
	FROM igs_pe_hz_parties
	WHERE oi_local_institution_ind ='Y'
	FOR UPDATE NOWAIT;
Line: 359

		  UPDATE igs_pe_hz_parties
		  SET oi_local_institution_ind = 'N'
		  WHERE party_id = l_inst_rec.party_id;
Line: 419

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-AUG-2000
  ||  Purpose : Initialises the columns, Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before any DML operation.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  kumma           28-JUN-2002     Added validations to make sure that only one
  ||                                  institution should be marked local, 2425349
  || ssawhney                         x_institution_cd changed to x_party_id
  || gmaheswa         15-sep-2003     validation to check only one institution should be
  ||                                  marked as local is deleted in before insert, as it is taken
  ||				      care by other modules,2863933
  ||  (reverse chronological order - newest change first)
  */


  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_party_id,
      x_deceased_ind,
      x_archive_exclusion_ind,
      x_archive_dt,
      x_purge_exclusion_ind,
      x_purge_dt,
      x_oracle_username,
      x_proof_of_ins,
      x_proof_of_immu,
      x_level_of_qual,
      x_military_service_reg,
      x_veteran,
      x_institution_cd,
      x_oi_local_institution_ind,
      x_oi_os_ind,
      x_oi_govt_institution_cd,
      x_oi_inst_control_type,
      x_oi_institution_type,
      x_oi_institution_status,
      x_ou_start_dt,
      x_ou_end_dt,
      x_ou_member_type,
      x_ou_org_status,
      x_ou_org_type,
      x_inst_org_ind,
      x_inst_priority_cd,
      x_inst_eps_code ,
      x_inst_phone_country_code,
      x_inst_phone_area_code,
      x_inst_phone_number,
      x_adv_studies_classes,
      x_honors_classes,
      x_class_size,
      x_sec_school_location_id,
      x_percent_plan_higher_edu,
      x_fund_authorization,
      x_pe_info_verify_time,
      x_birth_city ,
      x_birth_country,
      x_oss_org_unit_cd,
      x_felony_convicted_flag,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 494

    IF (p_action = 'INSERT') THEN

      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.party_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 511

    ELSIF (p_action = 'UPDATE') THEN
       -- validate the local indicator
       -- Bug #3354341:gmaheswa:NVL check is introduced for old_references.oi_local_institution_ind
	   IF new_references.inst_org_ind = 'I' AND
	       (new_references.oi_local_institution_ind = 'Y' AND NVL(old_references.oi_local_institution_ind,'N') = 'N') THEN

           validate_local_ind;
Line: 523

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_party_id                          IN     NUMBER,
    x_deceased_ind                      IN     VARCHAR2,
    x_archive_exclusion_ind             IN     VARCHAR2,
    x_archive_dt                        IN     DATE,
    x_purge_exclusion_ind               IN     VARCHAR2,
    x_purge_dt                          IN     DATE,
    x_oracle_username                   IN     VARCHAR2,
    x_proof_of_ins                      IN     VARCHAR2,
    x_proof_of_immu                     IN     VARCHAR2,
    x_level_of_qual                     IN     NUMBER,
    x_military_service_reg              IN     VARCHAR2,
    x_veteran                           IN     VARCHAR2,
    x_institution_cd                    IN     VARCHAR2,
    x_oi_local_institution_ind          IN     VARCHAR2,
    x_oi_os_ind                         IN     VARCHAR2,
    x_oi_govt_institution_cd            IN     VARCHAR2,
    x_oi_inst_control_type              IN     VARCHAR2,
    x_oi_institution_type               IN     VARCHAR2,
    x_oi_institution_status             IN     VARCHAR2,
    x_ou_start_dt                       IN     DATE,
    x_ou_end_dt                         IN     DATE,
    x_ou_member_type                    IN     VARCHAR2,
    x_ou_org_status                     IN     VARCHAR2,
    x_ou_org_type                       IN     VARCHAR2,
    x_inst_org_ind                      IN     VARCHAR2,
    x_inst_priority_cd                  IN     VARCHAR2    ,
    x_inst_eps_code                     IN     VARCHAR2    ,
    x_inst_phone_country_code           IN     VARCHAR2    ,
    x_inst_phone_area_code              IN     VARCHAR2    ,
    x_inst_phone_number                 IN     VARCHAR2    ,
    x_adv_studies_classes               IN     NUMBER      ,
    x_honors_classes                    IN     NUMBER      ,
    x_class_size                        IN     NUMBER      ,
    x_sec_school_location_id            IN     NUMBER      ,
    x_percent_plan_higher_edu           IN     NUMBER      ,
    x_fund_authorization                IN     VARCHAR2    ,
    x_pe_info_verify_time		IN     DATE     ,
    x_birth_city                        IN     VARCHAR2    ,
    x_birth_country                     IN     VARCHAR2    ,
    x_oss_org_unit_cd			IN     VARCHAR2,
    x_felony_convicted_flag		IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-AUG-2000
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_pe_hz_parties
      WHERE    party_id = x_party_id;
Line: 603

    x_last_update_date           DATE;
Line: 604

    x_last_updated_by            NUMBER;
Line: 605

    x_last_update_login          NUMBER;
Line: 609

    x_program_update_date        DATE;
Line: 613

    x_last_update_date := SYSDATE;
Line: 615

      x_last_updated_by := 1;
Line: 616

      x_last_update_login := 0;
Line: 618

      x_last_updated_by := fnd_global.user_id;
Line: 619

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

      x_last_update_login := fnd_global.login_id;
Line: 623

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

        x_program_update_date    := NULL;
Line: 636

        x_program_update_date    := SYSDATE;
Line: 646

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_party_id                          => x_party_id,
      x_deceased_ind                      => x_deceased_ind,
      x_archive_exclusion_ind             => x_archive_exclusion_ind,
      x_archive_dt                        => x_archive_dt,
      x_purge_exclusion_ind               => x_purge_exclusion_ind,
      x_purge_dt                          => x_purge_dt,
      x_oracle_username                   => x_oracle_username,
      x_proof_of_ins                      => x_proof_of_ins,
      x_proof_of_immu                     => x_proof_of_immu,
      x_level_of_qual                     => x_level_of_qual,
      x_military_service_reg              => x_military_service_reg,
      x_veteran                           => x_veteran,
      x_institution_cd                    => x_institution_cd,
      x_oi_local_institution_ind          => x_oi_local_institution_ind,
      x_oi_os_ind                         => x_oi_os_ind,
      x_oi_govt_institution_cd            => x_oi_govt_institution_cd,
      x_oi_inst_control_type              => x_oi_inst_control_type,
      x_oi_institution_type               => x_oi_institution_type,
      x_oi_institution_status             => x_oi_institution_status,
      x_ou_start_dt                       => x_ou_start_dt,
      x_ou_end_dt                         => x_ou_end_dt,
      x_ou_member_type                    => x_ou_member_type,
      x_ou_org_status                     => x_ou_org_status,
      x_ou_org_type                       => x_ou_org_type,
      x_inst_org_ind                      => x_inst_org_ind,
      x_inst_priority_cd                  => x_inst_priority_cd,
      x_inst_eps_code                     => x_inst_eps_code,
      x_inst_phone_country_code           => x_inst_phone_country_code,
      x_inst_phone_area_code              => x_inst_phone_area_code,
      x_inst_phone_number                 => x_inst_phone_number,
      x_adv_studies_classes               => x_adv_studies_classes,
      x_honors_classes                    => x_honors_classes,
      x_class_size                        => x_class_size,
      x_sec_school_location_id            => x_sec_school_location_id,
      x_percent_plan_higher_edu           => x_percent_plan_higher_edu,
      x_fund_authorization                => x_fund_authorization,
      x_pe_info_verify_time		  =>  x_pe_info_verify_time,
      x_birth_city                        => x_birth_city,
      x_birth_country                     => x_birth_country,
      x_oss_org_unit_cd			  => x_oss_org_unit_cd,
      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_felony_convicted_flag             => x_felony_convicted_flag
    );
Line: 700

 INSERT INTO igs_pe_hz_parties (
      party_id,
      deceased_ind,
      archive_exclusion_ind,
      archive_dt,
      purge_exclusion_ind,
      purge_dt,
      oracle_username,
      proof_of_ins,
      proof_of_immu,
      level_of_qual,
      military_service_reg,
      veteran,
      institution_cd,
      oi_local_institution_ind,
      oi_os_ind,
      oi_govt_institution_cd,
      oi_inst_control_type,
      oi_institution_type,
      oi_institution_status,
      ou_start_dt,
      ou_end_dt,
      ou_member_type,
      ou_org_status,
      ou_org_type,
      inst_org_ind,
      inst_priority_cd,
      inst_eps_code ,
      inst_phone_country_code,
      inst_phone_area_code,
      inst_phone_number,
      adv_studies_classes,
      honors_classes,
      class_size,
      sec_school_location_id,
      percent_plan_higher_edu,
      fund_authorization,
      pe_info_verify_time,
      birth_city   ,
      birth_country,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date ,
      oss_org_unit_cd,
      felony_convicted_flag
    ) VALUES (
      new_references.party_id,
      new_references.deceased_ind,
      new_references.archive_exclusion_ind,
      new_references.archive_dt,
      new_references.purge_exclusion_ind,
      new_references.purge_dt,
      new_references.oracle_username,
      new_references.proof_of_ins,
      new_references.proof_of_immu,
      new_references.level_of_qual,
      new_references.military_service_reg,
      new_references.veteran,
      new_references.institution_cd,
      new_references.oi_local_institution_ind,
      new_references.oi_os_ind,
      new_references.oi_govt_institution_cd,
      new_references.oi_inst_control_type,
      new_references.oi_institution_type,
      new_references.oi_institution_status,
      new_references.ou_start_dt,
      new_references.ou_end_dt,
      new_references.ou_member_type,
      new_references.ou_org_status,
      new_references.ou_org_type,
      new_references.inst_org_ind,
      new_references.inst_priority_cd,
      new_references.inst_eps_code,
      new_references.inst_phone_country_code,
      new_references.inst_phone_area_code,
      new_references.inst_phone_number,
      new_references.adv_studies_classes,
      new_references.honors_classes,
      new_references.class_size,
      new_references.sec_school_location_id,
      new_references.percent_plan_higher_edu,
      new_references.fund_authorization,
      new_references.pe_info_verify_time,
      new_references.birth_city   ,
      new_references.birth_country,
      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.oss_org_unit_cd,
      new_references.felony_convicted_flag
    );
Line: 828

 END insert_row;
Line: 885

      SELECT
        deceased_ind,
        archive_exclusion_ind,
        archive_dt,
        purge_exclusion_ind,
        purge_dt,
        oracle_username,
        proof_of_ins,
        proof_of_immu,
        level_of_qual,
        military_service_reg,
        veteran,
        institution_cd,
        oi_local_institution_ind,
        oi_os_ind,
        oi_govt_institution_cd,
        oi_inst_control_type,
        oi_institution_type,
        oi_institution_status,
        ou_start_dt,
        ou_end_dt,
        ou_member_type,
        ou_org_status,
        ou_org_type,
        inst_org_ind,
        inst_priority_cd,
        inst_eps_code ,
        inst_phone_country_code,
        inst_phone_area_code,
        inst_phone_number,
        adv_studies_classes,
        honors_classes,
        class_size,
        sec_school_location_id,
        percent_plan_higher_edu,
	fund_authorization,
	pe_info_verify_time,
        birth_city    ,
        birth_country,
	oss_org_unit_cd,
        felony_convicted_flag
      FROM  igs_pe_hz_parties
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 937

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_party_id                          IN     NUMBER,
    x_deceased_ind                      IN     VARCHAR2,
    x_archive_exclusion_ind             IN     VARCHAR2,
    x_archive_dt                        IN     DATE,
    x_purge_exclusion_ind               IN     VARCHAR2,
    x_purge_dt                          IN     DATE,
    x_oracle_username                   IN     VARCHAR2,
    x_proof_of_ins                      IN     VARCHAR2,
    x_proof_of_immu                     IN     VARCHAR2,
    x_level_of_qual                     IN     NUMBER,
    x_military_service_reg              IN     VARCHAR2,
    x_veteran                           IN     VARCHAR2,
    x_institution_cd                    IN     VARCHAR2,
    x_oi_local_institution_ind          IN     VARCHAR2,
    x_oi_os_ind                         IN     VARCHAR2,
    x_oi_govt_institution_cd            IN     VARCHAR2,
    x_oi_inst_control_type              IN     VARCHAR2,
    x_oi_institution_type               IN     VARCHAR2,
    x_oi_institution_status             IN     VARCHAR2,
    x_ou_start_dt                       IN     DATE,
    x_ou_end_dt                         IN     DATE,
    x_ou_member_type                    IN     VARCHAR2,
    x_ou_org_status                     IN     VARCHAR2,
    x_ou_org_type                       IN     VARCHAR2,
    x_inst_org_ind                      IN     VARCHAR2,
    x_inst_priority_cd                  IN     VARCHAR2    ,
    x_inst_eps_code                     IN     VARCHAR2    ,
    x_inst_phone_country_code           IN     VARCHAR2    ,
    x_inst_phone_area_code              IN     VARCHAR2    ,
    x_inst_phone_number                 IN     VARCHAR2    ,
    x_adv_studies_classes               IN     NUMBER      ,
    x_honors_classes                    IN     NUMBER      ,
    x_class_size                        IN     NUMBER      ,
    x_sec_school_location_id            IN     NUMBER      ,
    x_percent_plan_higher_edu           IN     NUMBER      ,
    x_fund_authorization                IN     VARCHAR2    ,
    x_pe_info_verify_time               IN     DATE        ,
    x_birth_city                        IN     VARCHAR2    ,
    x_birth_country                     IN     VARCHAR2    ,
    x_oss_org_unit_cd			IN     VARCHAR2,
    x_felony_convicted_flag		IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-AUG-2000
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 1054

    x_last_updated_by            NUMBER;
Line: 1055

    x_last_update_login          NUMBER;
Line: 1059

    x_program_update_date        DATE;
Line: 1063

    x_last_update_date := SYSDATE;
Line: 1065

      x_last_updated_by := 1;
Line: 1066

      x_last_update_login := 0;
Line: 1068

      x_last_updated_by := fnd_global.user_id;
Line: 1069

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

      x_last_update_login := fnd_global.login_id;
Line: 1073

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_party_id                          => x_party_id,
      x_deceased_ind                      => x_deceased_ind,
      x_archive_exclusion_ind             => x_archive_exclusion_ind,
      x_archive_dt                        => x_archive_dt,
      x_purge_exclusion_ind               => x_purge_exclusion_ind,
      x_purge_dt                          => x_purge_dt,
      x_oracle_username                   => x_oracle_username,
      x_proof_of_ins                      => x_proof_of_ins,
      x_proof_of_immu                     => x_proof_of_immu,
      x_level_of_qual                     => x_level_of_qual,
      x_military_service_reg              => x_military_service_reg,
      x_veteran                           => x_veteran,
      x_institution_cd                    => x_institution_cd,
      x_oi_local_institution_ind          => x_oi_local_institution_ind,
      x_oi_os_ind                         => x_oi_os_ind,
      x_oi_govt_institution_cd            => x_oi_govt_institution_cd,
      x_oi_inst_control_type              => x_oi_inst_control_type,
      x_oi_institution_type               => x_oi_institution_type,
      x_oi_institution_status             => x_oi_institution_status,
      x_ou_start_dt                       => x_ou_start_dt,
      x_ou_end_dt                         => x_ou_end_dt,
      x_ou_member_type                    => x_ou_member_type,
      x_ou_org_status                     => x_ou_org_status,
      x_ou_org_type                       => x_ou_org_type,
      x_inst_org_ind                      => x_inst_org_ind,
      x_inst_priority_cd                  => x_inst_priority_cd,
      x_inst_eps_code                     => x_inst_eps_code,
      x_inst_phone_country_code           => x_inst_phone_country_code,
      x_inst_phone_area_code              => x_inst_phone_area_code,
      x_inst_phone_number                 => x_inst_phone_number,
      x_adv_studies_classes               => x_adv_studies_classes,
      x_honors_classes                    => x_honors_classes,
      x_class_size                        => x_class_size,
      x_sec_school_location_id            => x_sec_school_location_id,
      x_percent_plan_higher_edu           => x_percent_plan_higher_edu,
      x_fund_authorization                => x_fund_authorization,
      x_birth_city                        => x_birth_city,
      x_birth_country                     => x_birth_country,
      x_oss_org_unit_cd			  => x_oss_org_unit_cd,
      x_felony_convicted_flag		  => x_felony_convicted_flag,
      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_pe_info_verify_time               => x_pe_info_verify_time
    );
Line: 1141

        x_program_update_date := old_references.program_update_date;
Line: 1143

        x_program_update_date := SYSDATE;
Line: 1150

 UPDATE igs_pe_hz_parties
      SET
        deceased_ind                      = new_references.deceased_ind,
        archive_exclusion_ind             = new_references.archive_exclusion_ind,
        archive_dt                        = new_references.archive_dt,
        purge_exclusion_ind               = new_references.purge_exclusion_ind,
        purge_dt                          = new_references.purge_dt,
        oracle_username                   = new_references.oracle_username,
        proof_of_ins                      = new_references.proof_of_ins,
        proof_of_immu                     = new_references.proof_of_immu,
        level_of_qual                     = new_references.level_of_qual,
        military_service_reg              = new_references.military_service_reg,
        veteran                           = new_references.veteran,
        institution_cd                    = new_references.institution_cd,
        oi_local_institution_ind          = new_references.oi_local_institution_ind,
        oi_os_ind                         = new_references.oi_os_ind,
        oi_govt_institution_cd            = new_references.oi_govt_institution_cd,
        oi_inst_control_type              = new_references.oi_inst_control_type,
        oi_institution_type               = new_references.oi_institution_type,
        oi_institution_status             = new_references.oi_institution_status,
        ou_start_dt                       = new_references.ou_start_dt,
        ou_end_dt                         = new_references.ou_end_dt,
        ou_member_type                    = new_references.ou_member_type,
        ou_org_status                     = new_references.ou_org_status,
        ou_org_type                       = new_references.ou_org_type,
        inst_org_ind                      = new_references.inst_org_ind,
        inst_priority_cd                  = new_references.inst_priority_cd,
        inst_eps_code                     = new_references.inst_eps_code,
        inst_phone_country_code           = new_references.inst_phone_country_code,
        inst_phone_area_code              = new_references.inst_phone_area_code,
        inst_phone_number                 = new_references.inst_phone_number,
        adv_studies_classes               = new_references.adv_studies_classes,
        honors_classes                    = new_references.honors_classes,
        class_size                        = new_references.class_size,
        sec_school_location_id            = new_references.sec_school_location_id,
        percent_plan_higher_edu           = new_references.percent_plan_higher_edu,
        fund_authorization                = new_references.fund_authorization,
    	pe_info_verify_time               = new_references.pe_info_verify_time,
        birth_city                        = new_references.birth_city,
        birth_country                     = new_references.birth_country,
	oss_org_unit_cd			  = new_references.oss_org_unit_cd,
	felony_convicted_flag		  = new_references.felony_convicted_flag,
        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
      WHERE rowid = x_rowid;
Line: 1225

 END update_row;
Line: 1276

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_pe_hz_parties
      WHERE    party_id                          = x_party_id;
Line: 1294

      insert_row (
        x_rowid,
        x_party_id,
        x_deceased_ind,
        x_archive_exclusion_ind,
        x_archive_dt,
        x_purge_exclusion_ind,
        x_purge_dt,
        x_oracle_username,
        x_proof_of_ins,
        x_proof_of_immu,
        x_level_of_qual,
        x_military_service_reg,
        x_veteran,
        x_institution_cd,
        x_oi_local_institution_ind,
        x_oi_os_ind,
        x_oi_govt_institution_cd,
        x_oi_inst_control_type,
        x_oi_institution_type,
        x_oi_institution_status,
        x_ou_start_dt,
        x_ou_end_dt,
        x_ou_member_type,
        x_ou_org_status,
        x_ou_org_type,
        x_inst_org_ind,
        x_inst_priority_cd,
        x_inst_eps_code ,
        x_inst_phone_country_code,
        x_inst_phone_area_code,
        x_inst_phone_number,
        x_adv_studies_classes,
        x_honors_classes,
        x_class_size,
        x_sec_school_location_id,
        x_percent_plan_higher_edu,
        x_fund_authorization,
        x_pe_info_verify_time,
        x_birth_city   ,
        x_birth_country,
	x_oss_org_unit_cd,
	x_felony_convicted_flag,
        x_mode
      );
Line: 1343

    update_row (
      x_rowid,
      x_party_id,
      x_deceased_ind,
      x_archive_exclusion_ind,
      x_archive_dt,
      x_purge_exclusion_ind,
      x_purge_dt,
      x_oracle_username,
      x_proof_of_ins,
      x_proof_of_immu,
      x_level_of_qual,
      x_military_service_reg,
      x_veteran,
      x_institution_cd,
      x_oi_local_institution_ind,
      x_oi_os_ind,
      x_oi_govt_institution_cd,
      x_oi_inst_control_type,
      x_oi_institution_type,
      x_oi_institution_status,
      x_ou_start_dt,
      x_ou_end_dt,
      x_ou_member_type,
      x_ou_org_status,
      x_ou_org_type,
      x_inst_org_ind,
      x_inst_priority_cd,
      x_inst_eps_code ,
      x_inst_phone_country_code,
      x_inst_phone_area_code,
      x_inst_phone_number,
      x_adv_studies_classes,
      x_honors_classes,
      x_class_size,
      x_sec_school_location_id,
      x_percent_plan_higher_edu,
      x_fund_authorization,
      x_pe_info_verify_time,
      x_birth_city   ,
      x_birth_country,
      x_oss_org_unit_cd,
      x_felony_convicted_flag,
      x_mode
    );
Line: 1392

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-AUG-2000
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 1415

 DELETE FROM igs_pe_hz_parties
    WHERE rowid = x_rowid;
Line: 1429

  END delete_row;