DBA Data[Home] [Help]

APPS.PER_EMPDIR_SS SQL Statements

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

Line: 12

 SELECT o.organization_id, nvl(upper(replace(oi.org_information1,'|','||''.''||')),'j.name') slist
  FROM hr_all_organization_units o, hr_organization_information oi
 WHERE o.organization_id = o.business_group_id
 AND o.organization_id = oi.organization_id (+)
 AND oi.org_information_context(+) = 'SSHR Information';
Line: 111

        SELECT count(unique a.person_id)-1 INTO cntTbl.cnt(I)
        FROM per_empdir_assignments a,
        per_empdir_people p
        WHERE a.orig_system = cntTbl.orig_system(I)
        AND a.active = 'Y'
        and a.PERSON_ID = p.orig_system_ID
        and p.active = 'Y'
        CONNECT BY PRIOR a.person_id = a.supervisor_id
                     AND a.orig_system = cntTbl.orig_system(I)
        START WITH a.person_id = cntTbl.orig_system_id(I)
        AND a.active = 'Y'
        AND a.primary_flag = 'Y'
        AND a.orig_system = cntTbl.orig_system(I);
Line: 131

      UPDATE per_empdir_people
        SET total_reports = cntTbl.cnt(I)
      WHERE rowid = cntTbl.row_id(I);
Line: 149

 SELECT rowid
       ,orig_system
       ,orig_system_id
       ,null cnt
  FROM per_empdir_people p
  WHERE active = 'Y'
  AND p.orig_system = p_source_system;
Line: 162

    UPDATE per_empdir_people p
    SET direct_reports = (SELECT count(*)
                     FROM per_empdir_assignments a, per_empdir_people rp
                     WHERE supervisor_id = p.orig_system_id
                     AND a.orig_system = p.orig_system
                     AND a.active = 'Y'
                     -- AND a.primary_flag = 'Y'
                     AND a.person_id = rp.orig_system_id
                     AND a.orig_system =  rp.orig_system
                     AND rp.active = 'Y')
    WHERE p.orig_system = p_source_system;
Line: 227

	insert INTO per_empdir_jobs (ORIG_SYSTEM,
	ORIG_SYSTEM_ID,
	BUSINESS_GROUP_ID,
	JOB_DEFINITION_ID,
	NAME ,
	LANGUAGE,
	SOURCE_LANG ,
	OBJECT_VERSION_NUMBER,
	PARTITION_ID,
	LAST_UPDATE_DATE,
	LAST_UPDATE_BY,
	CREATED_BY,
	CREATION_DATE,
	REQUEST_ID,
	PROGRAM_APPLICATION_ID,
	PROGRAM_ID,
	PROGRAM_UPDATE_DATE,
	ATTRIBUTE_CATEGORY,
	ATTRIBUTE1,
	ATTRIBUTE2,
	ATTRIBUTE3,
	ATTRIBUTE4,
	ATTRIBUTE5,
	ATTRIBUTE6,
	ATTRIBUTE7,
	ATTRIBUTE8,
	ATTRIBUTE9,
	ATTRIBUTE10,
	ATTRIBUTE11,
	ATTRIBUTE12,
	ATTRIBUTE13,
	ATTRIBUTE14,
	ATTRIBUTE15,
	ATTRIBUTE16,
	ATTRIBUTE17,
	ATTRIBUTE18,
	ATTRIBUTE19,
	ATTRIBUTE20) values(
             jobTbl.orig_system(I)
            ,jobTbl.orig_system_id(I)
            ,jobTbl.business_group_id(I)
            ,jobTbl.job_definition_id(I)
            ,jobTbl.name(I)
            ,jobTbl.language(I)
            ,jobTbl.source_language(I)
            ,jobTbl.object_version_number(I)
            ,jobTbl.partition_id(I)
            ,g_date
            ,g_user_id
            ,g_user_id
            ,g_date
            ,g_request_id
            ,g_prog_appl_id
            ,g_prog_id
            ,g_date
            ,jobTbl.attribute_category(I)
            ,jobTbl.attribute1(I)
            ,jobTbl.attribute2(I)
            ,jobTbl.attribute3(I)
            ,jobTbl.attribute4(I)
            ,jobTbl.attribute5(I)
            ,jobTbl.attribute6(I)
            ,jobTbl.attribute7(I)
            ,jobTbl.attribute8(I)
            ,jobTbl.attribute9(I)
            ,jobTbl.attribute10(I)
            ,jobTbl.attribute11(I)
            ,jobTbl.attribute12(I)
            ,jobTbl.attribute13(I)
            ,jobTbl.attribute14(I)
            ,jobTbl.attribute15(I)
            ,jobTbl.attribute16(I)
            ,jobTbl.attribute17(I)
            ,jobTbl.attribute18(I)
            ,jobTbl.attribute19(I)
            ,jobTbl.attribute20(I)
            );
Line: 312

