DBA Data[Home] [Help]

APPS.PER_PMS_BUS dependencies on HR_UTILITY

Line 9: g_debug boolean := hr_utility.debug_enabled;

5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pms_bus.'; -- Global package name
9: g_debug boolean := hr_utility.debug_enabled;
10: --
11: -- The following two global variables are only to be
12: -- used by the return_legislation_code function.
13: --

Line 47: hr_utility.set_location('Entering:'|| l_proc, 10);

43: l_legislation_code varchar2(150);
44: --
45: begin
46: --
47: hr_utility.set_location('Entering:'|| l_proc, 10);
48: --
49: -- Ensure that all the mandatory parameter are not null
50: --
51: hr_api.mandatory_arg_error

Line 87: hr_utility.set_location(' Leaving:'|| l_proc, 20);

83: --
84: hr_api.set_legislation_context(l_legislation_code);
85: end if;
86: --
87: hr_utility.set_location(' Leaving:'|| l_proc, 20);
88: --
89: end set_security_group_id;
90: --
91: -- ---------------------------------------------------------------------------

Line 119: hr_utility.set_location('Entering:'|| l_proc, 10);

115: l_proc varchar2(72) := g_package||'return_legislation_code';
116: --
117: Begin
118: --
119: hr_utility.set_location('Entering:'|| l_proc, 10);
120: --
121: -- Ensure that all the mandatory parameter are not null
122: --
123: hr_api.mandatory_arg_error

Line 137: hr_utility.set_location(l_proc, 20);

133: -- call to this function. Just return the value in the global
134: -- variable.
135: --
136: l_legislation_code := per_pms_bus.g_legislation_code;
137: hr_utility.set_location(l_proc, 20);
138: else
139: --
140: -- The ID is different to the last call to this function
141: -- or this is the first call to this function.

Line 154: hr_utility.set_location(l_proc,30);

150: close csr_leg_code;
151: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
152: fnd_message.raise_error;
153: end if;
154: hr_utility.set_location(l_proc,30);
155: --
156: -- Set the global variables so the values are
157: -- available for the next call to this function.
158: --

Line 163: hr_utility.set_location(' Leaving:'|| l_proc, 40);

159: close csr_leg_code;
160: per_pms_bus.g_scorecard_id := p_scorecard_id;
161: per_pms_bus.g_legislation_code := l_legislation_code;
162: end if;
163: hr_utility.set_location(' Leaving:'|| l_proc, 40);
164: return l_legislation_code;
165: end return_legislation_code;
166: --
167: -- ----------------------------------------------------------------------------

Line 202: hr_utility.set_location('Entering:'||l_proc,10);

