DBA Data[Home] [Help]

APPS.PER_ASSIGNMENTS_F2_PKG dependencies on HR_UTILITY

Line 65: g_debug := hr_utility.debug_enabled; -- get debug status

61: --
62: l_proc varchar2(15) := 'get_save_fields';
63: --
64: begin
65: g_debug := hr_utility.debug_enabled; -- get debug status
66: IF g_debug THEN
67: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
68: END IF;
69:

Line 67: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);

63: --
64: begin
65: g_debug := hr_utility.debug_enabled; -- get debug status
66: IF g_debug THEN
67: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
68: END IF;
69:
70: open get_assgt;
71: fetch get_assgt into

Line 100: hr_utility.set_location('Leaving: '|| g_package || l_proc, 10);

96: --
97: close get_assgt;
98: --
99: IF g_debug THEN
100: hr_utility.set_location('Leaving: '|| g_package || l_proc, 10);
101: END IF;
102:
103: end get_save_fields;
104: -----------------------------------------------------------------------------

Line 150: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',1);

146: -- CHECK FOR CURRENT EMPLOYEE:
147: -- Check database for current_employee flag because another user
148: -- may have changed the flag since querying the person
149: --
150: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',1);
151: open curr_emp;
152: fetch curr_emp into l_null;
153: if curr_emp%notfound then
154: close curr_emp;

Line 163: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',2);

159: --
160: -- CHECK VALID STATUS:
161: -- Check that the Status is still active.
162: --
163: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',2);
164: hr_utility.trace('p_per_sys_st is '||p_per_sys_st);
165: hr_utility.trace('p_s_per_sys_st is '||p_s_per_sys_st);
166: hr_utility.trace('P_ASS_ST_TYPE_ID is '|| to_char(P_ASS_ST_TYPE_ID));
167: if (p_per_sys_st <> p_s_per_sys_st) or (p_s_per_sys_st is null) then

Line 164: hr_utility.trace('p_per_sys_st is '||p_per_sys_st);

160: -- CHECK VALID STATUS:
161: -- Check that the Status is still active.
162: --
163: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',2);
164: hr_utility.trace('p_per_sys_st is '||p_per_sys_st);
165: hr_utility.trace('p_s_per_sys_st is '||p_s_per_sys_st);
166: hr_utility.trace('P_ASS_ST_TYPE_ID is '|| to_char(P_ASS_ST_TYPE_ID));
167: if (p_per_sys_st <> p_s_per_sys_st) or (p_s_per_sys_st is null) then
168: open asg_type;

Line 165: hr_utility.trace('p_s_per_sys_st is '||p_s_per_sys_st);

161: -- Check that the Status is still active.
162: --
163: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',2);
164: hr_utility.trace('p_per_sys_st is '||p_per_sys_st);
165: hr_utility.trace('p_s_per_sys_st is '||p_s_per_sys_st);
166: hr_utility.trace('P_ASS_ST_TYPE_ID is '|| to_char(P_ASS_ST_TYPE_ID));
167: if (p_per_sys_st <> p_s_per_sys_st) or (p_s_per_sys_st is null) then
168: open asg_type;
169: fetch asg_type into l_null;

Line 166: hr_utility.trace('P_ASS_ST_TYPE_ID is '|| to_char(P_ASS_ST_TYPE_ID));

162: --
163: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',2);
164: hr_utility.trace('p_per_sys_st is '||p_per_sys_st);
165: hr_utility.trace('p_s_per_sys_st is '||p_s_per_sys_st);
166: hr_utility.trace('P_ASS_ST_TYPE_ID is '|| to_char(P_ASS_ST_TYPE_ID));
167: if (p_per_sys_st <> p_s_per_sys_st) or (p_s_per_sys_st is null) then
168: open asg_type;
169: fetch asg_type into l_null;
170: if asg_type%notfound then

Line 182: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',3);