PROCEDURE update_hr_pos(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 323

      UPDATE per_empdir_positions
      SET orig_system = posTbl.orig_system(I)
         ,orig_system_id = posTbl.orig_system_id(I)
    	 ,business_group_id = posTbl.business_group_id(I)
    	 ,job_id = posTbl.job_id(I)
    	 ,location_id = posTbl.location_id(I)
    	 ,organization_id = posTbl.organization_id(I)
    	 ,position_definition_id = posTbl.position_definition_id(I)
    	 ,name = posTbl.name(I)
    	 ,language = posTbl.language(I)
    	 ,source_lang = posTbl.source_language(I)
    	 ,object_version_number = posTbl.object_version_number(I)
    	 ,partition_id = posTbl.partition_id(I)
    	 ,last_update_date = g_date
    	 ,last_update_by = g_user_id
    	 ,created_by = g_user_id
    	 ,creation_date = g_date
    	 ,request_id = g_request_id
    	 ,program_application_id = g_prog_appl_id
    	 ,program_id = g_prog_id
    	 ,program_update_date = g_date
    	 ,attribute_category = posTbl.attribute_category(I)
    	 ,attribute1 = posTbl.attribute1(I)
    	 ,attribute2 = posTbl.attribute2(I)
    	 ,attribute3 = posTbl.attribute3(I)
    	 ,attribute4 = posTbl.attribute4(I)
    	 ,attribute5 = posTbl.attribute5(I)
    	 ,attribute6 = posTbl.attribute6(I)
    	 ,attribute7 = posTbl.attribute7(I)
    	 ,attribute8 = posTbl.attribute8(I)
    	 ,attribute9 = posTbl.attribute9(I)
    	 ,attribute10 = posTbl.attribute10(I)
    	 ,attribute11 = posTbl.attribute11(I)
    	 ,attribute12 = posTbl.attribute12(I)
    	 ,attribute13 = posTbl.attribute13(I)
    	 ,attribute14 = posTbl.attribute14(I)
    	 ,attribute15 = posTbl.attribute15(I)
    	 ,attribute16 = posTbl.attribute16(I)
    	 ,attribute17 = posTbl.attribute17(I)
    	 ,attribute18 = posTbl.attribute18(I)
    	 ,attribute19 = posTbl.attribute19(I)
    	 ,attribute20 = posTbl.attribute20(I)
       WHERE orig_system = posTbl.orig_system(I)
       AND orig_system_id = posTbl.orig_system_id(I)
       AND language = posTbl.language(I);
Line: 372

        write_log(1, 'Error in update_hr_pos: '||SQLCODE);
Line: 374

END update_hr_pos;
Line: 386

     INSERT INTO per_empdir_positions values (
       	 posTbl.orig_system(I)
    	,posTbl.orig_system_id(I)
    	,posTbl.business_group_id(I)
    	,posTbl.job_id(I)
    	,posTbl.location_id(I)
    	,posTbl.organization_id(I)
    	,posTbl.position_definition_id(I)
    	,posTbl.name(I)
    	,posTbl.language(I)
    	,posTbl.source_language(I)
    	,posTbl.object_version_number(I)
    	,posTbl.partition_id(I)
        ,g_date
        ,g_user_id
        ,g_user_id
        ,g_date
    	,g_request_id
    	,g_prog_appl_id
    	,g_prog_id
    	,g_date
        ,posTbl.attribute_category(I)
        ,posTbl.attribute1(I)
        ,posTbl.attribute2(I)
        ,posTbl.attribute3(I)
        ,posTbl.attribute4(I)
        ,posTbl.attribute5(I)
        ,posTbl.attribute6(I)
        ,posTbl.attribute7(I)
        ,posTbl.attribute8(I)
        ,posTbl.attribute9(I)
        ,posTbl.attribute10(I)
        ,posTbl.attribute11(I)
        ,posTbl.attribute12(I)
        ,posTbl.attribute13(I)
        ,posTbl.attribute14(I)
        ,posTbl.attribute15(I)
        ,posTbl.attribute16(I)
        ,posTbl.attribute17(I)
        ,posTbl.attribute18(I)
        ,posTbl.attribute19(I)
        ,posTbl.attribute20(I)
      );
Line: 446

query_str := 'SELECT '''||g_srcSystem||''', p.position_id, p.business_group_id, oi.org_information9,' ||
                'p.job_id, p.location_id,p.organization_id, p.position_definition_id, ptl.name,'||
                'ptl.language, ptl.source_lang, p.object_version_number,1, p.attribute_category,'||
                'p.attribute1, p.attribute2, p.attribute3, p.attribute4, p.attribute5,p.attribute6,'||
                'p.attribute7, p.attribute8, p.attribute9, p.attribute10, p.attribute11, p.attribute12,'||
                'p.attribute13, p.attribute14, p.attribute15, p.attribute16, p.attribute17, p.attribute18,'||
                'p.attribute19,p.attribute20, p.attribute21, p.attribute22, p.attribute23, p.attribute24,'||
                'p.attribute25, p.attribute26,p.attribute27, p.attribute28, p.attribute29, p.attribute30,'||
                'information_category, information1, information2, information3, information4, information5,'||
                'information6, information7, information8, information9, information10, information11,'||
                'information12, information13, information14, information15, information16, information17,'||
                'information18, information19, information20, information21, information22, information23,'||
                'information24, information25, information26, information27, information28, information29,'||
                'information30 '||
              'FROM hr_all_positions_f p, hr_all_positions_f_tl ptl, hr_organization_information oi '||
              'WHERE p.position_id = ptl.position_id'||
              '  AND :1 between p.effective_start_date AND p.effective_end_date'||
              '  AND p.business_group_id = oi.organization_id'||
              '  AND oi.org_information_context = ''Business Group Information''';
Line: 467

                             '	(SELECT lp.position_id FROM hr_all_positions_f lp'||
                             '    WHERE label_to_char(lp.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lp.HR_ENTERPRISE) is null)';
Line: 473

      query_str := query_str || '  AND EXISTS (SELECT ''e'' FROM per_empdir_positions ip'||
                       ' WHERE ip.orig_system_id = p.position_id'||
                       '   AND ip.orig_system = ''' || g_srcSystem || '''' ||
                       '   AND ip.object_version_number <> p.object_version_number)';
Line: 479

      query_str := query_str || '  AND NOT EXISTS (SELECT ''e'' FROM per_empdir_positions ip'||
                       ' WHERE ip.orig_system_id = p.position_id'||
                       '   AND ip.orig_system = ''' || g_srcSystem || ''')';
Line: 612

               update_hr_pos(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,posTbl.orig_system.count
               );
Line: 656

      INSERT INTO per_empdir_locations values (
        locationTbl.orig_system(I)
        ,locationTbl.orig_system_id(I)
        ,locationTbl.business_group_id(I)
        ,locationTbl.derived_locale(I)
        ,locationTbl.tax_name(I)
        ,locationTbl.country(I)
        ,locationTbl.style(I)
        ,locationTbl.address(I)
        ,locationTbl.address_line_1(I)
        ,locationTbl.address_line_2(I)
        ,locationTbl.address_line_3(I)
        ,locationTbl.town_or_city(I)
        ,locationTbl.region_1(I)
        ,locationTbl.region_2(I)
        ,locationTbl.region_3(I)
        ,locationTbl.postal_code(I)
        ,locationTbl.inactive_date(I)
        ,locationTbl.office_site_flag(I)
        ,locationTbl.receiving_site_flag(I)
        ,locationTbl.telephone_number_1(I)
        ,locationTbl.telephone_number_2(I)
        ,locationTbl.telephone_number_3(I)
        ,locationTbl.timezone_id(I)
        ,locationTbl.object_version_number(I)
        ,locationTbl.partition_id(I)
        ,g_date
        ,g_user_id
        ,g_login_id
        ,g_user_id
        ,g_date
        ,g_request_id
        ,g_prog_appl_id
        ,g_prog_id
        ,g_date
        ,locationTbl.timezone_code(I)
      );
Line: 710

query_str := 'SELECT  ''' || g_srcSystem || '''' ||
             '     ,location_id, business_group_id, derived_locale,tax_name' ||
             '     ,country, style, null address, address_line_1, address_line_2' ||
             '     ,address_line_3, town_or_city, region_1, region_2, region_3' ||
             '     ,postal_code, inactive_date, office_site_flag, receiving_site_flag' ||
             '     ,telephone_number_1, telephone_number_2, telephone_number_3' ||
             '     ,null' ||
             '     ,nvl(TIMEZONE_CODE,' ||
             '             per_empdir_SS.get_timezone_code(postal_code,  town_or_city,' ||
             '                       decode(country,''US'',region_2,region_1), country))' ||
             '     ,object_version_number' ||
             '     ,1 ' ||
             ' FROM hr_locations_all l';
Line: 730

       query_str := query_str || '  WHERE EXISTS (SELECT ''e'' FROM per_empdir_locations il' ||
                      '                 WHERE il.orig_system_id = l.location_id'||
                      '                   AND il.orig_system = ''' || g_srcSystem || '''' ||
                      '                   AND il.object_version_number <> l.object_version_number)';
Line: 739

       query_str := query_str || '  WHERE NOT EXISTS (SELECT ''e'' FROM per_empdir_locations il' ||
                                 '       WHERE il.orig_system_id = l.location_id' ||
                                 '         AND il.orig_system = ''' || g_srcSystem || ''')';
Line: 749

PROCEDURE update_per_locations(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 760

       UPDATE per_empdir_locations
       SET orig_system = locationTbl.orig_system(I)
           ,orig_system_id = locationTbl.orig_system_id(I)
           ,business_group_id = locationTbl.business_group_id(I)
           ,derived_locale = locationTbl.derived_locale(I)
           ,tax_name = locationTbl.tax_name(I)
           ,country = locationTbl.country(I)
           ,style = locationTbl.style(I)
           ,address = locationTbl.address(I)
           ,address_line_1 = locationTbl.address_line_1(I)
           ,address_line_2 = locationTbl.address_line_2(I)
           ,address_line_3 = locationTbl.address_line_3(I)
           ,town_or_city = locationTbl.town_or_city(I)
           ,region_1 = locationTbl.region_1(I)
           ,region_2 = locationTbl.region_2(I)
           ,region_3 = locationTbl.region_3(I)
           ,postal_code = locationTbl.postal_code(I)
           ,inactive_date = locationTbl.inactive_date(I)
           ,office_site_flag = locationTbl.office_site_flag(I)
           ,receiving_site_flag = locationTbl.receiving_site_flag(I)
           ,telephone_number_1 = locationTbl.telephone_number_1(I)
           ,telephone_number_2 = locationTbl.telephone_number_2(I)
           ,telephone_number_3 = locationTbl.telephone_number_3(I)
           ,timezone_id = locationTbl.timezone_id(I)
           ,timezone_code = locationTbl.timezone_code(I)
           ,object_version_number = locationTbl.object_version_number(I)
           ,partition_id = locationTbl.partition_id(I)
           ,last_update_date = g_date
           ,last_updated_by = g_user_id
           ,last_update_login = g_login_id
           ,created_by = g_user_id
           ,creation_date = g_date
           ,request_id = g_request_id
           ,program_application_id = g_prog_appl_id
           ,program_id = g_prog_id
           ,program_update_date = g_date
       WHERE orig_system = locationTbl.orig_system(I)
       AND orig_system_id = locationTbl.orig_system_id(I);
Line: 802

        write_log(1, 'Error in update_per_locations: '||SQLCODE);
Line: 804

END update_per_locations;
Line: 883

               update_per_locations(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,locationTbl.orig_system.count
               );
Line: 909

PROCEDURE update_per_asg(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 920

      UPDATE per_empdir_assignments
         SET orig_system = asgTbl.orig_system(I)
             ,orig_system_id = asgTbl.orig_system_id(I)
             ,business_group_id  = asgTbl.business_group_id(I)
        	 ,position_id  = asgTbl.position_id(I)
             ,job_id  = asgTbl.job_id(I)
             ,location_id  = asgTbl.location_id(I)
             ,supervisor_id  = asgTbl.supervisor_id(I)
             ,supervisor_assignment_id  = asgTbl.supervisor_assignment_id(I)
             ,person_id  = asgTbl.person_id(I)
        	 ,organization_id  = asgTbl.organization_id(I)
        	 ,primary_flag  = asgTbl.primary_flag(I)
        	 ,active  = asgTbl.active(I)
        	 ,assignment_number  = asgTbl.assignment_number(I)
        	 ,discretionary_title  = asgTbl.discretionary_title(I)
        	 ,employee_category  = asgTbl.employee_category(I)
        	 ,employment_category  = asgTbl.employment_category(I)
        	 ,assignment_category  = asgTbl.assignment_category(I)
        	 ,work_at_home  = asgTbl.work_at_home(I)
        	 ,object_version_number  = asgTbl.object_version_number(I)
        	 ,partition_id  = asgTbl.partition_id(I)
        	 ,request_id  = g_request_id
        	 ,program_application_id  = g_prog_appl_id
        	 ,program_id  = g_prog_id
        	 ,program_update_date  = g_date
        	 ,last_update_date  = g_date
        	 ,last_updated_by  = g_user_id
        	 ,last_update_login  = g_login_id
        	 ,created_by  = g_user_id
        	 ,creation_date  = g_date
        	 ,ass_attribute_category  = asgTbl.ass_attribute_category(I)
        	 ,ass_attribute1  = asgTbl.ass_attribute1(I)
        	 ,ass_attribute2  = asgTbl.ass_attribute2(I)
        	 ,ass_attribute3  = asgTbl.ass_attribute3(I)
        	 ,ass_attribute4  = asgTbl.ass_attribute4(I)
        	 ,ass_attribute5  = asgTbl.ass_attribute5(I)
        	 ,ass_attribute6  = asgTbl.ass_attribute6(I)
        	 ,ass_attribute7  = asgTbl.ass_attribute7(I)
        	 ,ass_attribute8  = asgTbl.ass_attribute8(I)
        	 ,ass_attribute9  = asgTbl.ass_attribute9(I)
        	 ,ass_attribute10  = asgTbl.ass_attribute10(I)
        	 ,ass_attribute11  = asgTbl.ass_attribute11(I)
        	 ,ass_attribute12  = asgTbl.ass_attribute12(I)
        	 ,ass_attribute13  = asgTbl.ass_attribute13(I)
        	 ,ass_attribute14  = asgTbl.ass_attribute14(I)
        	 ,ass_attribute15  = asgTbl.ass_attribute15(I)
        	 ,ass_attribute16  = asgTbl.ass_attribute16(I)
        	 ,ass_attribute17  = asgTbl.ass_attribute17(I)
        	 ,ass_attribute18  = asgTbl.ass_attribute18(I)
        	 ,ass_attribute19  = asgTbl.ass_attribute19(I)
        	 ,ass_attribute20  = asgTbl.ass_attribute20(I)
        	 ,ass_attribute21  = asgTbl.ass_attribute21(I)
        	 ,ass_attribute22  = asgTbl.ass_attribute22(I)
        	 ,ass_attribute23  = asgTbl.ass_attribute23(I)
        	 ,ass_attribute24  = asgTbl.ass_attribute24(I)
        	 ,ass_attribute25  = asgTbl.ass_attribute25(I)
        	 ,ass_attribute26  = asgTbl.ass_attribute26(I)
        	 ,ass_attribute27  = asgTbl.ass_attribute27(I)
        	 ,ass_attribute28  = asgTbl.ass_attribute28(I)
        	 ,ass_attribute29  = asgTbl.ass_attribute29(I)
        	 ,ass_attribute30  = asgTbl.ass_attribute30(I)
       WHERE orig_system = asgTbl.orig_system(I)
       AND orig_system_id = asgTbl.orig_system_id(I);
Line: 987

        write_log(1, 'Error in update_per_asg: '||SQLCODE);
Line: 989

END update_per_asg;
Line: 1001

      INSERT INTO per_empdir_assignments values (
    	    	asgTbl.orig_system(I)
               ,asgTbl.orig_system_id(I)
	       ,asgTbl.business_group_id(I)
	       ,asgTbl.position_id(I)
	       ,asgTbl.job_id(I)
	       ,asgTbl.location_id(I)
	       ,asgTbl.supervisor_id(I)
	       ,asgTbl.supervisor_assignment_id(I)
	       ,asgTbl.person_id(I)
	       ,asgTbl.organization_id(I)
	       ,asgTbl.primary_flag(I)
	       ,asgTbl.active(I)
	       ,asgTbl.assignment_number(I)
	       ,asgTbl.discretionary_title(I)
	       ,asgTbl.employee_category(I)
	       ,asgTbl.employment_category(I)
	       ,asgTbl.assignment_category(I)
	       ,asgTbl.work_at_home(I)
	       ,asgTbl.object_version_number(I)
	       ,asgTbl.partition_id(I)
	       ,g_request_id
	       ,g_prog_appl_id
	       ,g_prog_id
	       ,g_date
	       ,g_date
	       ,g_user_id
	       ,g_login_id
	       ,g_user_id
	       ,g_date
	       ,asgTbl.ass_attribute_category(I)
	       ,asgTbl.ass_attribute1(I)
	       ,asgTbl.ass_attribute2(I)
	       ,asgTbl.ass_attribute3(I)
	       ,asgTbl.ass_attribute4(I)
	       ,asgTbl.ass_attribute5(I)
	       ,asgTbl.ass_attribute6(I)
	       ,asgTbl.ass_attribute7(I)
	       ,asgTbl.ass_attribute8(I)
	       ,asgTbl.ass_attribute9(I)
	       ,asgTbl.ass_attribute10(I)
	       ,asgTbl.ass_attribute11(I)
	       ,asgTbl.ass_attribute12(I)
	       ,asgTbl.ass_attribute13(I)
	       ,asgTbl.ass_attribute14(I)
	       ,asgTbl.ass_attribute15(I)
	       ,asgTbl.ass_attribute16(I)
	       ,asgTbl.ass_attribute17(I)
	       ,asgTbl.ass_attribute18(I)
	       ,asgTbl.ass_attribute19(I)
	       ,asgTbl.ass_attribute20(I)
	       ,asgTbl.ass_attribute21(I)
	       ,asgTbl.ass_attribute22(I)
	       ,asgTbl.ass_attribute23(I)
	       ,asgTbl.ass_attribute24(I)
	       ,asgTbl.ass_attribute25(I)
	       ,asgTbl.ass_attribute26(I)
	       ,asgTbl.ass_attribute27(I)
	       ,asgTbl.ass_attribute28(I)
	       ,asgTbl.ass_attribute29(I)
	       ,asgTbl.ass_attribute30(I)
      );
Line: 1086

query_str := 'SELECT ''' || g_srcSystem || ''', paf.assignment_id, paf.business_group_id, oi.org_information9,'||
        'paf.position_id, paf.job_id, paf.location_id, paf.supervisor_id, null,' ||
        'paf.person_id, paf.organization_id, paf.primary_flag,' ||
        'decode (astatus.per_system_status, ''TERM_ASSIGN'', ''N'',' ||
        '        decode(paf.assignment_type, ''E'', ''Y'', ''C'', ''Y'', ''N'')), paf.assignment_number,'||
        'null, paf.employee_category, paf.employment_category, paf.assignment_category,' ||
        'paf.work_at_home, paf.object_version_number, 1,' ||
        'ass_attribute_category, ass_attribute1, ass_attribute2, ass_attribute3,' ||
        'ass_attribute4, ass_attribute5, ass_attribute6, ass_attribute7, ass_attribute8,' ||
        'ass_attribute9, ass_attribute10, ass_attribute11, ass_attribute12, ass_attribute13,'||
        'ass_attribute14, ass_attribute15, ass_attribute16, ass_attribute17, ass_attribute18,'||
        'ass_attribute19, ass_attribute20, ass_attribute21, ass_attribute22, ass_attribute23,'||
        'ass_attribute24, ass_attribute25, ass_attribute26, ass_attribute27, ass_attribute28,'||
        'ass_attribute29, ass_attribute30 '||
      ' FROM per_assignments_f paf, per_assignment_status_types astatus' ||
      '    ,hr_organization_information oi '||
      ' WHERE :1 BETWEEN effective_start_date AND effective_end_date'||
      '   AND paf.assignment_status_type_id = astatus.assignment_status_type_id'||
      '   AND paf.business_group_id = oi.organization_id'||
      '   AND oi.org_information_context = ''Business Group Information'''||
      '   AND paf.primary_flag = nvl(:2,paf.primary_flag)'||
      ' /* Avoiding PK Violation */ '||
      '   AND paf.assignment_id NOT IN '||
      '         (SELECT assignment_id FROM per_all_assignments_f ipaf' ||
      '         WHERE :3 BETWEEN effective_start_date AND effective_end_date'||
      '         GROUP BY assignment_id HAVING count(*) > 1)'||
      ' AND paf.assignment_type in (''E'',''C'')';
Line: 1116

                             '	(SELECT assignment_id FROM per_all_assignments_f lpaf'||
                             '    WHERE label_to_char(lpaf.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lpaf.HR_ENTERPRISE) is null)';
Line: 1124

      query_str := query_str || '  AND EXISTS (SELECT ''e'' from per_empdir_assignments ia '||
                             ' WHERE ia.orig_system_id = paf.assignment_id'||
                             '   AND ia.orig_system = ''' || g_srcSystem || ''''||
                             '   AND (ia.object_version_number <> paf.object_version_number '||
                             '   OR paf.effective_start_date >= ia.last_update_date ))';
Line: 1132

                                '  AND NOT EXISTS (SELECT ''e'' from per_empdir_assignments ia'||
                                '        WHERE ia.orig_system_id = paf.assignment_id'||
                                '          AND ia.orig_system = ''' || g_srcSystem|| ''')';
Line: 1243

               update_per_asg(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,asgTbl.orig_system.count
               );
Line: 1271

PROCEDURE update_hr_orgs(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 1282

      UPDATE per_empdir_organizations
      SET orig_system = orgTbl.orig_system(I)
         ,orig_system_id = orgTbl.orig_system_id(I)
    	 ,business_group_id = orgTbl.business_group_id(I)
    	 ,location_id	= orgTbl.location_id(I)
         ,representative1_id = orgTbl.representative1_id(I)
         ,representative2_id = orgTbl.representative1_id(I)
         ,representative3_id = orgTbl.representative1_id(I)
         ,representative4_id = orgTbl.representative1_id(I)
    	 ,name = orgTbl.name(I)
    	 ,language = orgTbl.language(I)
    	 ,source_lang = orgTbl.source_lang(I)
    	 ,object_version_number = orgTbl.object_version_number(I)
    	 ,partition_id = orgTbl.partition_id(I)
    	 ,last_update_date = g_date
    	 ,last_update_by = g_user_id
    	 ,created_by = g_user_id
    	 ,creation_date = g_date
    	 ,request_id  = g_request_id
    	 ,program_application_id = g_prog_appl_id
    	 ,program_id = g_prog_id
    	 ,program_update_date = g_date
    	 ,attribute_category  = orgTbl.attribute_category(I)
    	 ,attribute1  = orgTbl.attribute1(I)
    	 ,attribute2  = orgTbl.attribute2(I)
    	 ,attribute3  = orgTbl.attribute3(I)
    	 ,attribute4  = orgTbl.attribute4(I)
    	 ,attribute5  = orgTbl.attribute5(I)
    	 ,attribute6  = orgTbl.attribute6(I)
    	 ,attribute7  = orgTbl.attribute7(I)
    	 ,attribute8  = orgTbl.attribute8(I)
    	 ,attribute9  = orgTbl.attribute9(I)
    	 ,attribute10  = orgTbl.attribute10(I)
    	 ,attribute11  = orgTbl.attribute11(I)
    	 ,attribute12  = orgTbl.attribute12(I)
    	 ,attribute13  = orgTbl.attribute13(I)
    	 ,attribute14  = orgTbl.attribute14(I)
    	 ,attribute15  = orgTbl.attribute15(I)
    	 ,attribute16  = orgTbl.attribute16(I)
    	 ,attribute17  = orgTbl.attribute17(I)
    	 ,attribute18  = orgTbl.attribute18(I)
    	 ,attribute19  = orgTbl.attribute19(I)
    	 ,attribute20  = orgTbl.attribute20(I)
       WHERE orig_system = orgTbl.orig_system(I)
       AND orig_system_id = orgTbl.orig_system_id(I)
       AND language = orgTbl.language(I);
Line: 1332

        write_log(1, 'Error in update_hr_orgs: '||SQLCODE);
Line: 1334

END update_hr_orgs;
Line: 1346

      INSERT INTO per_empdir_organizations values (
    	    orgTbl.orig_system(I)
           ,orgTbl.orig_system_id(I)
           ,orgTbl.business_group_id(I)
           ,orgTbl.location_id(I)
           ,orgTbl.representative1_id(I)
           ,orgTbl.representative2_id(I)
           ,orgTbl.representative3_id(I)
           ,orgTbl.representative4_id(I)
           ,orgTbl.name(I)
           ,orgTbl.language(I)
           ,orgTbl.source_lang(I)
           ,orgTbl.object_version_number(I)
           ,orgTbl.partition_id(I)
           ,g_date
           ,g_user_id
           ,g_user_id
           ,g_date
           ,g_request_id
           ,g_prog_appl_id
           ,g_prog_id
           ,g_date
           ,orgTbl.attribute_category(I)
           ,orgTbl.attribute1(I)
           ,orgTbl.attribute2(I)
           ,orgTbl.attribute3(I)
           ,orgTbl.attribute4(I)
           ,orgTbl.attribute5(I)
           ,orgTbl.attribute6(I)
           ,orgTbl.attribute7(I)
           ,orgTbl.attribute8(I)
           ,orgTbl.attribute9(I)
           ,orgTbl.attribute10(I)
           ,orgTbl.attribute11(I)
           ,orgTbl.attribute12(I)
           ,orgTbl.attribute13(I)
           ,orgTbl.attribute14(I)
           ,orgTbl.attribute15(I)
           ,orgTbl.attribute16(I)
           ,orgTbl.attribute17(I)
           ,orgTbl.attribute18(I)
           ,orgTbl.attribute19(I)
           ,orgTbl.attribute20(I)
      );
Line: 1407

query_str := 'SELECT '''||g_srcSystem||''', hou.organization_id,hou.business_group_id,oi.org_information9,'||
                'hou.location_id,null rep1,null rep2,null rep3,null rep4,houtl.name,houtl.language,'||
                'houtl.source_lang,hou.object_version_number,1,hou.attribute_category, hou.attribute1,'||
                'hou.attribute2, hou.attribute3, hou.attribute4, hou.attribute5, hou.attribute6,'||
                'hou.attribute7, hou.attribute8, hou.attribute9, hou.attribute10, hou.attribute11,'||
                'hou.attribute12, hou.attribute13,hou.attribute14, hou.attribute15, hou.attribute16,'||
                'hou.attribute17, hou.attribute18, hou.attribute19, hou.attribute20 '||
              'FROM hr_all_organization_units hou, hr_all_organization_units_tl houtl ,'||
                    'hr_organization_information oi '||
              'WHERE hou.organization_id = houtl.organization_id'||
              '  AND hou.business_group_id = oi.organization_id'||
              '  AND oi.org_information_context = ''Business Group Information'''||
              ' /* Avoiding PK Violation */'||
              '  AND houtl.organization_id NOT IN '||
              '	(SELECT organization_id FROM hr_all_organization_units ihou'||
              '    GROUP BY organization_id HAVING count(*) > 1)';
Line: 1425

                             '	(SELECT organization_id FROM hr_all_organization_units lhou'||
                             '    WHERE label_to_char(lhou.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lhou.HR_ENTERPRISE) is null)';
Line: 1431

      query_str := query_str || ' AND EXISTS (SELECT ''e'' FROM per_empdir_organizations io '||
                      ' WHERE io.orig_system_id = hou.organization_id' ||
                      '   AND io.orig_system = ''' || g_srcSystem || '''' ||
                      '   AND io.object_version_number <> hou.object_version_number)';
Line: 1437

      query_str := query_str || ' AND NOT EXISTS (SELECT ''e'' FROM per_empdir_organizations io '||
                      ' WHERE io.orig_system_id = houtl.organization_id'||
                      '   AND io.orig_system = ''' || g_srcSystem || ''')';
Line: 1531

               update_hr_orgs(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,orgTbl.orig_system.count
               );
Line: 1557

PROCEDURE update_per_jobs(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 1568

      UPDATE per_empdir_jobs
      SET orig_system = jobTbl.orig_system(I)
         ,orig_system_id = jobTbl.orig_system_id(I)
         ,business_group_id = jobTbl.business_group_id(I)
         ,name = jobTbl.name(I)
         ,language = jobTbl.language(I)
         ,source_lang = jobTbl.source_language(I)
         ,object_version_number = jobTbl.object_version_number(I)
         ,partition_id = jobTbl.partition_id(I)
         ,last_update_date = g_date
         ,last_update_by = g_user_id
         ,created_by = g_user_id
         ,creation_date = g_date
         ,request_id = g_request_id
         ,program_application_id = g_prog_appl_id
         ,program_id = g_prog_id
         ,program_update_date = g_date
       WHERE orig_system = jobTbl.orig_system(I)
       AND orig_system_id = jobTbl.orig_system_id(I)
       AND language = jobTbl.language(I);
Line: 1592

        write_log(1, 'Error in update_per_jobs: '||SQLCODE);
Line: 1594

END update_per_jobs;
Line: 1607

    query_str := 'SELECT '''||g_srcSystem||''', j.job_id, j.business_group_id, oi.org_information9, j.job_definition_id, '||
                 'jtl.name, '||p_slist||' title, jtl.language, jtl.source_lang, j.object_version_number, 1, '||
                 'j.attribute_category, j.attribute1, j.attribute2, j.attribute3, j.attribute4, j.attribute5, '||
                 'j.attribute6, j.attribute7, j.attribute8, j.attribute9, j.attribute10,j.attribute11, '||
                 'j.attribute12, j.attribute13, j.attribute14, j.attribute15, j.attribute16, j.attribute17, '||
                 'j.attribute18, j.attribute19, j.attribute20, job_information_category, job_information1, '||
                 'job_information2, job_information3, job_information4, job_information5, '||
                 'job_information6, job_information7, job_information8, job_information9, '||
                 'job_information10, job_information11, job_information12, job_information13, '||
                 'job_information14, job_information15, job_information16, job_information17, '||
                 'job_information18, job_information19, job_information20 '||
                 'FROM per_jobs j, per_jobs_tl jtl, per_job_definitions jd '||
                      ',hr_organization_information oi '||
                 'WHERE j.job_id = jtl.job_id '||
                 'AND j.job_definition_id = jd.job_definition_id '||
                 'AND jtl.name is not null '||
                 'AND j.business_group_id = :1 '||
                 'AND j.business_group_id = oi.organization_id '||
                 'AND oi.org_information_context = ''Business Group Information''';
Line: 1628

                             '	(SELECT job_id FROM per_jobs lj'||
                             '    WHERE label_to_char(lj.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lj.HR_ENTERPRISE) is null)';
Line: 1635

        'AND EXISTS (SELECT ''e'' from per_empdir_jobs ij '||
        'WHERE ij.orig_system_id = j.job_id '||
        'AND ij.orig_system = '''||g_srcSystem||''' '||
        'AND ij.object_version_number <> j.object_version_number) ';
Line: 1642

        'AND NOT EXISTS (SELECT ''e'' from per_empdir_jobs ij '||
        'WHERE ij.orig_system_id = j.job_id '||
        'AND ij.orig_system = '''||g_srcSystem||''') ';
Line: 1819

               update_per_jobs(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,jobTbl.orig_system.count
               );
Line: 1864

      INSERT INTO per_empdir_people values (
             personTbl.person_key(I)
            ,personTbl.orig_system(I)
            ,personTbl.orig_sytem_id(I)
            ,personTbl.business_group_id(I)
            ,personTbl.legislation_code(I)
            ,personTbl.display_name(I)
            ,personTbl.full_name(I)
            ,personTbl.full_name_alternate(I)
            ,personTbl.last_name(I)
            ,personTbl.first_name(I)
            ,personTbl.last_name_alternate(I)
            ,personTbl.first_name_alternate(I)
            ,personTbl.pre_name_adjunct(I)
            ,personTbl.person_type(I)
            ,personTbl.user_name(I)
            ,personTbl.active(I)
            ,personTbl.employee_number(I)
            ,personTbl.known_as(I)
            ,personTbl.middle_names(I)
            ,personTbl.previous_last_name(I)
            ,personTbl.start_date(I)
            ,personTbl.original_DOH(I)
            ,personTbl.email_address(I)
            ,personTbl.work_telephone(I)
            ,personTbl.mailstop(I)
            ,personTbl.office_number(I)
            ,personTbl.order_name(I)
            ,personTbl.partition_id(I)
            ,personTbl.object_version_number(I)
            ,personTbl.global_person_id(I)
            ,personTbl.party_id(I)
            ,g_request_id
            ,g_prog_appl_id
            ,g_prog_id
            ,g_date
            ,g_date
            ,g_user_id
            ,g_login_id
            ,g_user_id
            ,g_date
            ,personTbl.attribute_category(I)
            ,personTbl.attribute1(I)
            ,personTbl.attribute2(I)
            ,personTbl.attribute3(I)
            ,personTbl.attribute4(I)
            ,personTbl.attribute5(I)
            ,personTbl.attribute6(I)
            ,personTbl.attribute7(I)
            ,personTbl.attribute8(I)
            ,personTbl.attribute9(I)
            ,personTbl.attribute10(I)
            ,personTbl.attribute11(I)
            ,personTbl.attribute12(I)
            ,personTbl.attribute13(I)
            ,personTbl.attribute14(I)
            ,personTbl.attribute15(I)
            ,personTbl.attribute16(I)
            ,personTbl.attribute17(I)
            ,personTbl.attribute18(I)
            ,personTbl.attribute19(I)
            ,personTbl.attribute20(I)
            ,personTbl.attribute21(I)
            ,personTbl.attribute22(I)
            ,personTbl.attribute23(I)
            ,personTbl.attribute24(I)
            ,personTbl.attribute25(I)
            ,personTbl.attribute26(I)
            ,personTbl.attribute27(I)
            ,personTbl.attribute28(I)
            ,personTbl.attribute29(I)
            ,personTbl.attribute30(I)
            ,personTbl.per_information_category(I)
            ,personTbl.per_information1(I)
            ,personTbl.per_information2(I)
            ,personTbl.per_information3(I)
            ,personTbl.per_information4(I)
            ,personTbl.per_information5(I)
            ,personTbl.per_information6(I)
            ,personTbl.per_information7(I)
            ,personTbl.per_information8(I)
            ,personTbl.per_information9(I)
            ,personTbl.per_information10(I)
            ,personTbl.per_information11(I)
            ,personTbl.per_information12(I)
            ,personTbl.per_information13(I)
            ,personTbl.per_information14(I)
            ,personTbl.per_information15(I)
            ,personTbl.per_information16(I)
            ,personTbl.per_information17(I)
            ,personTbl.per_information18(I)
            ,personTbl.per_information19(I)
            ,personTbl.per_information20(I)
            ,personTbl.per_information21(I)
            ,personTbl.per_information22(I)
            ,personTbl.per_information23(I)
            ,personTbl.per_information24(I)
            ,personTbl.per_information25(I)
            ,personTbl.per_information26(I)
            ,personTbl.per_information27(I)
            ,personTbl.per_information28(I)
            ,personTbl.per_information29(I)
            ,personTbl.per_information30(I)
            ,personTbl.direct_reports(I)
            ,personTbl.total_reports(I)
            );
Line: 1978

PROCEDURE update_per_people(
   errbuf  OUT NOCOPY VARCHAR2
  ,retcode OUT NOCOPY VARCHAR2
  ,p_eff_date IN DATE
  ,p_cnt IN NUMBER
) IS
BEGIN

     g_date := trunc(SYSDATE);
Line: 1989

      UPDATE per_empdir_people
      SET person_key =  personTbl.person_key(I)
          ,orig_system = personTbl.orig_system(I)
          ,orig_system_id = personTbl.orig_sytem_id(I)
          ,business_group_id = personTbl.business_group_id(I)
          ,legislation_code = personTbl.legislation_code(I)
          ,display_name = personTbl.display_name(I)
          ,full_name = personTbl.full_name(I)
          ,full_name_alternate = personTbl.full_name_alternate(I)
          ,last_name = personTbl.last_name(I)
          ,first_name = personTbl.first_name(I)
          ,last_name_alternate = personTbl.last_name_alternate(I)
          ,first_name_alternate = personTbl.first_name_alternate(I)
          ,pre_name_adjunct = personTbl.pre_name_adjunct(I)
          ,person_type = personTbl.person_type(I)
          ,user_name = personTbl.user_name(I)
          ,active = personTbl.active(I)
          ,employee_number = personTbl.employee_number(I)
          ,known_as = personTbl.known_as(I)
          ,middle_names = personTbl.middle_names(I)
          ,previous_last_name = personTbl.previous_last_name(I)
          ,start_date = personTbl.start_date(I)
          ,original_date_of_hire = persontbl.original_doh(i)
          ,email_address = personTbl.email_address(I)
          ,work_telephone = personTbl.work_telephone(I)
          ,mailstop = personTbl.mailstop(I)
          ,office_number = personTbl.office_number(I)
          ,order_name = personTbl.order_name(I)
          ,partition_id = personTbl.partition_id(I)
          ,object_version_number = personTbl.object_version_number(I)
          ,global_person_id = personTbl.global_person_id(I)
          ,party_id = personTbl.party_id(I)
          ,request_id = g_request_id
          ,program_application_id = g_prog_appl_id
          ,program_id = g_prog_id
          ,program_update_date = g_date
          ,last_update_date = g_date
          ,last_updated_by = g_user_id
          ,last_update_login = g_login_id
          ,created_by = g_user_id
          ,creation_date = g_date
          ,attribute_category = personTbl.attribute_category(I)
          ,attribute1 = personTbl.attribute1(I)
          ,attribute2 = personTbl.attribute2(I)
          ,attribute3 = personTbl.attribute3(I)
          ,attribute4 = personTbl.attribute4(I)
          ,attribute5 = personTbl.attribute5(I)
          ,attribute6 = personTbl.attribute6(I)
          ,attribute7 = personTbl.attribute7(I)
          ,attribute8 = personTbl.attribute8(I)
          ,attribute9 = personTbl.attribute9(I)
          ,attribute10 = personTbl.attribute10(I)
          ,attribute11 = personTbl.attribute11(I)
          ,attribute12 = personTbl.attribute12(I)
          ,attribute13 = personTbl.attribute13(I)
          ,attribute14 = personTbl.attribute14(I)
          ,attribute15 = personTbl.attribute15(I)
          ,attribute16 = personTbl.attribute16(I)
          ,attribute17 = personTbl.attribute17(I)
          ,attribute18 = personTbl.attribute18(I)
          ,attribute19 = personTbl.attribute19(I)
          ,attribute20 = personTbl.attribute20(I)
          ,attribute21 = personTbl.attribute21(I)
          ,attribute22 = personTbl.attribute22(I)
          ,attribute23 = personTbl.attribute23(I)
          ,attribute24 = personTbl.attribute24(I)
          ,attribute25 = personTbl.attribute25(I)
          ,attribute26 = personTbl.attribute26(I)
          ,attribute27 = personTbl.attribute27(I)
          ,attribute28 = personTbl.attribute28(I)
          ,attribute29 = personTbl.attribute29(I)
          ,attribute30 = personTbl.attribute30(I)
          ,per_information_category = personTbl.per_information_category(I)
          ,per_information1 = personTbl.per_information1(I)
          ,per_information2 = personTbl.per_information2(I)
          ,per_information3 = personTbl.per_information3(I)
          ,per_information4 = personTbl.per_information4(I)
          ,per_information5 = personTbl.per_information5(I)
          ,per_information6 = personTbl.per_information6(I)
          ,per_information7 = personTbl.per_information7(I)
          ,per_information8 = personTbl.per_information8(I)
          ,per_information9 = personTbl.per_information9(I)
          ,per_information10 = personTbl.per_information10(I)
          ,per_information11 = personTbl.per_information11(I)
          ,per_information12 = personTbl.per_information12(I)
          ,per_information13 = personTbl.per_information13(I)
          ,per_information14 = personTbl.per_information14(I)
          ,per_information15 = personTbl.per_information15(I)
          ,per_information16 = personTbl.per_information16(I)
          ,per_information17 = personTbl.per_information17(I)
          ,per_information18 = personTbl.per_information18(I)
          ,per_information19 = personTbl.per_information19(I)
          ,per_information20 = personTbl.per_information20(I)
          ,per_information21 = personTbl.per_information21(I)
          ,per_information22 = personTbl.per_information22(I)
          ,per_information23 = personTbl.per_information23(I)
          ,per_information24 = personTbl.per_information24(I)
          ,per_information25 = personTbl.per_information25(I)
          ,per_information26 = personTbl.per_information26(I)
          ,per_information27 = personTbl.per_information27(I)
          ,per_information28 = personTbl.per_information28(I)
          ,per_information29 = personTbl.per_information29(I)
          ,per_information30 = personTbl.per_information30(I)
          ,direct_reports = personTbl.direct_reports(I)
          ,total_reports = personTbl.total_reports(I)
       WHERE rowid = personTbl.row_id(I);
Line: 2099

        write_log(1, 'Error in update_per_people: '||SQLCODE);
Line: 2101

END update_per_people;
Line: 2114

   'SELECT  /*+ parallel(ppf) */' ||
    'null,' ||
    'substr(upper(last_name)||'' ''||upper(first_name)||'' ''||upper(last_name)||'' ''||' ||
    'upper(list_name)||'' ''||' ||
    'decode(oi.org_information9' ||
    ' ,''KR'',per_information1||'' ''||per_information2||'' ''||per_information1||'' ''' ||
    ' ,''CN'',per_information14||'' ''||per_information15||'' ''||per_information14||'' ''' ||
    ' ,''JP'',per_information18||'' ''||per_information19||'' ''||per_information18||'' ''' ||
    ' ,'''')||' ||
    'upper(known_as)||'' ''||upper(ppf.email_address)||'' ''||' ||
    'translate(upper(ph.phone_number),''ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\'','' ''),1,2000),' ||
    ''''|| g_srcSystem ||''',' ||
    'ppf.person_id,' ||
    'ppf.business_group_id,' ||
    'oi.org_information9,' ||
    'ppf.list_name display_name,' ||
    'ppf.global_name full_name,' ||
    'ppf.local_name full_name_alternate,' ||
    'nvl(decode(oi.org_information9' ||
    '         ,''KR'', per_information1' ||
    '         ,''CN'', per_information14' ||
    '         ,ppf.last_name),ppf.last_name) last_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', per_information2' ||
    '         ,''CN'', per_information15' ||
    '         ,ppf.first_name) first_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', last_name' ||
    '         ,''CN'', last_name' ||
    '         ,''JP'', per_information18' ||
    '         ,NULL) last_name_alternate,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', first_name' ||
    '         ,''CN'', first_name' ||
    '         ,''JP'', per_information19' ||
    '         ,NULL) first_name_alternate,' ||
    'ppf.pre_name_adjunct,' ||
    'decode(ppf.current_npw_flag, ''Y'', ''C'', ''E'') person_type,' ||
    'NULL user_name,' ||
    '''Y'',' ||
    'ppf.employee_number,' ||
    'ppf.known_as,' ||
    'ppf.middle_names,' ||
    'ppf.previous_last_name,' ||
    'ppf.start_date,' ||
    'ppf.original_date_of_hire,' ||
    'ppf.email_address,' ||
    'ph.phone_number work_telephone,' ||
    'ppf.mailstop,' ||
    'ppf.office_number,' ||
    'ppf.order_name,' ||
    '1,' ||
    'ppf.object_version_number,' ||
    'ppf.global_person_id,' ||
    'ppf.party_id,' ||
    'ppf.attribute_category, ppf.attribute1, ppf.attribute2, ppf.attribute3, ppf.attribute4, ppf.attribute5,' ||
    'ppf.attribute6, ppf.attribute7, ppf.attribute8, ppf.attribute9, ppf.attribute10, ppf.attribute11,' ||
    'ppf.attribute12, ppf.attribute13, ppf.attribute14, ppf.attribute15, ppf.attribute16, ppf.attribute17,' ||
    'ppf.attribute18, ppf.attribute19, ppf.attribute20, ppf.attribute21, ppf.attribute22, ppf.attribute23,' ||
    'ppf.attribute24, ppf.attribute25, ppf.attribute26, ppf.attribute27, ppf.attribute28, ppf.attribute29,' ||
    'ppf.attribute30, ppf.per_information_category, ppf.per_information1, ppf.per_information2,' ||
    'ppf.per_information3, ppf.per_information4, ppf.per_information5, ppf.per_information6,' ||
    'ppf.per_information7, ppf.per_information8, ppf.per_information9, ppf.per_information10,' ||
    'ppf.per_information11, ppf.per_information12, per_information13, per_information14, per_information15,' ||
    'per_information16, per_information17, per_information18, per_information19, per_information20,' ||
    'per_information21, per_information22, per_information23, per_information24, per_information25,' ||
    'per_information26, per_information27, per_information28, per_information29, per_information30' ||
    ',NULL directs' ||
    ',NULL total' ||
   ' FROM per_people_f ppf, per_phones ph, hr_organization_information oi' ||
   ' WHERE :1 BETWEEN effective_start_date AND effective_end_date' ||
   '   AND (current_employee_flag = ''Y'' OR current_npw_flag = ''Y'')' ||
   '   AND ppf.business_group_id = oi.organization_id' ||
   '   AND oi.org_information_context = ''Business Group Information''' ||
   '   AND parent_table(+) = ''PER_ALL_PEOPLE_F''' ||
   '   AND parent_id(+) = ppf.person_id' ||
   '   AND phone_type(+) = ''W1''' ||
   '   AND :2 BETWEEN date_from(+) AND nvl(date_to(+),:3 + 1)' ||
   '/* Avoiding PK Violation */' ||
   '   AND ppf.person_id NOT IN' ||
   '             (SELECT person_id FROM per_all_people_f ippf' ||
   '              WHERE :4 BETWEEN effective_start_date AND effective_end_date' ||
   '              GROUP BY person_id HAVING count(*) > 1)';
Line: 2199

                             '	(SELECT person_id FROM per_all_people_f lppf'||
                             '    WHERE label_to_char(lppf.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lppf.HR_ENTERPRISE) is null)';
Line: 2206

   'SELECT  /*+ parallel(ppf) */' ||
    'hrdp.rowid,' ||
    'substr(upper(ppf.last_name)||'' ''||upper(ppf.first_name)||'' ''||upper(ppf.last_name)||'' ''||' ||
    'upper(ppf.list_name)||'' ''||' ||
    'decode(oi.org_information9' ||
    ',''KR'',ppf.per_information1||'' ''||ppf.per_information2||'' ''||ppf.per_information1||'' ''' ||
    ' ,''CN'',ppf.per_information14||'' ''||ppf.per_information15||'' ''||ppf.per_information14||'' ''' ||
    ' ,''JP'',ppf.per_information18||'' ''||ppf.per_information19||'' ''||ppf.per_information18||'' ''' ||
    ' ,'''')||' ||
    'upper(ppf.known_as)||'' ''||upper(ppf.email_address)||'' ''||' ||
    'translate(upper(ph.phone_number),''ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\'','' ''),1,2000),' ||
    '''' || g_srcSystem || ''',' ||
    'ppf.person_id,' ||
    'ppf.business_group_id,' ||
    'oi.org_information9,' ||
    'ppf.list_name display_name,' ||
    'ppf.global_name full_name,' ||
    'ppf.local_name full_name_alternate,' ||
    'nvl(decode(oi.org_information9' ||
    '         ,''KR'', ppf.per_information1' ||
    '         ,''CN'', ppf.per_information14' ||
    '         ,ppf.last_name),ppf.last_name) last_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', ppf.per_information2' ||
    '         ,''CN'', ppf.per_information15' ||
    '         ,ppf.first_name) first_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', ppf.last_name' ||
    '         ,''CN'', ppf.last_name' ||
    '         ,''JP'', ppf.per_information18' ||
    '         ,NULL) last_name_alternate,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', ppf.first_name' ||
    '         ,''CN'', ppf.first_name' ||
    '         ,''JP'', ppf.per_information19' ||
    '         ,NULL) first_name_alternate,' ||
    'ppf.pre_name_adjunct,' ||
    'decode(ppf.current_npw_flag, ''Y'', ''C'', ''E'') person_type,' ||
    'NULL user_name,' ||
    'decode (nvl(ppf.current_employee_flag,''N''), ''Y'', ''Y'',' ||
    '   decode(ppf.current_npw_flag,''Y'',''Y'',''N'')) active,' ||
    'ppf.employee_number,' ||
    'ppf.known_as,' ||
    'ppf.middle_names,' ||
    'ppf.previous_last_name,' ||
    'ppf.start_date,' ||
    'ppf.original_date_of_hire,' ||
    'ppf.email_address,' ||
    'ph.phone_number work_telephone,' ||
    'ppf.mailstop,' ||
    'ppf.office_number,' ||
    'ppf.order_name,' ||
    '1,' ||
    'ppf.object_version_number,' ||
    'ppf.global_person_id,' ||
    'ppf.party_id,' ||
    'ppf.attribute_category, ppf.attribute1, ppf.attribute2, ppf.attribute3, ppf.attribute4, ppf.attribute5,' ||
    'ppf.attribute6, ppf.attribute7, ppf.attribute8, ppf.attribute9, ppf.attribute10, ppf.attribute11,' ||
    'ppf.attribute12, ppf.attribute13, ppf.attribute14, ppf.attribute15, ppf.attribute16, ppf.attribute17,' ||
    'ppf.attribute18, ppf.attribute19, ppf.attribute20, ppf.attribute21, ppf.attribute22, ppf.attribute23,' ||
    'ppf.attribute24, ppf.attribute25, ppf.attribute26, ppf.attribute27, ppf.attribute28, ppf.attribute29,' ||
    'ppf.attribute30, ppf.per_information_category, ppf.per_information1, ppf.per_information2,' ||
    'ppf.per_information3, ppf.per_information4, ppf.per_information5, ppf.per_information6,' ||
    'ppf.per_information7, ppf.per_information8, ppf.per_information9, ppf.per_information10,' ||
    'ppf.per_information11, ppf.per_information12, ppf.per_information13, ppf.per_information14,' ||
    'ppf.per_information15, ppf.per_information16, ppf.per_information17, ppf.per_information18,' ||
    'ppf.per_information19, ppf.per_information20, ppf.per_information21, ppf.per_information22,' ||
    'ppf.per_information23, ppf.per_information24, ppf.per_information25, ppf.per_information26,' ||
    'ppf.per_information27, ppf.per_information28, ppf.per_information29, ppf.per_information30' ||
    ',hrdp.direct_reports' ||
    ',hrdp.total_reports ' ||
   ' FROM per_people_f ppf, per_phones ph' ||
   '     ,hr_organization_information oi, per_empdir_people hrdp' ||
   ' WHERE :1 BETWEEN effective_start_date AND effective_end_date' ||
   '   AND hrdp.orig_system = ''' || g_srcSystem || '''' ||
   '   AND ppf.person_id = hrdp.orig_system_id' ||
   '   AND (ppf.object_version_number <> hrdp.object_version_number OR' ||
   '     nvl(hrdp.work_telephone,''#'') <> nvl(ph.phone_number,''#'')  OR' ||
   '     ppf.effective_start_date >=  hrdp.last_update_date) ' ||
   '   AND ppf.business_group_id = oi.organization_id' ||
   '   AND oi.org_information_context =''Business Group Information''' ||
   '   AND ph.parent_table(+) = ''PER_ALL_PEOPLE_F''' ||
   '   AND ph.parent_id(+) = ppf.person_id' ||
   '   AND ph.phone_type(+) = ''W1''' ||
   '   AND :2 BETWEEN date_from(+) AND nvl(date_to(+),:3 +1)';
Line: 2293

                             '	(SELECT person_id FROM per_all_people_f lppf'||
                             '    WHERE label_to_char(lppf.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lppf.HR_ENTERPRISE) is null)';
Line: 2299

   'SELECT  /*+ parallel(ppf) */' ||
    'null,' ||
    'substr(upper(last_name)||'' ''||upper(first_name)||'' ''||upper(last_name)||'' ''||' ||
    'upper(list_name)||'' ''||' ||
    'decode(oi.org_information9' ||
    ' ,''KR'',per_information1||'' ''||per_information2||'' ''||per_information1||'' ''' ||
    ' ,''CN'',per_information14||'' ''||per_information15||'' ''||per_information14||'' ''' ||
    ' ,''JP'',per_information18||'' ''||per_information19||'' ''||per_information18||'' ''' ||
    ' ,'''')||' ||
    'upper(known_as)||'' ''||upper(ppf.email_address)||'' ''||' ||
    'translate(upper(ph.phone_number),''ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\'','' ''),1,2000),' ||
    ''''|| g_srcSystem ||''',' ||
    'ppf.person_id,' ||
    'ppf.business_group_id,' ||
    'oi.org_information9,' ||
    'ppf.list_name display_name,' ||
    'ppf.global_name full_name,' ||
    'ppf.local_name full_name_alternate,' ||
    'nvl(decode(oi.org_information9' ||
    '         ,''KR'', per_information1' ||
    '         ,''CN'', per_information14' ||
    '         ,ppf.last_name),ppf.last_name) last_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', per_information2' ||
    '         ,''CN'', per_information15' ||
    '         ,ppf.first_name) first_name,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', last_name' ||
    '         ,''CN'', last_name' ||
    '         ,''JP'', per_information18' ||
    '         ,NULL) last_name_alternate,' ||
    'decode(oi.org_information9' ||
    '         ,''KR'', first_name' ||
    '         ,''CN'', first_name' ||
    '         ,''JP'', per_information19' ||
    '         ,NULL) first_name_alternate,' ||
    'ppf.pre_name_adjunct,' ||
    'decode(ppf.current_npw_flag, ''Y'', ''C'', ''E'') person_type,' ||
    'NULL user_name,' ||
    '''Y'',' ||
    'ppf.employee_number,' ||
    'ppf.known_as,' ||
    'ppf.middle_names,' ||
    'ppf.previous_last_name,' ||
    'ppf.start_date,' ||
    'ppf.original_date_of_hire,' ||
    'ppf.email_address,' ||
    'ph.phone_number work_telephone,' ||
    'ppf.mailstop,' ||
    'ppf.office_number,' ||
    'ppf.order_name,' ||
    '1,' ||
    'ppf.object_version_number,' ||
    'ppf.global_person_id,' ||
    'ppf.party_id,' ||
    'ppf.attribute_category, ppf.attribute1, ppf.attribute2, ppf.attribute3, ppf.attribute4, ppf.attribute5,' ||
    'ppf.attribute6, ppf.attribute7, ppf.attribute8, ppf.attribute9, ppf.attribute10, ppf.attribute11,' ||
    'ppf.attribute12, ppf.attribute13, ppf.attribute14, ppf.attribute15, ppf.attribute16, ppf.attribute17,' ||
    'ppf.attribute18, ppf.attribute19, ppf.attribute20, ppf.attribute21, ppf.attribute22, ppf.attribute23,' ||
    'ppf.attribute24, ppf.attribute25, ppf.attribute26, ppf.attribute27, ppf.attribute28, ppf.attribute29,' ||
    'ppf.attribute30, ppf.per_information_category, ppf.per_information1, ppf.per_information2,' ||
    'ppf.per_information3, ppf.per_information4, ppf.per_information5, ppf.per_information6,' ||
    'ppf.per_information7, ppf.per_information8, ppf.per_information9, ppf.per_information10,' ||
    'ppf.per_information11, ppf.per_information12, per_information13, per_information14, per_information15,' ||
    'per_information16, per_information17, per_information18, per_information19, per_information20,' ||
    'per_information21, per_information22, per_information23, per_information24, per_information25,' ||
    'per_information26, per_information27, per_information28, per_information29, per_information30' ||
    ',NULL directs' ||
    ',NULL total' ||
   ' FROM per_people_f ppf, per_phones ph, hr_organization_information oi' ||
   ' WHERE :1 BETWEEN effective_start_date AND effective_end_date' ||
   '   AND (current_employee_flag = ''Y'' OR current_npw_flag = ''Y'')' ||
   '   AND ppf.business_group_id = oi.organization_id' ||
   '   AND oi.org_information_context = ''Business Group Information''' ||
   '   AND parent_table(+) = ''PER_ALL_PEOPLE_F''' ||
   '   AND parent_id(+) = ppf.person_id' ||
   '   AND phone_type(+) = ''W1''' ||
   '   AND :2 BETWEEN date_from(+) AND nvl(date_to(+),:3 + 1)' ||
   '/* Avoiding PK Violation */' ||
   '   AND ppf.person_id NOT IN' ||
   '             (SELECT person_id FROM per_all_people_f ippf' ||
   '              WHERE :4 BETWEEN effective_start_date AND effective_end_date' ||
   '              GROUP BY person_id HAVING count(*) > 1)' ||
   '/* Picking up not exists from per_empdir_people */' ||
   '   AND NOT EXISTS (SELECT ''e'' from per_empdir_people ip' ||
   '              WHERE ip.orig_system_id = ppf.person_id' ||
   '                AND ip.orig_system = ''' || g_srcSystem || ''')';
Line: 2388

                             '	(SELECT person_id FROM per_all_people_f lppf'||
                             '    WHERE label_to_char(lppf.HR_ENTERPRISE) = ''C::ENT'' OR label_to_char(lppf.HR_ENTERPRISE) is null)';
Line: 2542

               update_per_people(
                  errbuf
                 ,retcode
                 ,p_eff_date
                 ,personTbl.person_key.count
               );
Line: 2591

    write_log(1, 'Total # of records updated for per_empdir_people: '||l_cnt);
Line: 2592

    write_log(2, 'Total # of records updated for per_empdir_people: '||l_cnt);
Line: 2665

    UPDATE per_empdir_locations_tl loc
      SET (orig_system, orig_system_id, location_code, description,
         language, source_lang, object_version_number, partition_id,
         last_update_date, last_update_by, created_by, creation_date,
         request_id, program_application_id, program_id, program_update_date)
        = (SELECT
         g_srcSystem, ltl.location_id, ltl.location_code, ltl.description,
         ltl.language, ltl.source_lang, l.object_version_number, 1,
         g_date, g_user_id, g_user_id, g_date, g_request_id,
         g_prog_appl_id, g_prog_id, g_date
         FROM hr_locations_all_tl ltl, hr_locations_all l
         WHERE ltl.location_id = l.location_id
         AND ltl.language = loc.language
         AND ltl.location_id = loc.orig_system_id
         AND loc.orig_system = g_srcSystem)
    WHERE EXISTS (SELECT 'e' FROM hr_locations_all ol
                  WHERE loc.object_version_number <> ol.object_version_number
                  AND loc.orig_system_id = ol.location_id
                  AND loc.orig_system = g_srcSystem)
    AND loc.orig_system = g_srcSystem;
Line: 2689

   write_log(1, 'Total # of records updated for per_empdir_locations_tl: '||l_cnt);
Line: 2690

   write_log(2, 'Total # of records updated for per_empdir_locations_tl: '||l_cnt);
Line: 2692

   INSERT  /*+ parallel(loc) append */ INTO per_empdir_locations_tl loc(
	ORIG_SYSTEM,
	ORIG_SYSTEM_ID,
 	LOCATION_CODE,
	DESCRIPTION,
	LANGUAGE,
	SOURCE_LANG,
	OBJECT_VERSION_NUMBER,
        PARTITION_ID ,
	LAST_UPDATE_DATE,
	LAST_UPDATE_BY,
	CREATED_BY ,
	CREATION_DATE,
	REQUEST_ID,
	PROGRAM_APPLICATION_ID,
	PROGRAM_ID,
	PROGRAM_UPDATE_DATE)
   SELECT  /*+ parallel(ltl) */
         g_srcSystem,
         ltl.location_id,
         ltl.location_code,
         ltl.description,
         ltl.language,
         ltl.source_lang,
         l.object_version_number,
         1,
         g_date,
         g_user_id,
         g_user_id,
         g_date,
         g_request_id,
         g_prog_appl_id,
         g_prog_id,
         g_date
   FROM  hr_locations_all_tl ltl, hr_locations_all l, per_empdir_locations pel
   WHERE ltl.location_id = l.location_id
   AND   pel.orig_system_id = l.location_id
   AND   pel.orig_system = g_srcSystem
   AND NOT EXISTS (SELECT 'e' from per_empdir_locations_tl il
                   WHERE il.orig_system_id = ltl.location_id
                   AND il.orig_system = g_srcSystem);
Line: 2763

    UPDATE per_empdir_phones p
      SET (orig_system, orig_system_id, date_from, date_to, phone_type, phone_number,
         phone_key, parent_id, parent_table, object_version_number,
         partition_id, request_id, program_application_id, program_id,
         program_update_date, last_update_date, last_updated_by,
         last_update_login, created_by, creation_date)
            = (SELECT
         g_srcSystem, phone_id, date_from, date_to, phone_type, phone_number,
         nvl(translate(upper(phone_number),'ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\',' '),'##'),
         parent_id, parent_table, object_version_number, 1,
         g_request_id, g_prog_appl_id, g_prog_id, g_date,
         g_date, g_user_id, g_login_id, g_user_id, g_date
         FROM per_phones ph
         WHERE p_eff_date BETWEEN DATE_FROM AND nvl(DATE_TO, p_eff_date+1)
         AND ph.phone_id = p.orig_system_id
         AND p.orig_system = g_srcSystem)
    WHERE EXISTS (SELECT 'e' FROM per_phones oph
               WHERE p.object_version_number <> oph.object_version_number
			   AND p_eff_date BETWEEN DATE_FROM AND nvl(DATE_TO, p_eff_date+1)-- Added for bug#13862147
               AND p.orig_system_id = oph.phone_id
               AND p.orig_system = g_srcSystem)
    AND p.orig_system = g_srcSystem;
Line: 2789

   write_log(1, 'Total # of records updated for per_empdir_phones: '||l_cnt);
Line: 2790

   write_log(2, 'Total # of records updated for per_empdir_phones: '||l_cnt);
Line: 2792

   INSERT  /*+ parallel(hrd) append */ INTO per_empdir_phones hrd(
	ORIG_SYSTEM ,
	ORIG_SYSTEM_ID ,
	DATE_FROM,
	DATE_TO ,
	PHONE_TYPE ,
	PHONE_NUMBER,
	PHONE_KEY ,
	PARENT_ID,
	PARENT_TABLE,
	OBJECT_VERSION_NUMBER,
	PARTITION_ID,
	REQUEST_ID,
	PROGRAM_APPLICATION_ID,
	PROGRAM_ID,
	PROGRAM_UPDATE_DATE,
	LAST_UPDATE_DATE,
	LAST_UPDATED_BY,
	LAST_UPDATE_LOGIN,
	CREATED_BY ,
	CREATION_DATE)
  select  /*+ parallel(ph) */
         g_srcSystem,
         phone_id,
         date_from,
         date_to,
         phone_type,
         phone_number,
         nvl(translate(upper(phone_number),'ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\',' '),'##'),
         parent_id,
         parent_table,
         object_version_number,
         1,
         g_request_id,
         g_prog_appl_id,
         g_prog_id,
         g_date,
         g_date,
         g_user_id,
         g_login_id,
         g_user_id,
         g_date
   FROM per_phones ph
   WHERE p_eff_date BETWEEN DATE_FROM AND nvl(DATE_TO, p_eff_date+1)
   /* Picking up not exists from per_empdir_phones */
   AND NOT EXISTS (SELECT 'e' from per_empdir_phones iph
        WHERE iph.orig_system_id = ph.phone_id
        AND iph.orig_system = g_srcSystem);
Line: 2879

    write_log(1, 'Total # of records updated for per_empdir_locations: '||l_cnt);
Line: 2880

    write_log(2, 'Total # of records updated for per_empdir_locations: '||l_cnt);
Line: 2950

    write_log(1, 'Total # of records updated for per_empdir_jobs: '||l_ucnt);
Line: 2951

    write_log(2, 'Total # of records updated for per_empdir_jobs: '||l_ucnt);
Line: 2988

    write_log(1, 'Total # of records updated for per_empdir_positions: '||l_cnt);
Line: 2989

    write_log(2, 'Total # of records updated for per_empdir_positions: '||l_cnt);
Line: 3033

    write_log(1, 'Total # of records updated for per_empdir_organizations: '||l_cnt);
Line: 3034

    write_log(2, 'Total # of records updated for per_empdir_organizations: '||l_cnt);
Line: 3081

    write_log(1, 'Total # of records updated for per_empdir_assignments: '||l_cnt);
Line: 3082

    write_log(2, 'Total # of records updated for per_empdir_assignments: '||l_cnt);
Line: 3196

   INSERT  /*+ parallel(hrd) append */ INTO per_empdir_phones hrd(
	ORIG_SYSTEM ,
	ORIG_SYSTEM_ID ,
	DATE_FROM,
	DATE_TO ,
	PHONE_TYPE ,
	PHONE_NUMBER,
	PHONE_KEY ,
	PARENT_ID,
	PARENT_TABLE,
	OBJECT_VERSION_NUMBER,
	PARTITION_ID,
	REQUEST_ID,
	PROGRAM_APPLICATION_ID,
	PROGRAM_ID,
	PROGRAM_UPDATE_DATE,
	LAST_UPDATE_DATE,
	LAST_UPDATED_BY,
	LAST_UPDATE_LOGIN,
	CREATED_BY ,
	CREATION_DATE)
   SELECT  /*+ parallel(ph) */
         g_srcSystem,
         phone_id,
         date_from,
         date_to,
         phone_type,
         phone_number,
         nvl(translate(upper(phone_number),'ABCDEFGHIJKLMNOPQRSTUVWXYZ ,.-()x/\',' '),'##'),
         parent_id,
         parent_table,
         object_version_number,
         1,
         g_request_id,
         g_prog_appl_id,
         g_prog_id,
         g_date,
         g_date,
         g_user_id,
         g_login_id,
         g_user_id,
         g_date
   FROM per_phones
   WHERE p_eff_date BETWEEN DATE_FROM AND nvl(DATE_TO, p_eff_date+1);
Line: 3273

   INSERT  /*+ parallel(loc) append */ INTO per_empdir_locations_tl loc(
	ORIG_SYSTEM,
	ORIG_SYSTEM_ID,
 	LOCATION_CODE,
	DESCRIPTION,
	LANGUAGE,
	SOURCE_LANG,
	OBJECT_VERSION_NUMBER,
	PARTITION_ID ,
	LAST_UPDATE_DATE,
	LAST_UPDATE_BY,
	CREATED_BY ,
	CREATION_DATE,
	REQUEST_ID,
	PROGRAM_APPLICATION_ID,
	PROGRAM_ID,
	PROGRAM_UPDATE_DATE)
   SELECT  /*+ parallel(ltl) */
         g_srcSystem,
         ltl.location_id,
         ltl.location_code,
         ltl.description,
         ltl.language,
         ltl.source_lang,
         l.object_version_number,
         1,
         g_date,
         g_user_id,
         g_user_id,
         g_date,
         g_request_id,
         g_prog_appl_id,
         g_prog_id,
         g_date
   from  hr_locations_all_tl ltl, hr_locations_all l
   where ltl.location_id = l.location_id;
Line: 3458

/* inserting the blob columns from per_images to per_empdir_images if not exist
 *  * already*/

     INSERT INTO per_empdir_images
       (image_id,
        orig_system,
        orig_system_id,
        image_name,
        content_type,
        image,
        object_version_number)
    SELECT per_empdir_images_s.nextval
          ,'PER'
          ,pi.parent_id
          ,pi.parent_id
          ,null
          ,pi.image
          ,1
      FROM per_images pi
     WHERE pi.table_name='PER_PEOPLE_F'
       AND NOT EXISTS ( SELECT 'X'FROM per_empdir_images pei
                        WHERE pei.orig_system='PER'
                          AND pei.orig_system_id=pi.parent_id);
Line: 3494

 delete from per_empdir_images
   where orig_system_id not in(
   select parent_id from per_images
   where table_name='PER_PEOPLE_F')
   and orig_system = 'PER' ;
Line: 3522

  L_LAST_UPDATE_DATE DATE;
Line: 3523

  L_LAST_UPDATED_BY NUMBER(15,0):=0;
Line: 3524

  L_LAST_UPDATE_LOGIN NUMBER(15,0):=0;
Line: 3528

   Cursor update_emp_dirimages_cur is
      Select pi.parent_id parent_id
         From per_images pi,per_empdir_images pei
        Where pi.table_name='PER_PEOPLE_F'
          And pi.parent_id =pei.orig_system_id
          And pei.orig_system='PER'
          And trunc(pei.last_update_date) <= trunc(sysdate);
Line: 3544

    FOR update_emp_dirimages_rec IN update_emp_dirimages_cur
    LOOP

    SELECT IMAGE_ID,ORIG_SYSTEM,ORIG_SYSTEM_ID,NVL(IMAGE_NAME,' '),NVL(CONTENT_TYPE,' '),
    NVL(OBJECT_VERSION_NUMBER,0),NVL(LAST_UPDATE_DATE,SYSDATE),
    NVL(LAST_UPDATED_BY,0),NVL(LAST_UPDATE_LOGIN,0),NVL(CREATED_BY,0),NVL(CREATION_DATE,SYSDATE) INTO
    L_IMAGE_ID,L_ORIG_SYSTEM,L_ORIG_SYSTEM_ID,L_IMAGE_NAME,L_CONTENT_TYPE,L_OBJECT_VERSION_NUMBER,L_LAST_UPDATE_DATE,
    L_LAST_UPDATED_BY,L_LAST_UPDATE_LOGIN,L_CREATED_BY,L_CREATION_DATE
    FROM PER_EMPDIR_IMAGES
    WHERE ORIG_SYSTEM_ID = update_emp_dirimages_rec.parent_id
    AND orig_system='PER';
Line: 3556

    DELETE FROM PER_EMPDIR_IMAGES
    WHERE ORIG_SYSTEM_ID = update_emp_dirimages_rec.parent_id
    AND orig_system='PER';
Line: 3560

    INSERT INTO PER_EMPDIR_IMAGES
    (IMAGE_ID,ORIG_SYSTEM,ORIG_SYSTEM_ID,IMAGE_NAME,CONTENT_TYPE,IMAGE,OBJECT_VERSION_NUMBER,LAST_UPDATE_DATE,
     LAST_UPDATED_BY,LAST_UPDATE_LOGIN,CREATED_BY,CREATION_DATE)
    SELECT L_IMAGE_ID,L_ORIG_SYSTEM,L_ORIG_SYSTEM_ID,L_IMAGE_NAME,L_CONTENT_TYPE,
    image,
    L_OBJECT_VERSION_NUMBER,L_LAST_UPDATE_DATE,
    L_LAST_UPDATED_BY,L_LAST_UPDATE_LOGIN,L_CREATED_BY,L_CREATION_DATE
    FROM per_images
    WHERE table_name='PER_PEOPLE_F'
	AND PARENT_ID = update_emp_dirimages_rec.parent_id;
Line: 3582

   write_log(1, 'Total # of records updated for per_empdir_images: '||l_cnt);
Line: 3583

   write_log(2, 'Total # of records updated for per_empdir_images: '||l_cnt);
Line: 3584

/* inserting the blob columns from per_images to per_empdir_images if not exist
 *  * already*/
    l_cnt :=0;
Line: 3587

    INSERT INTO per_empdir_images
       (image_id,
        orig_system,
        orig_system_id,
        image_name,
        content_type,
        image,
        object_version_number)
    SELECT per_empdir_images_s.nextval
          ,'PER'
          ,pi.parent_id
          ,pi.parent_id
          ,null
          ,pi.image
          ,1
      FROM per_images pi
     WHERE pi.table_name='PER_PEOPLE_F'
       AND NOT EXISTS ( SELECT 'X'FROM per_empdir_images pei
                        WHERE pei.orig_system='PER'
                          AND pei.orig_system_id=pi.parent_id);
Line: 3618

     delete from per_empdir_images
   where orig_system_id not in(
   select parent_id from per_images
   where table_name='PER_PEOPLE_F')
   and orig_system = 'PER' ;