DBA Data[Home] [Help]

APPS.HR_FULL_SYNC_MESSAGES dependencies on HR_FULL_SYNC_MESSAGES

Line 1: PACKAGE BODY HR_FULL_SYNC_MESSAGES as

1: PACKAGE BODY HR_FULL_SYNC_MESSAGES as
2: /* $Header: perhrhdfull.pkb 120.9 2008/03/19 09:52:12 sathkris noship $ */
3:
4: TYPE EMPLIDTYPE IS TABLE OF per_all_people_f.employee_number%type INDEX BY BINARY_INTEGER;
5: TYPE EMPL_RCDTYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;

Line 187: hr_full_sync_messages.insert_psft_sync_run(2,'STATE_FULL_SYNC',errbuf,retcode);

183: FND_FILE.NEW_LINE(FND_FILE.log, 1);
184: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
185: FND_FILE.put_line(fnd_file.log,'State Full synch Data Extraction Begins:'||to_char(p_effective_date,
186: 'DD/MM/RRRR HH:MI:SS'));
187: hr_full_sync_messages.insert_psft_sync_run(2,'STATE_FULL_SYNC',errbuf,retcode);
188:
189: open fet_state_sync;
190: loop
191: fetch fet_state_sync into p_cntry_code,p_state_code,p_state_desc,p_enabled_flag;

Line 200: hr_full_sync_messages.update_psft_sync_run(1,'STATE_FULL_SYNC',p_effective_date,errbuf,retcode);