178: --
179: -- Check new assignment number - does not write back to parameter but
180: -- a local parameter must be used.
181: --
182: hr_utility.set_location('per_assignments_f2_pkg.iu_non_payroll_checks',3);
183: if p_ass_num is not null then
184: l_ass_num := p_ass_num;
185: hr_assignment.gen_new_ass_number(
186: p_ass_id,

Line 404: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',10);

400: and rule_type = 'TERMS'
401: and rule_mode = 'Y';
402: --
403: begin
404: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',10);
405: --
406: -- Get Yes/No, people group structure.
407: --
408: open pg_struct;

Line 417: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',20);

413: close pg_struct;
414: --
415: -- Now get default ACTIVE_ASSIGN user status.
416: --
417: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',20);
418: open def_assgt_status;
419: fetch def_assgt_status into
420: P_DEF_USER_ST,
421: P_DEF_ST_ID;

Line 431: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',30);

427: fnd_message.raise_error;
428: end if;
429: close def_assgt_status;
430: --
431: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',30);
432: open valid_pos_grades;
433: fetch valid_pos_grades into l_dummy;
434: if valid_pos_grades%found then
435: P_VALID_POS_FLAG := 'Y';

Line 439: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',40);

435: P_VALID_POS_FLAG := 'Y';
436: end if;
437: close valid_pos_grades;
438: --
439: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',40);
440: open valid_job_grades;
441: fetch valid_job_grades into l_dummy;
442: if valid_job_grades%found then
443: P_VALID_JOB_FLAG := 'Y';

Line 449: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',50);

445: close valid_job_grades;
446: --
447: -- Get Person related info. if person id specified.
448: --
449: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',50);
450: if ( p_person_id is not null ) then
451: open get_pd_of_ser;
452: fetch get_pd_of_ser into l_dummy_dt, P_PERIOD_OF_SERVICE_ID;
453: if get_pd_of_ser%notfound then

Line 464: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',55);

460: --
461: -- Get Set Of Books info if AP is installed. This is required for
462: -- the GL flex.
463: --
464: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',55);
465: open is_ap_installed;
466: fetch is_ap_installed into l_sqlap_installed;
467: close is_ap_installed;
468: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',60);

Line 468: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',60);

464: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',55);
465: open is_ap_installed;
466: fetch is_ap_installed into l_sqlap_installed;
467: close is_ap_installed;
468: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',60);
469: --
470: if l_sqlap_installed = 'Y' then
471: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',70);
472: --

Line 471: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',70);

467: close is_ap_installed;
468: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',60);
469: --
470: if l_sqlap_installed = 'Y' then
471: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',70);
472: --
473: -- Clear p_gl_set_of_books_id and p_fsp_table_name before we
474: -- start, though they should be null anyway.
475: --

Line 485: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',80);

481: --
482: open sob_id;
483: fetch sob_id into l_gl_set_of_books_id;
484: if sob_id%FOUND then
485: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',80);
486: --
487: -- Bug 3270409
488: --
489: -- Even if there is exactly one set_of_books_id for the business group

Line 498: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',110);

494: --
495: P_ACCOUNTING_FLEXFIELD_OK_FLAG := 'Y';
496: P_GL_SET_OF_BOOKS_ID := NULL;
497: else
498: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',110);
499: --
500: -- There's no set of books for the business group.
501: -- Set the flex flag to N.
502: --

Line 511: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',120);

507: --
508: -- AP is not installed.
509: --
510: P_ACCOUNTING_FLEXFIELD_OK_FLAG := 'N';
511: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',120);
512: end if;
513:
514: --
515: -- Get the soft coded keyflex setup info.

Line 526: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',130);

522: (p_person_id => p_person_id2
523: ,p_effective_date => p_sess_date
524: ,p_system_person_type => 'EMP')
525: and (nvl(p_assignment_type,'E') = 'E')) THEN
526: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',130);
527: open scl;
528: fetch scl into P_SCL_ID_FLEX_NUM;
529: if scl%notfound then
530: P_NO_SCL := 'Y';

Line 539: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',135);

535: (p_person_id => p_person_id2
536: ,p_effective_date => p_sess_date
537: ,p_system_person_type => 'EX_EMP')
538: and (nvl(p_assignment_type,'E') = 'E')) THEN
539: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',135);
540: open scl;
541: fetch scl into P_SCL_ID_FLEX_NUM;
542: if scl%notfound then
543: P_NO_SCL := 'Y';

Line 552: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',140);

548: (p_person_id => p_person_id2
549: ,p_effective_date => p_sess_date
550: ,p_system_person_type => 'CWK')
551: and (nvl(p_assignment_type,'C') = 'C'))THEN
552: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',140);
553: open scl_cwk;
554: fetch scl_cwk into P_SCL_ID_FLEX_NUM;
555: if scl_cwk%notfound then
556: P_NO_SCL := 'Y';

Line 560: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',150);

556: P_NO_SCL := 'Y';
557: end if;
558: close scl_cwk;
559: ELSE
560: hr_utility.set_location('per_assignments_f2_pkg.initiate_assignment',150);
561: P_NO_SCL := 'Y';
562: END IF;
563:
564: if not P_NO_SCL = 'Y' then

Line 594: hr_utility.set_location('Leaving...:per_assignments_f2_pkg.initiate_assignment',200);

590: end if;
591: close terms;
592: end if;
593: --
594: hr_utility.set_location('Leaving...:per_assignments_f2_pkg.initiate_assignment',200);
595: --
596: end initiate_assignment;
597: -----------------------------------------------------------------------------
598: procedure real_del_checks(

Line 654: g_debug := hr_utility.debug_enabled; -- get debug status

650: --
651: l_proc varchar2(15) := 'real_del_checks';
652: --
653: begin
654: g_debug := hr_utility.debug_enabled; -- get debug status
655: IF g_debug THEN
656: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
657: END IF;
658: --

Line 656: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);

652: --
653: begin
654: g_debug := hr_utility.debug_enabled; -- get debug status
655: IF g_debug THEN
656: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
657: END IF;
658: --
659: -- Do not allow the user to delete this assignment if this is the only
660: -- assignment with a start date that is the same as the period of

Line 682: hr_utility.set_location( g_package || l_proc, 10);

678: --
679: -- Perform the referential integrity checks.
680: --
681: IF g_debug THEN
682: hr_utility.set_location( g_package || l_proc, 10);
683: END IF;
684: hr_assignment.del_ref_int_check(
685: p_ass_id,
686: 'ZAP',

Line 697: hr_utility.set_location( g_package || l_proc, 20);

693: l_re_entry_point := 2;
694: l_new_end_date := p_new_end_date;
695: --
696: IF g_debug THEN
697: hr_utility.set_location( g_package || l_proc, 20);
698: END IF;
699: per_assignments_f3_pkg.update_and_delete_bundle(
700: null,
701: p_val_st_date,

Line 729: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 30);

725: --
726: -- No end warning is returned from this check.
727: --
728: IF g_debug THEN
729: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 30);
730: END IF;
731: end real_del_checks;
732: -----------------------------------------------------------------------------
733: --

Line 926: g_debug := hr_utility.debug_enabled; -- get debug status

922: --
923: l_proc varchar2(17) := 'pre_update_bundle';
924: --
925: begin
926: g_debug := hr_utility.debug_enabled; -- get debug status
927: IF g_debug THEN
928: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
929: END IF;
930:

Line 928: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);

924: --
925: begin
926: g_debug := hr_utility.debug_enabled; -- get debug status
927: IF g_debug THEN
928: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
929: END IF;
930:
931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540
932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);

Line 931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540

927: IF g_debug THEN
928: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
929: END IF;
930:
931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540
932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);
933: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_org_id:' || p_org_id,11);
934: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_old_emp_cat:' || p_old_emp_cat,11); -- Bug#13960540
935:

Line 932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);

928: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
929: END IF;
930:
931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540
932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);
933: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_org_id:' || p_org_id,11);
934: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_old_emp_cat:' || p_old_emp_cat,11); -- Bug#13960540
935:
936: get_save_fields(

Line 933: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_org_id:' || p_org_id,11);

929: END IF;
930:
931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540
932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);
933: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_org_id:' || p_org_id,11);
934: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_old_emp_cat:' || p_old_emp_cat,11); -- Bug#13960540
935:
936: get_save_fields(
937: p_row_id,

Line 934: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_old_emp_cat:' || p_old_emp_cat,11); -- Bug#13960540

930:
931: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_grd_id:' || p_s_grd_id,11); -- Bug#13960540
932: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_s_org_id:' || p_s_org_id,11);
933: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_org_id:' || p_org_id,11);
934: hr_utility.set_location('peasg01t.pkb.pre_update_bundle..p_old_emp_cat:' || p_old_emp_cat,11); -- Bug#13960540
935:
936: get_save_fields(
937: p_row_id,
938: p_s_pos_id,

Line 959: hr_utility.set_location( g_package || l_proc, 10);

955: -- Check that "The position is now inconsistent with the new
956: -- organization" is not true.
957: --
958: IF g_debug THEN
959: hr_utility.set_location( g_package || l_proc, 10);
960: END IF;
961: if (p_org_id <> p_s_org_id) and (p_pos_id is not null) then
962: open consistent_org;
963: fetch consistent_org into l_dummy;

Line 978: hr_utility.set_location( g_package || l_proc, 20);

974: -- for this assignment id. If it is then the status must be
975: -- ACTIVE_ASSIGN.
976: --
977: IF g_debug THEN
978: hr_utility.set_location( g_package || l_proc, 20);
979: END IF;
980: if p_upd_mode = 'CORRECTION' and p_per_sys_st not in ('ACTIVE_ASSIGN'
981: ,'ACTIVE_CWK') then
982: open first_assgt;

Line 994: hr_utility.set_location( g_package || l_proc, 30);

990: close first_assgt;
991: end if;
992: --
993: IF g_debug THEN
994: hr_utility.set_location( g_package || l_proc, 30);
995: END IF;
996: if p_upd_mode <> 'UPDATE_OVERRIDE' then
997: --
998: -- Check for "This assignment has been ended in the future...

Line 1013: hr_utility.set_location( g_package || l_proc, 40);

1009: --
1010: -- populate POG record with asg values
1011: --
1012: IF g_debug THEN
1013: hr_utility.set_location( g_package || l_proc, 40);
1014: END IF;
1015: OPEN asg_details(p_ass_id, p_sess_date);
1016: FETCH asg_details into g_old_asg_rec;
1017: IF asg_details%NOTFOUND THEN

Line 1019: hr_utility.trace('no rows in asg_details');

1015: OPEN asg_details(p_ass_id, p_sess_date);
1016: FETCH asg_details into g_old_asg_rec;
1017: IF asg_details%NOTFOUND THEN
1018: CLOSE asg_details;
1019: hr_utility.trace('no rows in asg_details');
1020: ELSE
1021: CLOSE asg_details;
1022: END IF;
1023: --

Line 1025: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 50);

1021: CLOSE asg_details;
1022: END IF;
1023: --
1024: IF g_debug THEN
1025: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 50);
1026: END IF;
1027: end pre_update_bundle;
1028: -----------------------------------------------------------------------------
1029: procedure key_delrec(

Line 1054: g_debug := hr_utility.debug_enabled; -- get debug status

1050: --
1051: l_proc varchar2(10) := 'key_delrec';
1052: --
1053: begin
1054: g_debug := hr_utility.debug_enabled; -- get debug status
1055: IF g_debug THEN
1056: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
1057: END IF;
1058:

Line 1056: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);

1052: --
1053: begin
1054: g_debug := hr_utility.debug_enabled; -- get debug status
1055: IF g_debug THEN
1056: hr_utility.set_location('Entering: '|| g_package || l_proc, 5);
1057: END IF;
1058:
1059: --
1060: -- These checks are also included in the FND_PRE_DELETE trigger to

Line 1121: hr_utility.set_location( g_package || l_proc, 10);

1117: p_pay_basis_id);--fix for bug 4764140
1118: --
1119: elsif p_del_mode = 'ZAP' then
1120: IF g_debug THEN
1121: hr_utility.set_location( g_package || l_proc, 10);
1122: END IF;
1123: real_del_checks(
1124: p_pd_os_id,
1125: p_ass_id,

Line 1143: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 10);

1139: p_pay_basis_id);--fix for bug 4764140
1140: end if;
1141: --
1142: IF g_debug THEN
1143: hr_utility.set_location( 'Leaving ' || g_package || l_proc, 10);
1144: END IF;
1145: end key_delrec;
1146: -----------------------------------------------------------------------------
1147: procedure pre_delete(

Line 1347: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',1);

1343: and p_eff_date between effective_start_date
1344: and effective_end_date;
1345: --
1346: begin
1347: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',1);
1348: --
1349: -- Once again ignore l_new_end_date, even if it changes value, as
1350: -- the change should not be made if the validation fails (and if it
1351: -- succeeds then the record will be deleted anyway).

Line 1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540

1351: -- succeeds then the record will be deleted anyway).
1352: --
1353: l_new_end_date := p_new_end_date;
1354: --
1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540
1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);
1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);
1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);
1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540