198: --
199: l_proc varchar2(72) := g_package || 'chk_df';
200: --
201: begin
202: hr_utility.set_location('Entering:'||l_proc,10);
203: --
204: if ((p_rec.scorecard_id is not null) and (
205: nvl(per_pms_shd.g_old_rec.attribute_category, hr_api.g_varchar2) <>
206: nvl(p_rec.attribute_category, hr_api.g_varchar2) or

Line 341: hr_utility.set_location(' Leaving:'||l_proc,20);

337: ,p_attribute30_value => p_rec.attribute30
338: );
339: end if;
340: --
341: hr_utility.set_location(' Leaving:'||l_proc,20);
342: end chk_df;
343: --
344: -- ----------------------------------------------------------------------------
345: -- |-----------------------< chk_non_updateable_args >------------------------|

Line 395: hr_utility.set_location(l_proc, 10);

391: fnd_message.set_token('STEP ', '5');
392: fnd_message.raise_error;
393: END IF;
394: --
395: hr_utility.set_location(l_proc, 10);
396: if nvl(p_rec.person_id,hr_api.g_number) <>
397: per_pms_shd.g_old_rec.person_id then
398: l_argument := 'person_id';
399: raise l_error;

Line 402: hr_utility.set_location(l_proc, 15);

398: l_argument := 'person_id';
399: raise l_error;
400: end if;
401: --
402: hr_utility.set_location(l_proc, 15);
403: if nvl(p_rec.assignment_id,hr_api.g_number) <>
404: per_pms_shd.g_old_rec.assignment_id then
405: l_argument := 'assignment_id';
406: raise l_error;

Line 409: hr_utility.set_location(l_proc, 20);

405: l_argument := 'assignment_id';
406: raise l_error;
407: end if;
408: --
409: hr_utility.set_location(l_proc, 20);
410: if nvl(p_rec.creator_type,hr_api.g_varchar2) <>
411: per_pms_shd.g_old_rec.creator_type then
412: l_argument := 'creator_type';
413: raise l_error;

Line 416: hr_utility.set_location(l_proc, 30);

412: l_argument := 'creator_type';
413: raise l_error;
414: end if;
415: --
416: hr_utility.set_location(l_proc, 30);
417: --
418: EXCEPTION
419: WHEN l_error THEN
420: hr_api.argument_changed_error

Line 473: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

469: AND asg.assignment_type <> 'B';
470: --
471: BEGIN
472:
473: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
474:
475: --
476: hr_api.mandatory_arg_error
477: (p_api_name => l_proc

Line 519: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

515: fnd_message.set_name('PER', 'HR_50263_PMS_INVALID_ASG');
516: fnd_message.raise_error;
517: END IF;
518:
519: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
520:
521: EXCEPTION
522:
523: WHEN app_exception.application_exception THEN

Line 527: hr_utility.set_location(' Leaving:'|| l_proc, 980);

523: WHEN app_exception.application_exception THEN
524: IF hr_multi_message.exception_add
525: (p_associated_column1 => 'PER_PERSONAL_SCORECARDS.ASSIGNMENT_ID')
526: THEN
527: hr_utility.set_location(' Leaving:'|| l_proc, 980);
528: RAISE;
529: END IF;
530: hr_utility.set_location(' Leaving:'|| l_proc, 990);
531:

Line 530: hr_utility.set_location(' Leaving:'|| l_proc, 990);

526: THEN
527: hr_utility.set_location(' Leaving:'|| l_proc, 980);
528: RAISE;
529: END IF;
530: hr_utility.set_location(' Leaving:'|| l_proc, 990);
531:
532: END chk_assignment_id;
533: --
534: -- ----------------------------------------------------------------------------

Line 576: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

572: WHERE pmp.plan_id = p_plan_id;
573: --
574: BEGIN
575:
576: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
577:
578: --
579: -- Only proceed with validation if :
580: -- a) The current g_old_rec is current and

Line 598: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;

594: IF p_plan_id IS NOT null THEN
595: --
596: -- Check that plan exists.
597: --
598: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;
599: OPEN csr_chk_plan_id;
600: FETCH csr_chk_plan_id INTO l_plan_id;
601: CLOSE csr_chk_plan_id;
602:

Line 610: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

606: END IF;
607:
608: END IF;
609:
610: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
611:
612: EXCEPTION
613:
614: WHEN app_exception.application_exception THEN

Line 618: hr_utility.set_location(' Leaving:'|| l_proc, 980);

614: WHEN app_exception.application_exception THEN
615: IF hr_multi_message.exception_add
616: (p_associated_column1 => 'PER_PERSONAL_SCORECARDS.PLAN_ID')
617: THEN
618: hr_utility.set_location(' Leaving:'|| l_proc, 980);
619: RAISE;
620: END IF;
621: hr_utility.set_location(' Leaving:'|| l_proc, 990);
622:

Line 621: hr_utility.set_location(' Leaving:'|| l_proc, 990);

617: THEN
618: hr_utility.set_location(' Leaving:'|| l_proc, 980);
619: RAISE;
620: END IF;
621: hr_utility.set_location(' Leaving:'|| l_proc, 990);
622:
623: END chk_plan_id;
624: --
625: -- ----------------------------------------------------------------------------

Line 671: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

667: AND pms.STATUS_CODE <> 'TRANSFER_OUT';
668: --
669: BEGIN
670:
671: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
672:
673: --
674: hr_api.mandatory_arg_error
675: (p_api_name => l_proc

Line 702: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;

698: IF p_plan_id IS NOT null THEN
699: --
700: -- Check that the plan is not a duplicate.
701: --
702: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;
703: OPEN csr_chk_duplicate;
704: FETCH csr_chk_duplicate INTO l_dup;
705: CLOSE csr_chk_duplicate;
706:

Line 714: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

710: END IF;
711:
712: END IF;
713:
714: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
715:
716: EXCEPTION
717:
718: WHEN app_exception.application_exception THEN

Line 723: hr_utility.set_location(' Leaving:'|| l_proc, 980);

719: IF hr_multi_message.exception_add
720: (p_associated_column1 => 'PER_PERSONAL_SCORECARDS.PLAN_ID'
721: ,p_associated_column2 => 'PER_PERSONAL_SCORECARDS.ASSIGNMENT_ID')
722: THEN
723: hr_utility.set_location(' Leaving:'|| l_proc, 980);
724: RAISE;
725: END IF;
726: hr_utility.set_location(' Leaving:'|| l_proc, 990);
727:

Line 726: hr_utility.set_location(' Leaving:'|| l_proc, 990);

722: THEN
723: hr_utility.set_location(' Leaving:'|| l_proc, 980);
724: RAISE;
725: END IF;
726: hr_utility.set_location(' Leaving:'|| l_proc, 990);
727:
728: END chk_duplicate;
729: --
730: -- ----------------------------------------------------------------------------

Line 790: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

786:
787: --
788: BEGIN
789:
790: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
791: --
792: hr_api.mandatory_arg_error
793: (p_api_name => l_proc
794: ,p_argument => 'p_start_date'

Line 824: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;

820: THEN
821: RETURN;
822: END IF;
823:
824: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;
825:
826: --
827: -- Check that the scorecard's start date is not later than the end date.
828: --

Line 834: IF g_debug THEN hr_utility.set_location(l_proc, 30); END IF;

830: fnd_message.set_name('PER', 'HR_50266_PMS_START_END');
831: fnd_message.raise_error;
832: END IF;
833:
834: IF g_debug THEN hr_utility.set_location(l_proc, 30); END IF;
835:
836: IF p_plan_id IS NOT null THEN
837: --
838: -- Check that the scorecard's dates are within the plan dates.

Line 840: IF g_debug THEN hr_utility.set_location(l_proc, 40); END IF;

836: IF p_plan_id IS NOT null THEN
837: --
838: -- Check that the scorecard's dates are within the plan dates.
839: --
840: IF g_debug THEN hr_utility.set_location(l_proc, 40); END IF;
841: OPEN csr_dates_within_plan;
842: FETCH csr_dates_within_plan INTO l_pmp_start_date
843: ,l_pmp_end_date;
844: CLOSE csr_dates_within_plan;

Line 855: IF g_debug THEN hr_utility.set_location(l_proc, 50); END IF;

851: END IF;
852:
853: END IF;
854:
855: IF g_debug THEN hr_utility.set_location(l_proc, 50); END IF;
856:
857: -- Bug 11823464
858: -- IF p_scorecard_id IS NOT null THEN
859: --

Line 862: -- IF g_debug THEN hr_utility.set_location(l_proc, 60); END IF;

858: -- IF p_scorecard_id IS NOT null THEN
859: --
860: -- Check that there are no objectives outside the range of this scorecard.
861: --
862: -- IF g_debug THEN hr_utility.set_location(l_proc, 60); END IF;
863: -- OPEN csr_objs_outside_scorecard;
864: -- FETCH csr_objs_outside_scorecard INTO l_row_found;
865: -- CLOSE csr_objs_outside_scorecard;
866: --

Line 876: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

872: --
873: -- END IF;
874:
875:
876: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
877:
878: EXCEPTION
879:
880: WHEN app_exception.application_exception THEN

Line 885: hr_utility.set_location(' Leaving:'|| l_proc, 980);

881: IF hr_multi_message.exception_add
882: (p_associated_column1 => 'PER_PERSONAL_SCORECARDS.START_DATE'
883: ,p_associated_column2 => 'PER_PERSONAL_SCORECARDS.END_DATE')
884: THEN
885: hr_utility.set_location(' Leaving:'|| l_proc, 980);
886: RAISE;
887: END IF;
888: hr_utility.set_location(' Leaving:'|| l_proc, 990);
889:

Line 888: hr_utility.set_location(' Leaving:'|| l_proc, 990);

884: THEN
885: hr_utility.set_location(' Leaving:'|| l_proc, 980);
886: RAISE;
887: END IF;
888: hr_utility.set_location(' Leaving:'|| l_proc, 990);
889:
890: END chk_dates;
891: --
892: -- ----------------------------------------------------------------------------

Line 940: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

936: AND upper(trim(pms.scorecard_name)) = upper(trim(p_scorecard_name));
937: --
938: BEGIN
939:
940: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
941:
942: --
943: hr_api.mandatory_arg_error
944: (p_api_name => l_proc

Line 973: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;

969: THEN
970: RETURN;
971: END IF;
972:
973: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;
974:
975: --
976: -- Warn if a scorecard with the same name already exists
977: -- (case and space insensitive).

Line 985: IF g_debug THEN hr_utility.trace('p_duplicate_name_warning: '||l_dup); END IF;

981: CLOSE csr_chk_scorecard_name;
982:
983: p_duplicate_name_warning := (l_dup = 'TRUE');
984:
985: IF g_debug THEN hr_utility.trace('p_duplicate_name_warning: '||l_dup); END IF;
986: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
987:
988: END chk_scorecard_name;
989: --

Line 986: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

982:
983: p_duplicate_name_warning := (l_dup = 'TRUE');
984:
985: IF g_debug THEN hr_utility.trace('p_duplicate_name_warning: '||l_dup); END IF;
986: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
987:
988: END chk_scorecard_name;
989: --
990: -- ----------------------------------------------------------------------------

Line 1023: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

1019:
1020: --
1021: BEGIN
1022:
1023: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
1024:
1025: hr_api.mandatory_arg_error
1026: (p_api_name => l_proc
1027: ,p_argument => 'p_creator_type'

Line 1040: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

1036: fnd_message.set_name('PER', 'HR_50269_PMS_CREATOR_TYPE');
1037: fnd_message.raise_error;
1038: END IF;
1039:
1040: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
1041:
1042: EXCEPTION
1043:
1044: WHEN app_exception.application_exception THEN

Line 1048: hr_utility.set_location(' Leaving:'|| l_proc, 980);

1044: WHEN app_exception.application_exception THEN
1045: IF hr_multi_message.exception_add
1046: (p_associated_column1 => 'PER_PERSONAL_SCORECARDS.CREATOR_TYPE')
1047: THEN
1048: hr_utility.set_location(' Leaving:'|| l_proc, 980);
1049: RAISE;
1050: END IF;
1051: hr_utility.set_location(' Leaving:'|| l_proc, 990);
1052:

Line 1051: hr_utility.set_location(' Leaving:'|| l_proc, 990);

1047: THEN
1048: hr_utility.set_location(' Leaving:'|| l_proc, 980);
1049: RAISE;
1050: END IF;
1051: hr_utility.set_location(' Leaving:'|| l_proc, 990);
1052:
1053: END chk_creator_type;
1054: --
1055: -- ----------------------------------------------------------------------------

Line 1092: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

1088:
1089: --
1090: BEGIN
1091:
1092: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
1093:
1094: hr_api.mandatory_arg_error
1095: (p_api_name => l_proc
1096: ,p_argument => 'p_status_code'

Line 1128: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

1124: fnd_message.set_name('PER', 'HR_50271_PMS_STATUS_CODE');
1125: fnd_message.raise_error;
1126: END IF;
1127:
1128: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
1129:
1130: EXCEPTION
1131:
1132: WHEN app_exception.application_exception THEN

Line 1136: hr_utility.set_location(' Leaving:'|| l_proc, 980);

1132: WHEN app_exception.application_exception THEN
1133: IF hr_multi_message.exception_add
1134: (p_associated_column1 =>'PER_PERSONAL_SCORECARDS.STATUS_CODE')
1135: THEN
1136: hr_utility.set_location(' Leaving:'|| l_proc, 980);
1137: RAISE;
1138: END IF;
1139: hr_utility.set_location(' Leaving:'|| l_proc, 990);
1140:

Line 1139: hr_utility.set_location(' Leaving:'|| l_proc, 990);

1135: THEN
1136: hr_utility.set_location(' Leaving:'|| l_proc, 980);
1137: RAISE;
1138: END IF;
1139: hr_utility.set_location(' Leaving:'|| l_proc, 990);
1140:
1141: END chk_status_code;
1142:
1143: -- Bug#13943955 sussuman

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

1182: l_appr_exists VARCHAR2(1) := 'N';
1183: l_proc VARCHAR2 (72) := g_package || 'plan_admin_actions_obj_deadline';
1184:
1185: BEGIN
1186: hr_utility.set_location('Entering:'||l_proc, 5);
1187:
1188: OPEN csr_appr_exists(p_scorecard_id);
1189:
1190: FETCH csr_appr_exists INTO l_appr_exists;

Line 1199: hr_utility.set_location(' Leaving:'||l_proc, 980);

1195: fnd_message.set_name('PER', 'HR_OBJ_END_DT_BEFR_TASK_ST');
1196: fnd_message.raise_error;
1197: END IF;
1198:
1199: hr_utility.set_location(' Leaving:'||l_proc, 980);
1200: END chk_obj_setting_deadline;
1201: -- Bug#13943955 sussuman
1202: --
1203: -- ----------------------------------------------------------------------------

Line 1237: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

1233:
1234: --
1235: BEGIN
1236:
1237: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
1238:
1239: p_created_by_plan_warning := (p_creator_type = 'AUTO');
1240:
1241: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

Line 1241: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

1237: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
1238:
1239: p_created_by_plan_warning := (p_creator_type = 'AUTO');
1240:
1241: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
1242:
1243: END chk_auto_creator_type;
1244: --
1245: -- ----------------------------------------------------------------------------

Line 1286: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;

1282:
1283: --
1284: BEGIN
1285:
1286: IF g_debug THEN hr_utility.set_location('Entering:'|| l_proc, 10); END IF;
1287:
1288: --
1289: -- Check whether this scorecard has any objectives.
1290: --

Line 1296: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;

1292: FETCH csr_has_objectives INTO l_exists;
1293: CLOSE csr_has_objectives;
1294:
1295: IF l_exists = 'Y' THEN
1296: IF g_debug THEN hr_utility.set_location(l_proc, 20); END IF;
1297: fnd_message.set_name('PER', 'HR_50229_PMS_DEL_NO_OBJ');
1298: fnd_message.raise_error;
1299: END IF;
1300:

Line 1301: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;

1297: fnd_message.set_name('PER', 'HR_50229_PMS_DEL_NO_OBJ');
1298: fnd_message.raise_error;
1299: END IF;
1300:
1301: IF g_debug THEN hr_utility.set_location('Leaving:'|| l_proc, 970); END IF;
1302:
1303: END chk_no_objectives;
1304: --
1305: -- ----------------------------------------------------------------------------

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

1315: l_proc varchar2(72) := g_package||'insert_validate';
1316: --
1317: Begin
1318:
1319: hr_utility.set_location('Entering:'||l_proc, 5);
1320:
1321: --
1322: -- Call all supporting business operations.
1323: --

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

1388: -- Bug#13943955 sussuman
1389:
1390: per_pms_bus.chk_df(p_rec);
1391: --
1392: hr_utility.set_location(' Leaving:'||l_proc, 10);
1393: End insert_validate;
1394: --
1395: -- ----------------------------------------------------------------------------
1396: -- |---------------------------< update_validate >----------------------------|

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

1403: --
1404: l_proc varchar2(72) := g_package||'update_validate';
1405: --
1406: Begin
1407: hr_utility.set_location('Entering:'||l_proc, 5);
1408: --
1409: -- Call all supporting business operations
1410: --
1411: --

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

1469: -- Bug#13943955 sussuman
1470:
1471: per_pms_bus.chk_df(p_rec);
1472: --
1473: hr_utility.set_location(' Leaving:'||l_proc, 10);
1474: End update_validate;
1475: --
1476: -- ----------------------------------------------------------------------------
1477: -- |---------------------------< delete_validate >----------------------------|

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

1484: l_proc varchar2(72) := g_package||'delete_validate';
1485: --
1486: Begin
1487:
1488: hr_utility.set_location('Entering:'||l_proc, 5);
1489:
1490: --
1491: -- Call all supporting business operations
1492: --

Line 1497: hr_utility.set_location('Entering:'||l_proc, 10);

1493: chk_auto_creator_type
1494: (p_creator_type => p_rec.creator_type
1495: ,p_created_by_plan_warning => p_created_by_plan_warning);
1496:
1497: hr_utility.set_location('Entering:'||l_proc, 10);
1498:
1499: --
1500: -- Check if the scorecard has any objectives before deleting.
1501: --

Line 1505: hr_utility.set_location(' Leaving:'||l_proc, 980);

1501: --
1502: chk_no_objectives
1503: (p_scorecard_id => p_rec.scorecard_id);
1504:
1505: hr_utility.set_location(' Leaving:'||l_proc, 980);
1506:
1507: End delete_validate;
1508: --
1509: end per_pms_bus;