196: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
197: end loop;
198: close fet_state_sync;
199:
200: hr_full_sync_messages.update_psft_sync_run(1,'STATE_FULL_SYNC',p_effective_date,errbuf,retcode);
201: FND_FILE.NEW_LINE(FND_FILE.log, 1);
202: FND_FILE.put_line(fnd_file.log,'State Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
203: end if;
204:

Line 208: hr_full_sync_messages.update_psft_sync_run(3,'STATE_FULL_SYNC',p_effective_date,errbuf,retcode);

204:
205:
206: exception
207: when OTHERS then
208: hr_full_sync_messages.update_psft_sync_run(3,'STATE_FULL_SYNC',p_effective_date,errbuf,retcode);
209: errbuf := errbuf||SQLERRM;
210: retcode := '1';
211: FND_FILE.put_line(fnd_file.log, 'Error in State Data Full Synch Extraction: '||SQLCODE);
212: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 255: hr_full_sync_messages.insert_psft_sync_run(2,'COUNTRY_FULL_SYNC',errbuf,retcode);

251: then
252: FND_FILE.NEW_LINE(FND_FILE.log, 1);
253: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
254: FND_FILE.put_line(fnd_file.log,'Country Full Synch Data Extraction Begins:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
255: hr_full_sync_messages.insert_psft_sync_run(2,'COUNTRY_FULL_SYNC',errbuf,retcode);
256: open fet_cntry_fsync;
257: loop
258: fetch fet_cntry_fsync into p_cntry_code,p_cntry_desc,p_cntry_code,p_obsolete_flag;
259: exit when fet_cntry_fsync%notfound;

Line 267: hr_full_sync_messages.update_psft_sync_run(1,'COUNTRY_FULL_SYNC',p_effective_date,errbuf,retcode);

263: end loop;
264: close fet_cntry_fsync;
265:
266:
267: hr_full_sync_messages.update_psft_sync_run(1,'COUNTRY_FULL_SYNC',p_effective_date,errbuf,retcode);
268: FND_FILE.NEW_LINE(FND_FILE.log, 1);
269: FND_FILE.put_line(fnd_file.log,'Country Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
270:
271: end if;

Line 275: hr_full_sync_messages.update_psft_sync_run(3,'COUNTRY_FULL_SYNC',p_effective_date,errbuf,retcode);

271: end if;
272:
273: exception
274: when OTHERS then
275: hr_full_sync_messages.update_psft_sync_run(3,'COUNTRY_FULL_SYNC',p_effective_date,errbuf,retcode);
276: errbuf := errbuf||SQLERRM;
277: retcode := '1';
278: FND_FILE.put_line(fnd_file.log, 'Error in Country Data Full Synch Extraction: '||SQLCODE);
279: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 375: hr_full_sync_messages.insert_psft_sync_run(2,'LOC_FULL_SYNC',errbuf,retcode);

371: then
372: FND_FILE.NEW_LINE(FND_FILE.log, 1);
373: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
374: FND_FILE.put_line(fnd_file.log,'Location Full Synch Data Extraction Begins:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
375: hr_full_sync_messages.insert_psft_sync_run(2,'LOC_FULL_SYNC',errbuf,retcode);
376:
377: open fet_loc_sync;
378: loop
379: fetch fet_loc_sync into p_bg_id,p_loc_id,p_active_date,p_effecive_status,

Line 405: hr_full_sync_messages.update_psft_sync_run(1,'LOC_FULL_SYNC',p_effective_date,errbuf,retcode);

401: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
402: end loop;
403: close fet_loc_sync;
404:
405: hr_full_sync_messages.update_psft_sync_run(1,'LOC_FULL_SYNC',p_effective_date,errbuf,retcode);
406: FND_FILE.NEW_LINE(FND_FILE.log, 1);
407: FND_FILE.put_line(fnd_file.log,'Location Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
408:
409: end if;

Line 413: hr_full_sync_messages.update_psft_sync_run(3,'LOC_FULL_SYNC',p_effective_date,errbuf,retcode);

409: end if;
410:
411: exception
412: when OTHERS then
413: hr_full_sync_messages.update_psft_sync_run(3,'LOC_FULL_SYNC',p_effective_date,errbuf,retcode);
414: errbuf := errbuf||SQLERRM;
415: retcode := '1';
416: FND_FILE.put_line(fnd_file.log, 'Error in Location Full Synch Data Extraction: '||SQLCODE);
417: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 584: hr_full_sync_messages.insert_psft_sync_run(2,'PERSON_FULL_SYNC',errbuf,retcode);

580:
581: FND_FILE.NEW_LINE(FND_FILE.log, 1);
582: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
583: FND_FILE.put_line(fnd_file.log,'Person Full Synch Data Extraction Begins:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
584: hr_full_sync_messages.insert_psft_sync_run(2,'PERSON_FULL_SYNC',errbuf,retcode);
585:
586: open csr_person_data;
587: loop
588: fetch csr_person_data into L_EMPLOYEE_NUMBER,L_USER_PERSON_TYPE,L_DATE_OF_BIRTH,L_TOWN_OF_BIRTH,L_COUNTRY_OF_BIRTH

Line 612: hr_full_sync_messages.update_psft_sync_run(1,'PERSON_FULL_SYNC',l_current_date,errbuf,retcode);

608: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
609: end loop;
610: close csr_person_data;
611:
612: hr_full_sync_messages.update_psft_sync_run(1,'PERSON_FULL_SYNC',l_current_date,errbuf,retcode);
613: FND_FILE.NEW_LINE(FND_FILE.log, 1);
614: FND_FILE.put_line(fnd_file.log,'Person Full Synch Data Extraction Ends:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
615:
616: END if;

Line 620: hr_full_sync_messages.update_psft_sync_run(3,'PERSON_FULL_SYNC',l_current_date,errbuf,retcode);

616: END if;
617:
618: exception
619: when OTHERS then
620: hr_full_sync_messages.update_psft_sync_run(3,'PERSON_FULL_SYNC',l_current_date,errbuf,retcode);
621: errbuf := errbuf||SQLERRM;
622: retcode := '1';
623: FND_FILE.put_line(fnd_file.log, 'Error in Person Full Synch Data Extraction: '||SQLCODE);
624: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 662: hr_full_sync_messages.insert_psft_sync_run(2,'JOBCODE_FULL_SYNC',errbuf,retcode);

658:
659: FND_FILE.NEW_LINE(FND_FILE.log, 1);
660: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
661: FND_FILE.put_line(fnd_file.log,'Job Code Full Synch Data Extraction Begins:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
662: hr_full_sync_messages.insert_psft_sync_run(2,'JOBCODE_FULL_SYNC',errbuf,retcode);
663:
664: OPEN jobcode_full FOR
665: SELECT BUSINESS_GROUP_ID SETID,
666: JOB_ID JOBCODE,

Line 711: hr_full_sync_messages.update_psft_sync_run(1,'JOBCODE_FULL_SYNC',l_current_date,errbuf,retcode);

707: );
708: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
709: END Loop;
710: end if;
711: hr_full_sync_messages.update_psft_sync_run(1,'JOBCODE_FULL_SYNC',l_current_date,errbuf,retcode);
712: FND_FILE.NEW_LINE(FND_FILE.log, 1);
713: FND_FILE.put_line(fnd_file.log,'Job Code Full Synch Data Extraction Ends:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
714:
715: EXCEPTION WHEN OTHERS THEN

Line 757: hr_full_sync_messages.insert_psft_sync_run(2,'WORKFORCE_FULL_SYNC',errbuf,retcode);

753:
754: FND_FILE.NEW_LINE(FND_FILE.log, 1);
755: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
756: FND_FILE.put_line(fnd_file.log,'Workforce Full Synch Data Extraction Begins:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
757: hr_full_sync_messages.insert_psft_sync_run(2,'WORKFORCE_FULL_SYNC',errbuf,retcode);
758:
759: OPEN workforce_full FOR
760: SELECT ppf.employee_number,1 AS empl_rcd ,ppf.original_date_of_hire,
761: pas.probation_period,pas.effective_start_date effdt,pas.organization_id,

Line 852: hr_full_sync_messages.update_psft_sync_run(1,'WORKFORCE_FULL_SYNC',l_current_date,errbuf,retcode);

848:
849: FND_FILE.NEW_LINE(FND_FILE.output, 1);
850: END Loop;
851:
852: hr_full_sync_messages.update_psft_sync_run(1,'WORKFORCE_FULL_SYNC',l_current_date,errbuf,retcode);
853: FND_FILE.NEW_LINE(FND_FILE.log, 1);
854: FND_FILE.put_line(fnd_file.log,'Work Force Full Synch Data Extraction Ends:'||to_char(l_current_date, 'DD/MM/RRRR HH:MI:SS'));
855:
856: End if;

Line 860: hr_full_sync_messages.update_psft_sync_run(3,'WORKFORCE_FULL_SYNC',l_current_date,errbuf,retcode);

856: End if;
857:
858: EXCEPTION
859: WHEN OTHERS THEN
860: hr_full_sync_messages.update_psft_sync_run(3,'WORKFORCE_FULL_SYNC',l_current_date,errbuf,retcode);
861: errbuf := errbuf||SQLERRM;
862: retcode := '1';
863: FND_FILE.put_line(fnd_file.log, 'Error in workforce_fullsync: '||SQLCODE);
864: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 927: hr_full_sync_messages.insert_psft_sync_run(2,'ORG_FULL_SYNC',errbuf,retcode);

923: then
924: FND_FILE.NEW_LINE(FND_FILE.log, 1);
925: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
926: FND_FILE.put_line(fnd_file.log,'Organization Full Synch Data Extraction Begins:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
927: hr_full_sync_messages.insert_psft_sync_run(2,'ORG_FULL_SYNC',errbuf,retcode);
928: open fet_org_fsync;
929: loop
930: fetch fet_org_fsync into p_bg_id,p_dept_id,p_eff_date,p_eff_status,p_bg_name,p_loc_id,p_person_id,p_full_name;
931: exit when fet_org_fsync%notfound;

Line 942: hr_full_sync_messages.update_psft_sync_run(1,'ORG_FULL_SYNC',p_effective_date,errbuf,retcode);

938: end loop;
939: close fet_org_fsync;
940:
941:
942: hr_full_sync_messages.update_psft_sync_run(1,'ORG_FULL_SYNC',p_effective_date,errbuf,retcode);
943: FND_FILE.NEW_LINE(FND_FILE.log, 1);
944: FND_FILE.put_line(fnd_file.log,'Organization Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
945:
946: end if;

Line 950: hr_full_sync_messages.update_psft_sync_run(3,'ORG_FULL_SYNC',p_effective_date,errbuf,retcode);

946: end if;
947:
948: exception
949: when OTHERS then
950: hr_full_sync_messages.update_psft_sync_run(3,'ORG_FULL_SYNC',p_effective_date,errbuf,retcode);
951: errbuf := errbuf||SQLERRM;
952: retcode := '1';
953: FND_FILE.put_line(fnd_file.log, 'Error in Organization Data Full Synch Extraction: '||SQLCODE);
954: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 1002: hr_full_sync_messages.insert_psft_sync_run(2,'BG_FULL_SYNC',errbuf,retcode);

998: FND_FILE.NEW_LINE(FND_FILE.log, 1);
999: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
1000: FND_FILE.put_line(fnd_file.log,'Business Group Full Synch Data Extraction Begins:'
1001: ||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
1002: hr_full_sync_messages.insert_psft_sync_run(2,'BG_FULL_SYNC',errbuf,retcode);
1003: open fet_bg_fsync;
1004: loop
1005: fetch fet_bg_fsync into p_bg_id,p_bg_name,p_eff_date,p_eff_status;
1006: exit when fet_bg_fsync%notfound;

Line 1014: hr_full_sync_messages.update_psft_sync_run(1,'BG_FULL_SYNC',p_effective_date,errbuf,retcode);

1010: end loop;
1011: close fet_bg_fsync;
1012:
1013:
1014: hr_full_sync_messages.update_psft_sync_run(1,'BG_FULL_SYNC',p_effective_date,errbuf,retcode);
1015: FND_FILE.NEW_LINE(FND_FILE.log, 1);
1016: FND_FILE.put_line(fnd_file.log,'Business Group Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
1017:
1018: end if;

Line 1022: hr_full_sync_messages.update_psft_sync_run(3,'BG_FULL_SYNC',p_effective_date,errbuf,retcode);

1018: end if;
1019:
1020: exception
1021: when OTHERS then
1022: hr_full_sync_messages.update_psft_sync_run(3,'BG_FULL_SYNC',p_effective_date,errbuf,retcode);
1023: errbuf := errbuf||SQLERRM;
1024: retcode := '1';
1025: FND_FILE.put_line(fnd_file.log, 'Error in Business Group Data Full Synch Extraction: '||SQLCODE);
1026: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 1076: hr_full_sync_messages.insert_psft_sync_run(2,'PYRL_FULL_SYNC',errbuf,retcode);

1072: then
1073: FND_FILE.NEW_LINE(FND_FILE.log, 1);
1074: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
1075: FND_FILE.put_line(fnd_file.log,'Payroll Full Synch Data Extraction Begins:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
1076: hr_full_sync_messages.insert_psft_sync_run(2,'PYRL_FULL_SYNC',errbuf,retcode);
1077: open fet_pyrl_fsync;
1078: loop
1079:
1080: fetch fet_pyrl_fsync into p_pyrl_id,p_pyrl_name,p_bg_id,p_eff_date,p_eff_status;

Line 1089: hr_full_sync_messages.update_psft_sync_run(1,'PYRL_FULL_SYNC',p_effective_date,errbuf,retcode);

1085: end loop;
1086: close fet_pyrl_fsync;
1087:
1088:
1089: hr_full_sync_messages.update_psft_sync_run(1,'PYRL_FULL_SYNC',p_effective_date,errbuf,retcode);
1090: FND_FILE.NEW_LINE(FND_FILE.log, 1);
1091: FND_FILE.put_line(fnd_file.log,'Payroll Full Synch Data Extraction Ends:'||to_char(p_effective_date, 'DD/MM/RRRR HH:MI:SS'));
1092:
1093: end if;

Line 1097: hr_full_sync_messages.update_psft_sync_run(3,'PYRL_FULL_SYNC',p_effective_date,errbuf,retcode);

1093: end if;
1094:
1095: exception
1096: when OTHERS then
1097: hr_full_sync_messages.update_psft_sync_run(3,'PYRL_FULL_SYNC',p_effective_date,errbuf,retcode);
1098: errbuf := errbuf||SQLERRM;
1099: retcode := '1';
1100: FND_FILE.put_line(fnd_file.log, 'Error in Payroll Data Full Synch Extraction: '||SQLCODE);
1101: FND_FILE.NEW_LINE(FND_FILE.log, 1);

Line 1115: hr_full_sync_messages.hr_state_full_sync(ERRBUF,RETCODE);

1111: begin
1112:
1113: if p_process_name = 'STATE_FULL_SYNCH'
1114: then
1115: hr_full_sync_messages.hr_state_full_sync(ERRBUF,RETCODE);
1116: elsif p_process_name = 'COUNTRY_FULL_SYNCH'
1117: then
1118: hr_full_sync_messages.hr_country_full_sync(ERRBUF,RETCODE);
1119: elsif p_process_name = 'LOCATION_FULL_SYNCH'

Line 1118: hr_full_sync_messages.hr_country_full_sync(ERRBUF,RETCODE);

1114: then
1115: hr_full_sync_messages.hr_state_full_sync(ERRBUF,RETCODE);
1116: elsif p_process_name = 'COUNTRY_FULL_SYNCH'
1117: then
1118: hr_full_sync_messages.hr_country_full_sync(ERRBUF,RETCODE);
1119: elsif p_process_name = 'LOCATION_FULL_SYNCH'
1120: then
1121: hr_full_sync_messages.hr_location_full_sync(ERRBUF,RETCODE);
1122: elsif p_process_name = 'PERSON_FULL_SYNCH'

Line 1121: hr_full_sync_messages.hr_location_full_sync(ERRBUF,RETCODE);

1117: then
1118: hr_full_sync_messages.hr_country_full_sync(ERRBUF,RETCODE);
1119: elsif p_process_name = 'LOCATION_FULL_SYNCH'
1120: then
1121: hr_full_sync_messages.hr_location_full_sync(ERRBUF,RETCODE);
1122: elsif p_process_name = 'PERSON_FULL_SYNCH'
1123: then
1124: hr_full_sync_messages.hr_person_full_sync(ERRBUF,RETCODE);
1125: elsif p_process_name = 'WORKFORCE_FULL_SYNCH'

Line 1124: hr_full_sync_messages.hr_person_full_sync(ERRBUF,RETCODE);

1120: then
1121: hr_full_sync_messages.hr_location_full_sync(ERRBUF,RETCODE);
1122: elsif p_process_name = 'PERSON_FULL_SYNCH'
1123: then
1124: hr_full_sync_messages.hr_person_full_sync(ERRBUF,RETCODE);
1125: elsif p_process_name = 'WORKFORCE_FULL_SYNCH'
1126: then
1127: hr_full_sync_messages.hr_workforce_full_sync(ERRBUF,RETCODE);
1128: elsif p_process_name = 'JOBCODE_FULL_SYNCH' then

Line 1127: hr_full_sync_messages.hr_workforce_full_sync(ERRBUF,RETCODE);

1123: then
1124: hr_full_sync_messages.hr_person_full_sync(ERRBUF,RETCODE);
1125: elsif p_process_name = 'WORKFORCE_FULL_SYNCH'
1126: then
1127: hr_full_sync_messages.hr_workforce_full_sync(ERRBUF,RETCODE);
1128: elsif p_process_name = 'JOBCODE_FULL_SYNCH' then
1129: hr_full_sync_messages.hr_jobcode_full_sync(ERRBUF,RETCODE);
1130: elsif p_process_name = 'ORGANIZATION_FULL_SYNCH' then
1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);

Line 1129: hr_full_sync_messages.hr_jobcode_full_sync(ERRBUF,RETCODE);

1125: elsif p_process_name = 'WORKFORCE_FULL_SYNCH'
1126: then
1127: hr_full_sync_messages.hr_workforce_full_sync(ERRBUF,RETCODE);
1128: elsif p_process_name = 'JOBCODE_FULL_SYNCH' then
1129: hr_full_sync_messages.hr_jobcode_full_sync(ERRBUF,RETCODE);
1130: elsif p_process_name = 'ORGANIZATION_FULL_SYNCH' then
1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);
1132: elsif p_process_name = 'BUSINESSGROUP_FULL_SYNCH' then
1133: hr_full_sync_messages.hr_businessgrp_full_sync(ERRBUF,RETCODE);

Line 1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);

1127: hr_full_sync_messages.hr_workforce_full_sync(ERRBUF,RETCODE);
1128: elsif p_process_name = 'JOBCODE_FULL_SYNCH' then
1129: hr_full_sync_messages.hr_jobcode_full_sync(ERRBUF,RETCODE);
1130: elsif p_process_name = 'ORGANIZATION_FULL_SYNCH' then
1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);
1132: elsif p_process_name = 'BUSINESSGROUP_FULL_SYNCH' then
1133: hr_full_sync_messages.hr_businessgrp_full_sync(ERRBUF,RETCODE);
1134: elsif p_process_name = 'PAYROLL_FULL_SYNCH' then
1135: hr_full_sync_messages.hr_payroll_full_sync(ERRBUF,RETCODE);

Line 1133: hr_full_sync_messages.hr_businessgrp_full_sync(ERRBUF,RETCODE);

1129: hr_full_sync_messages.hr_jobcode_full_sync(ERRBUF,RETCODE);
1130: elsif p_process_name = 'ORGANIZATION_FULL_SYNCH' then
1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);
1132: elsif p_process_name = 'BUSINESSGROUP_FULL_SYNCH' then
1133: hr_full_sync_messages.hr_businessgrp_full_sync(ERRBUF,RETCODE);
1134: elsif p_process_name = 'PAYROLL_FULL_SYNCH' then
1135: hr_full_sync_messages.hr_payroll_full_sync(ERRBUF,RETCODE);
1136: end if;
1137: end hr_full_sync;

Line 1135: hr_full_sync_messages.hr_payroll_full_sync(ERRBUF,RETCODE);

1131: hr_full_sync_messages.hr_organizaton_full_sync(ERRBUF,RETCODE);
1132: elsif p_process_name = 'BUSINESSGROUP_FULL_SYNCH' then
1133: hr_full_sync_messages.hr_businessgrp_full_sync(ERRBUF,RETCODE);
1134: elsif p_process_name = 'PAYROLL_FULL_SYNCH' then
1135: hr_full_sync_messages.hr_payroll_full_sync(ERRBUF,RETCODE);
1136: end if;
1137: end hr_full_sync;
1138: /*Common Procedure called from concurrent program ends*/
1139:

Line 1140: end hr_full_sync_messages;

1136: end if;
1137: end hr_full_sync;
1138: /*Common Procedure called from concurrent program ends*/
1139:
1140: end hr_full_sync_messages;