DBA Data[Home] [Help]

APPS.PER_PEOPLE11_PKG dependencies on HR_UTILITY

Line 181: hr_utility.set_location('per_people11_pkg.insert_row1',10);

177: --
178: -- Test current numbers are not used by
179: -- the system already.
180: --
181: hr_utility.set_location('per_people11_pkg.insert_row1',10);
182: hr_person.validate_unique_number(p_person_id =>p_person_id
183: , p_business_group_id => p_business_group_id
184: , p_employee_number => p_employee_number
185: , p_applicant_number => p_applicant_number

Line 192: hr_utility.set_location('Employee Number = '||p_employee_number,20);

188: , p_current_applicant => p_current_applicant_flag
189: , p_current_npw => null --p_current_npw_flag
190: );
191:
192: hr_utility.set_location('Employee Number = '||p_employee_number,20);
193: hr_utility.set_location('Applicant Number = '||p_applicant_number,30);
194:
195: --Start of fix for Bug 2167668
196:

Line 193: hr_utility.set_location('Applicant Number = '||p_applicant_number,30);

189: , p_current_npw => null --p_current_npw_flag
190: );
191:
192: hr_utility.set_location('Employee Number = '||p_employee_number,20);
193: hr_utility.set_location('Applicant Number = '||p_applicant_number,30);
194:
195: --Start of fix for Bug 2167668
196:
197: IF p_start_date > p_hold_applicant_date_until THEN

Line 198: hr_utility.set_message('800', 'PER_289796_HOLD_UNTIL_DATE');

194:
195: --Start of fix for Bug 2167668
196:
197: IF p_start_date > p_hold_applicant_date_until THEN
198: hr_utility.set_message('800', 'PER_289796_HOLD_UNTIL_DATE');
199: hr_utility.set_message_token('HOLD_DATE', p_start_date );
200: hr_utility.raise_error;
201: END IF;
202: -- End of fix for Bug 2167668

Line 199: hr_utility.set_message_token('HOLD_DATE', p_start_date );

195: --Start of fix for Bug 2167668
196:
197: IF p_start_date > p_hold_applicant_date_until THEN
198: hr_utility.set_message('800', 'PER_289796_HOLD_UNTIL_DATE');
199: hr_utility.set_message_token('HOLD_DATE', p_start_date );
200: hr_utility.raise_error;
201: END IF;
202: -- End of fix for Bug 2167668
203:

Line 200: hr_utility.raise_error;

196:
197: IF p_start_date > p_hold_applicant_date_until THEN
198: hr_utility.set_message('800', 'PER_289796_HOLD_UNTIL_DATE');
199: hr_utility.set_message_token('HOLD_DATE', p_start_date );
200: hr_utility.raise_error;
201: END IF;
202: -- End of fix for Bug 2167668
203:
204: -- #345205

Line 214: hr_utility.set_location('per_people11_pkg.insert_row1',40);

210: if ( p_person_id is null ) then
211: open c1;
212: fetch c1 into p_person_id;
213: close c1;
214: hr_utility.set_location('per_people11_pkg.insert_row1',40);
215: end if;
216: --
217: /* BEGIN OF WWBUG 1975359 */
218: if p_party_id is not null then

Line 539: hr_utility.set_location('Updating party id',10);

535: -- BEGIN TCA_UNMERGE CHANGES
536: --
537: per_hrtca_merge.create_tca_person(p_rec => l_person);
538: --
539: hr_utility.set_location('Updating party id',10);
540: --
541: -- Now assign the resulting party id back to the record.
542: --
543: update per_all_people_f

Line 559: hr_utility.set_location('per_people11_pkg.insert_row1',50);

555: p_action => 'INSERT');
556: */
557: --
558: --
559: hr_utility.set_location('per_people11_pkg.insert_row1',50);
560: --
561: open c2;
562: --
563: fetch c2 into p_rowid;

Line 565: hr_utility.set_location('per_people11_pkg.insert_row1',60);

561: open c2;
562: --
563: fetch c2 into p_rowid;
564: --
565: hr_utility.set_location('per_people11_pkg.insert_row1',60);
566: close c2;
567: --
568: ben_dt_trgr_handle.person(p_rowid => null
569: ,p_business_group_id => p_business_group_id

Line 625: hr_utility.set_location('per_people11_pkg.insert_row1',70);

621: --inserts (note CWK are done in their own API anyway, not here)
622: --2462779: Modification to avoce ref'd fix. Call populate_new_person for
623: -- EMPs and APLs but call populate_new_contact for new OTHERs.
624: --
625: hr_utility.set_location('per_people11_pkg.insert_row1',70);
626: --
627: if p_create_defaults_for in ('EMP','APL') then
628: hr_security_internal.populate_new_person
629: (p_business_group_id=>p_business_group_id

Line 637: hr_utility.set_location('per_people11_pkg.insert_row1',75);

633: (p_business_group_id=>p_business_group_id
634: ,p_person_id =>p_person_id);
635: end if;
636: --
637: hr_utility.set_location('per_people11_pkg.insert_row1',75);
638: --
639: if p_create_defaults_for in ('EMP','APL') then
640: --
641: -- #317298 We must insert a row into per_person_list for the new EMP

Line 660: hr_utility.set_location('per_people11_pkg.insert_row1',80);

656: --,p_person_id =>p_person_id);
657: --
658: if p_create_defaults_for = 'EMP' then
659: --
660: hr_utility.set_location('per_people11_pkg.insert_row1',80);
661: -- insert employee rows.
662: --
663: -- VT 08/13/96
664: per_people9_pkg.insert_employee_rows(p_person_id => p_person_id

Line 683: hr_utility.set_location('per_people11_pkg.insert_row1',90);

679: ,p_adjusted_svc_date =>p_adjusted_svc_date);
680:
681: else
682: --
683: hr_utility.set_location('per_people11_pkg.insert_row1',90);
684: -- do insert applicant rows.
685: --
686: -- VT 08/13/96
687: per_people9_pkg.insert_applicant_rows(p_person_id => p_person_id

Line 703: hr_utility.set_location('per_people11_pkg.insert_row1',100);

699: ,p_created_by => p_created_by
700: ,p_creation_date => p_creation_date
701: );
702: end if;
703: hr_utility.set_location('per_people11_pkg.insert_row1',100);
704: end if;
705: --
706: -- PTU : Start of Changes
707: --

Line 708: hr_utility.set_location('per_people11_pkg.insert_row1',110);

704: end if;
705: --
706: -- PTU : Start of Changes
707: --
708: hr_utility.set_location('per_people11_pkg.insert_row1',110);
709: hr_per_type_usage_internal.maintain_person_type_usage
710: (p_effective_date => p_effective_start_date
711: ,p_person_id => p_person_id
712: ,p_person_type_id => p_person_type_id

Line 721: hr_utility.set_location('Leaving: per_people11_pkg.insert_row1',120);

717: --
718: per_hrwf_synch.per_per_wf(p_rec => l_person,
719: p_action => 'INSERT');
720: --
721: hr_utility.set_location('Leaving: per_people11_pkg.insert_row1',120);
722: end insert_row1;
723: --
724: procedure delete_row1(p_rowid VARCHAR2) is
725: