DBA Data[Home] [Help]

APPS.PAY_IVL_BUS dependencies on HR_UTILITY

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

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

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

79: (p_security_group_id => l_security_group_id
80: );
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --
85: end set_security_group_id;
86: --
87: -- ---------------------------------------------------------------------------

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

109: l_proc varchar2(72) := g_package||'return_legislation_code';
110: --
111: Begin
112: --
113: hr_utility.set_location('Entering:'|| l_proc, 10);
114: --
115: -- Ensure that all the mandatory parameter are not null
116: --
117: hr_api.mandatory_arg_error

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

128: -- call to this function. Just return the value in the global
129: -- variable.
130: --
131: l_legislation_code := pay_ivl_bus.g_legislation_code;
132: hr_utility.set_location(l_proc, 20);
133: else
134: --
135: -- The ID is different to the last call to this function
136: -- or this is the first call to this function.

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

146: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
147: fnd_message.raise_error;
148:
149: end if;
150: hr_utility.set_location(l_proc,30);
151: --
152: -- Set the global variables so the values are
153: -- available for the next call to this function.
154: --

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

155: close csr_leg_code;
156: pay_ivl_bus.g_input_value_id := p_input_value_id;
157: pay_ivl_bus.g_legislation_code := l_legislation_code;
158: end if;
159: hr_utility.set_location(' Leaving:'|| l_proc, 40);
160: return l_legislation_code;
161: end return_legislation_code;
162: --
163: -- ----------------------------------------------------------------------------

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

501: l_proc varchar2(72) := g_package||'chk_lookup_type';
502:
503: BEGIN
504:
505: hr_utility.set_location(' Entering:'|| l_proc, 10);
506:
507: if p_lookup_type is not null and upper(p_uom) <> 'C' then
508: fnd_message.set_name('PAY','PAY_34117_INVALID_UOM');
509: fnd_message.raise_error;

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

517: end if;
518: close csr_lookup;
519: end if;
520:
521: hr_utility.set_location(' Leaving:'|| l_proc, 10);
522:
523: END chk_lookup_type;
524:
525: --

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

556: l_proc varchar2(72) := g_package||'chk_formula_id';
557:
558: BEGIN
559:
560: hr_utility.set_location(' Entering:'|| l_proc, 10);
561:
562: if p_formula_id is not null then
563: open csr_formula;
564: fetch csr_formula into l_dummy;

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

569: end if;
570: close csr_formula;
571: end if;
572:
573: hr_utility.set_location(' Leaving:'|| l_proc, 10);
574:
575: END chk_formula_id;
576: --
577: -- ----------------------------------------------------------------------------

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

604: and p_effective_date between effective_start_date
605: and effective_end_date;
606: --
607: Begin
608: hr_utility.set_location(' Entering:'||l_proc, 5);
609: --
610: If p_business_group_id is not null then
611: --
612: -- Validation is not done for startup elements

Line 617: hr_utility.set_location(' Step 1:'||l_proc, 6);

613: --
614: l_formula_id := p_formula_id;
615: p_assignment_id_warning := false;
616:
617: hr_utility.set_location(' Step 1:'||l_proc, 6);
618: If (l_formula_id is null) then
619: --
620: Open C_formula;
621: Fetch C_formula into l_formula_id;

Line 626: hr_utility.set_location(' Step 3:'||l_proc, 8);