Line 1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);

1352: --
1353: l_new_end_date := p_new_end_date;
1354: --
1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540
1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);
1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);
1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);
1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540
1360:

Line 1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);

1353: l_new_end_date := p_new_end_date;
1354: --
1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540
1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);
1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);
1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);
1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540
1360:
1361: --

Line 1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);

1354: --
1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540
1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);
1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);
1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);
1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540
1360:
1361: --
1362: if p_re_entry_point = -1 then

Line 1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540

1355: hr_utility.set_location('peasg01t.pkb.pre_delete..p_grd_id:' || p_grd_id,11); -- Bug#13960540
1356: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_grd_id:' || p_s_grd_id,11);
1357: hr_utility.set_location('peasg01t.pkb.pre_delete..p_s_org_id:' || p_s_org_id,11);
1358: hr_utility.set_location('peasg01t.pkb.pre_delete..p_old_emp_cat:' || p_old_emp_cat,11);
1359: hr_utility.set_location('peasg01t.pkb.pre_delete..p_new_emp_cat:' || p_new_emp_cat,11); -- Bug#13960540
1360:
1361: --
1362: if p_re_entry_point = -1 then
1363: goto RE_ENTRY_POINT_MINUS_1;

Line 1397: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',2);

1393: -- N.B. This is the only point in whuch the p_new_end_date is
1394: -- passed as an IN OUT parameter. The value may change
1395: -- and the new value is required here
1396: --
1397: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',2);
1398:
1399:
1400:
1401: per_assignments_f3_pkg.update_and_delete_bundle(

Line 1429: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',20);

1425: end if;
1426: --
1427: elsif p_del_mode = 'ZAP' then
1428: --
1429: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',20);
1430:
1431: real_del_checks(
1432: p_pd_os_id,
1433: p_ass_id,

Line 1450: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',40);

1446: p_ceil_seq,
1447: p_pay_basis_id);--fix for bug 4764140
1448: end if;
1449: --
1450: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',40);
1451: per_assignments_f3_pkg.check_future_primary(
1452: p_del_mode,
1453: p_val_st_date,
1454: p_prim_flag,

Line 1466: hr_utility.trace('Check_Future_Primary Date'||

1462: l_show_cand_prim_assgts,
1463: p_prim_date_from,
1464: p_new_prim_ass_id);
1465: --
1466: hr_utility.trace('Check_Future_Primary Date'||
1467: to_char(p_prim_date_from,'DD-MON-YYYY'));
1468: --
1469: if l_show_cand_prim_assgts = 'Y' then
1470: --

Line 1481: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',50);

1477: return;
1478: end if;
1479: --
1480: <>
1481: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',50);
1482: --
1483: -- Now check the changing of term_assign's with relation to it's
1484: -- impact on element entries (G255).
1485: --

Line 1505: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',60);

1501: -- LOV is only displayed once.
1502: --
1503: p_returned_warning := null;
1504: --
1505: hr_utility.set_location('per_assignments_f2_pkg.pre_delete',60);
1506: OPEN asg_details(p_ass_id, p_sess_date);
1507: FETCH asg_details into g_old_asg_rec;
1508: IF asg_details%NOTFOUND THEN
1509: CLOSE asg_details;

Line 1510: hr_utility.trace('no rows in asg_details');

1506: OPEN asg_details(p_ass_id, p_sess_date);
1507: FETCH asg_details into g_old_asg_rec;
1508: IF asg_details%NOTFOUND THEN
1509: CLOSE asg_details;
1510: hr_utility.trace('no rows in asg_details');
1511: ELSE
1512: CLOSE asg_details;
1513: END IF;
1514: --

Line 1515: hr_utility.set_location(' leaving per_assignments_f2_pkg.pre_delete',70);

1511: ELSE
1512: CLOSE asg_details;
1513: END IF;
1514: --
1515: hr_utility.set_location(' leaving per_assignments_f2_pkg.pre_delete',70);
1516: end pre_delete;
1517: -----------------------------------------------------------------------------
1518: END PER_ASSIGNMENTS_F2_PKG;