622: Close C_formula;
623: --
624: End If;
625: --
626: hr_utility.set_location(' Step 3:'||l_proc, 8);
627: -- We need to call a formula to validate the default value.
628: --For Bug No. 2879170 added if condtion.
629: If l_formula_id is not null then
630: ff_exec.init_formula(l_formula_id,

Line 638: hr_utility.set_location(' Step 4:'||l_proc, 9);

634: --
635: -- Check the input count before attempting to
636: -- set the input and context values.
637: --
638: hr_utility.set_location(' Step 4:'||l_proc, 9);
639: If(l_inputs.count >= 1) then
640: -- Set up the inputs and contexts to formula.
641: For i in l_inputs.first..l_inputs.last loop
642: If l_inputs(i).name = 'ASSIGNMENT_ID' then

Line 686: hr_utility.set_location(' Step 5:'||l_proc, 10);

682: --
683: For i in l_outputs.first..l_outputs.last loop
684: If l_outputs(i).name = 'FORMULA_MESSAGE' then
685: --
686: hr_utility.set_location(' Step 5:'||l_proc, 10);
687: l_formula_message := l_outputs(i).value;
688: Elsif l_outputs(i).name = 'FORMULA_STATUS' then
689: --
690: hr_utility.set_location(' Step 6:'||l_proc, 11);

Line 690: hr_utility.set_location(' Step 6:'||l_proc, 11);

686: hr_utility.set_location(' Step 5:'||l_proc, 10);
687: l_formula_message := l_outputs(i).value;
688: Elsif l_outputs(i).name = 'FORMULA_STATUS' then
689: --
690: hr_utility.set_location(' Step 6:'||l_proc, 11);
691: l_formula_status := upper(l_outputs(i).value);
692: Else
693: --
694: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');

Line 704: hr_utility.set_location(' Step 7:'||l_proc, 11);

700: End loop;
701: --
702: -- Check whether we have raised an error and act appropriately.
703: --
704: hr_utility.set_location(' Step 7:'||l_proc, 11);
705: If l_formula_status <> 'S' and p_warning_or_error = 'E' then
706: -- I.e. the formula validation failed and we need to raise an error.
707: If l_formula_message is null then
708: -- User not defined an error message.

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

727: --
728: End If;
729: End If;
730: --
731: hr_utility.set_location(' Leaving:'||l_proc, 10);
732: End;
733: --
734: -- ----------------------------------------------------------------------------
735: -- |-------------------------------------------------------|

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

748: where flex_value_set_id = p_value_set_id;
749: --
750: BEGIN
751: --
752: hr_utility.set_location(' Entering:'|| l_proc, 10);
753: --
754: if p_value_set_id is not null then
755: -- Check uom is 'C'
756: if upper(p_uom) <> 'C' then

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

753: --
754: if p_value_set_id is not null then
755: -- Check uom is 'C'
756: if upper(p_uom) <> 'C' then
757: hr_utility.set_location(l_proc, 20);
758: fnd_message.set_name('PAY','PAY_34117_INVALID_UOM');
759: fnd_message.raise_error;
760: else
761: -- Check value set id is valid, i.e. that it exists and that the value

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

763: open csr_value_set;
764: fetch csr_value_set into l_validation_type;
765: if csr_value_set%notfound or l_validation_type <> 'F' then
766: close csr_value_set;
767: hr_utility.set_location(l_proc, 30);
768: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
769: fnd_message.set_token('PROCEDURE', l_proc);
770: fnd_message.set_token('STEP','30');
771: fnd_message.raise_error;

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

773: close csr_value_set;
774: end if;
775: end if;
776: --
777: hr_utility.set_location(' Leaving:'|| l_proc, 40);
778: --
779: END chk_value_set_id;
780:
781: -- ----------------------------------------------------------------------------

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

796: l_proc varchar2(72) := g_package||'chk_upd_display_sequence';
797:
798: BEGIN
799:
800: hr_utility.set_location(' Entering:'|| l_proc, 10);
801:
802: if (p_name <> pay_ivl_shd.g_old_rec.name or p_display_sequence
803: <> pay_ivl_shd.g_old_rec.display_sequence) then
804: pay_element_types_pkg.check_for_paylink_batches

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

805: (p_element_type_id => p_element_type_id
806: ,p_element_name => p_name);
807: end if;
808:
809: hr_utility.set_location(' Leaving:'|| l_proc, 10);
810:
811: END chk_upd_display_sequence;
812:
813: --

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

831: l_count number;
832:
833: BEGIN
834:
835: hr_utility.set_location(' Entering:'|| l_proc, 10);
836:
837: if (p_generate_db_items_flag <> pay_ivl_shd.g_old_rec.generate_db_items_flag)
838: and p_datetrack_mode <> 'CORRECTION' then
839: open csr_row_count;

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

846: p_datetrack_mode := 'CORRECTION';
847: end if;
848: end if;
849:
850: hr_utility.set_location(' Leaving:'|| l_proc, 10);
851:
852: END chk_upd_generate_db_items_flag;
853:
854: --

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

892: l_count number;
893:
894: BEGIN
895:
896: hr_utility.set_location(' Entering:'|| l_proc, 10);
897:
898:
899: if (p_name <> pay_ivl_shd.g_old_rec.name) then
900:

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

957: close csr_ben_contri;
958:
959: end if;
960:
961: hr_utility.set_location(' Leaving:'|| l_proc, 10);
962:
963: END chk_upd_name;
964:
965: --

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

996: l_proc varchar2(72) := g_package||'chk_upd_uom';
997:
998: BEGIN
999:
1000: hr_utility.set_location(' Entering:'|| l_proc, 10);
1001:
1002: -- Check that the UOM if updated to a not null value is
1003: -- within the class as the previous UOM value
1004: if (p_uom <> pay_ivl_shd.g_old_rec.uom and p_uom is not null) then

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

1023: end loop;
1024: end if;
1025: end if;
1026:
1027: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1028:
1029: END chk_upd_uom;
1030:
1031: --

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

1065: l_proc varchar2(72) := g_package||'chk_upd_def_value_null';
1066:
1067: BEGIN
1068:
1069: hr_utility.set_location(' Entering:'|| l_proc, 10);
1070:
1071: open csr_pay_basis;
1072:
1073: -- Check for pay basis

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

1092: end if;
1093: close csr_entries;
1094: end if;
1095:
1096: hr_utility.set_location(' Entering:'|| l_proc, 10);
1097:
1098: END chk_upd_def_value_null;
1099:
1100: --

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

1114: l_proc varchar2(72) := g_package||'chk_upd_mand_flag';
1115:
1116: BEGIN
1117:
1118: hr_utility.set_location(' Entering:'|| l_proc, 10);
1119:
1120:
1121: if pay_ivl_shd.g_old_rec.mandatory_flag = 'N' and p_mandatory_flag = 'Y' then
1122: fnd_message.set_name('PAY', 'PAY_34125_MAN_FLAG_UPD');

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

1122: fnd_message.set_name('PAY', 'PAY_34125_MAN_FLAG_UPD');
1123: fnd_message.raise_error;
1124: end if;
1125:
1126: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1127:
1128: END chk_upd_mand_flag;
1129:
1130: --

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

1144: l_proc varchar2(72) := g_package||'chk_hot_default_flag';
1145:
1146: BEGIN
1147:
1148: hr_utility.set_location(' Entering:'|| l_proc, 10);
1149:
1150: if p_hot_default_flag = 'Y' and p_mandatory_flag <> 'Y' then
1151: fnd_message.set_name('PAY','PAY_34119_HOT_DEFAULT_FLAG');
1152: fnd_message.raise_error;

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

1151: fnd_message.set_name('PAY','PAY_34119_HOT_DEFAULT_FLAG');
1152: fnd_message.raise_error;
1153: end if;
1154:
1155: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1156:
1157: END chk_hot_default_flag;
1158: --
1159: -- ----------------------------------------------------------------------------

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

1188: l_proc varchar2(72) := g_package||'chk_name';
1189:
1190: BEGIN
1191:
1192: hr_utility.set_location(' Entering:'|| l_proc, 10);
1193:
1194: -- Check that the name is unique
1195:
1196: l_boolean := pay_input_values_pkg.name_not_unique

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

1222: fnd_message.set_name('PAY', 'PAY_34122_UOM_MONEY_PAYMENTS');
1223: fnd_message.raise_error;
1224: end if;
1225:
1226: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1227:
1228: END chk_name;
1229:
1230: --

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

1265: l_proc varchar2(72) := g_package||'chk_uom';
1266:
1267: BEGIN
1268:
1269: hr_utility.set_location(' Entering:'|| l_proc, 10);
1270:
1271: for rec in csr_currency
1272: loop
1273: if rec.input_currency_code is null and upper(p_uom) = 'M' then

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

1283: fnd_message.set_name('PAY', 'PAY_6171_INPVAL_NO_LOOKUP');
1284: fnd_message.raise_error;
1285: end if;
1286:
1287: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1288:
1289: END chk_uom;
1290:
1291: --

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

1327: l_proc varchar2(72) := g_package||'chk_default_value';
1328: --
1329: BEGIN
1330: --
1331: hr_utility.set_location(' Entering:'|| l_proc, 10);
1332: --
1333: if p_default_value is not null then
1334: --
1335: if p_lookup_type is not null then

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

1333: if p_default_value is not null then
1334: --
1335: if p_lookup_type is not null then
1336: --
1337: hr_utility.set_location(l_proc, 20);
1338: --
1339: open csr_lookup;
1340: fetch csr_lookup into l_dummy;
1341: --

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

1340: fetch csr_lookup into l_dummy;
1341: --
1342: if csr_lookup%notfound then
1343: --
1344: hr_utility.set_location(l_proc, 30);
1345: --
1346: close csr_lookup;
1347: --
1348: fnd_message.set_name('PAY', 'PAY_6171_INPVAL_NO_LOOKUP');

Line 1357: hr_utility.set_location(l_proc,40);

1353: close csr_lookup;
1354: --
1355: elsif p_value_set_id is not null then
1356: --
1357: hr_utility.set_location(l_proc,40);
1358: if pay_input_values_pkg.decode_vset_value (
1359: p_value_set_id,
1360: p_default_value ) is null then
1361: --

Line 1375: hr_utility.set_location(l_proc,50);

1371: p_default_value >= nvl(p_max_value,p_default_value )) then
1372: --
1373: if p_warning_or_error = 'E' then
1374: --
1375: hr_utility.set_location(l_proc,50);
1376: --
1377: fnd_message.set_name('PAY', 'PAY_6303_INPUT_VALUE_OUT_RANGE');
1378: fnd_message.raise_error;
1379: --

Line 1382: hr_utility.set_location(l_proc,60);

1378: fnd_message.raise_error;
1379: --
1380: elsif p_warning_or_error = 'W' then
1381: --
1382: hr_utility.set_location(l_proc,60);
1383: --
1384: p_default_val_warning := TRUE ;
1385: --
1386: end if;

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

1388: end if;
1389: --
1390: end if;
1391: --
1392: hr_utility.set_location(' Leaving:'|| l_proc, 70);
1393: --
1394: END chk_default_value;
1395:
1396: --

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

1436: l_proc varchar2(72) := g_package||'chk_upd_default_value';
1437: --
1438: BEGIN
1439: --
1440: hr_utility.set_location(' Entering:'|| l_proc, 10);
1441: --
1442: if p_lookup_type is not null or (
1443: pay_ivl_shd.g_old_rec.lookup_type is not null and
1444: p_lookup_type = hr_api.g_varchar2

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

1479: l_value_set_id := p_value_set_id;
1480: --
1481: end if;
1482: --
1483: hr_utility.set_location(l_proc,20);
1484: --
1485: -- Validate the default value using l_value_set_id
1486: --
1487: if pay_input_values_pkg.decode_vset_value (

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

1537: end if;
1538: --
1539: end if;
1540: --
1541: hr_utility.set_location(' Leaving:'|| l_proc, 30);
1542: --
1543: END chk_upd_default_value;
1544:
1545:

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

1561: )
1562: IS
1563: l_proc varchar2(72) := g_package||'chk_max_min_value';
1564: BEGIN
1565: hr_utility.set_location(' Entering:'|| l_proc, 10);
1566: if p_min_value > p_max_value then
1567: if p_warning_or_error = 'E' then
1568: fnd_message.set_name('PAY', 'HR_51975_ALL_MAX_MORE_MIN');
1569: fnd_message.raise_error;

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

1570: elsif p_warning_or_error = 'W' then
1571: p_min_max_warning := TRUE;
1572: end if;
1573: end if;
1574: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1575: END chk_max_min_value;
1576: --
1577: -- ----------------------------------------------------------------------------
1578: -- |----------------------------------------------------|

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

1605: l_dummy varchar2(1);
1606: l_proc varchar2(72) := g_package||'chk_warning_or_error';
1607: BEGIN
1608:
1609: hr_utility.set_location(' Entering:'|| l_proc, 10);
1610:
1611: if (p_min_value is not null or p_max_value is not null or p_formula_id
1612: is not null)
1613: and p_warning_or_error is null then

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

1627: fnd_message.raise_error;
1628: end if;
1629: close csr_lookup;
1630:
1631: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1632: END chk_warning_or_error;
1633:
1634: --
1635: -- ----------------------------------------------------------------------------

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

1686: l_proc varchar2(72) := g_package||'chk_other_insert_val';
1687:
1688: BEGIN
1689:
1690: hr_utility.set_location(' Entering:'|| l_proc, 10);
1691: if pay_input_values_pkg.no_of_input_values(p_element_type_id) >= 15 then
1692: fnd_message.set_name('PAY','HR_7124_INPVAL_MAX_ENTRIES');
1693: fnd_message.raise_error;
1694: end if;

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

1743: p_pay_basis_warning := TRUE;
1744: end if;
1745: end loop;
1746:
1747: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1748:
1749: END chk_other_insert_val;
1750: --
1751: -- ----------------------------------------------------------------------------

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

1845: l_proc varchar2(72) := g_package||'chk_raise_warning';
1846:
1847: BEGIN
1848:
1849: hr_utility.set_location(' Entering:'|| l_proc, 10);
1850:
1851:
1852: if p_lookup_type <> pay_ivl_shd.g_old_rec.lookup_type
1853: OR p_default_value <> pay_ivl_shd.g_old_rec.default_value OR p_min <> pay_ivl_shd.g_old_rec.min_value

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

1855: then
1856: p_link_inp_val_warning := TRUE;
1857: end if;
1858:
1859: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1860:
1861: END chk_raise_warning;
1862:
1863: --

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

1922: l_proc varchar2(72) := g_package||'chk_delete_allowed';
1923:
1924: BEGIN
1925:
1926: hr_utility.set_location(' Entering:'|| l_proc, 10);
1927:
1928: open csr_classification;
1929: fetch csr_classification into l_dummy;
1930: close csr_classification;

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

1947: TRUE) then
1948: null;
1949: end if;
1950:
1951: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1952:
1953: END chk_delete_allowed;
1954:
1955: --

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

1972: --
1973: l_proc varchar2(72) := g_package||'insert_validate';
1974: --
1975: Begin
1976: hr_utility.set_location('Entering:'||l_proc, 5);
1977: --
1978: -- Call all supporting business operations
1979: --
1980: --

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

2086: --
2087: -- Validate Dependent Attributes
2088: --
2089: --
2090: hr_utility.set_location(' Leaving:'||l_proc, 10);
2091: --
2092: End insert_validate;
2093: --
2094: -- ----------------------------------------------------------------------------

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

2112: l_proc varchar2(72) := g_package||'update_validate';
2113: l_default_formula_warning boolean;
2114: --
2115: Begin
2116: hr_utility.set_location('Entering:'||l_proc, 5);
2117: --
2118: -- Call all supporting business operations
2119: --
2120: --

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

2267: ,p_rec => p_rec
2268: );
2269: --
2270: --
2271: hr_utility.set_location(' Leaving:'||l_proc, 10);
2272: End update_validate;
2273: --
2274: -- ----------------------------------------------------------------------------
2275: -- |---------------------------< delete_validate >----------------------------|

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

2285: --
2286: l_proc varchar2(72) := g_package||'delete_validate';
2287: --
2288: Begin
2289: hr_utility.set_location('Entering:'||l_proc, 5);
2290: --
2291: --
2292: chk_startup_action(false
2293: ,pay_ivl_shd.g_old_rec.business_group_id

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

2325: ,p_validation_end_date => p_validation_end_date
2326: ,p_input_value_id => p_rec.input_value_id
2327: );
2328: --
2329: hr_utility.set_location(' Leaving:'||l_proc, 10);
2330: End delete_validate;
2331: --
2332: end pay_ivl_bus;