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 184: hr_utility.set_location(' Entering:'|| l_proc, 10);

180: l_range_check varchar2(10) ;
181: --
182: BEGIN
183: --
184: hr_utility.set_location(' Entering:'|| l_proc, 10);
185: --
186: if p_default_value is not null and p_lookup_type is null then
187: --
188: hr_utility.set_location(l_proc, 20);

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

184: hr_utility.set_location(' Entering:'|| l_proc, 10);
185: --
186: if p_default_value is not null and p_lookup_type is null then
187: --
188: hr_utility.set_location(l_proc, 20);
189: --
190:
191: l_default_value := p_default_value ;
192: --

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

204: if l_range_check = 'F' then
205: --
206: if p_warning_or_error = 'E' then
207: --
208: hr_utility.set_location(l_proc,30);
209: --
210: fnd_message.set_name('PAY', 'HR_INPVAL_DEFAULT_INVALID');
211: fnd_message.raise_error;
212: --

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

211: fnd_message.raise_error;
212: --
213: elsif p_warning_or_error = 'W' then
214: --
215: hr_utility.set_location(l_proc,40);
216: --
217: p_default_val_warning := TRUE ;
218: --
219: end if;

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

221: end if;
222: --
223: end if ;
224:
225: hr_utility.set_location(' Leaving:'|| l_proc, 50);
226:
227: END chk_default_value_format;
228: --
229:

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

569: l_proc varchar2(72) := g_package||'chk_lookup_type';
570:
571: BEGIN
572:
573: hr_utility.set_location(' Entering:'|| l_proc, 10);
574:
575: if p_lookup_type is not null and upper(p_uom) <> 'C' then
576: fnd_message.set_name('PAY','PAY_34117_INVALID_UOM');
577: fnd_message.raise_error;

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

585: end if;
586: close csr_lookup;
587: end if;
588:
589: hr_utility.set_location(' Leaving:'|| l_proc, 10);
590:
591: END chk_lookup_type;
592:
593: --

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

624: l_proc varchar2(72) := g_package||'chk_formula_id';
625:
626: BEGIN
627:
628: hr_utility.set_location(' Entering:'|| l_proc, 10);
629:
630: if p_formula_id is not null then
631: open csr_formula;
632: fetch csr_formula into l_dummy;

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

637: end if;
638: close csr_formula;
639: end if;
640:
641: hr_utility.set_location(' Leaving:'|| l_proc, 10);
642:
643: END chk_formula_id;
644: --
645: -- ----------------------------------------------------------------------------

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

672: and p_effective_date between effective_start_date
673: and effective_end_date;
674: --
675: Begin
676: hr_utility.set_location(' Entering:'||l_proc, 5);
677: --
678: If p_business_group_id is not null then
679: --
680: -- Validation is not done for startup elements

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

681: --
682: l_formula_id := p_formula_id;
683: p_assignment_id_warning := false;
684:
685: hr_utility.set_location(' Step 1:'||l_proc, 6);
686: If (l_formula_id is null) then
687: --
688: Open C_formula;
689: Fetch C_formula into l_formula_id;

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

690: Close C_formula;
691: --
692: End If;
693: --
694: hr_utility.set_location(' Step 3:'||l_proc, 8);
695: -- We need to call a formula to validate the default value.
696: --For Bug No. 2879170 added if condtion.
697: If l_formula_id is not null then
698: ff_exec.init_formula(l_formula_id,

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

702: --
703: -- Check the input count before attempting to
704: -- set the input and context values.
705: --
706: hr_utility.set_location(' Step 4:'||l_proc, 9);
707: If(l_inputs.count >= 1) then
708: -- Set up the inputs and contexts to formula.
709: For i in l_inputs.first..l_inputs.last loop
710: If l_inputs(i).name = 'ASSIGNMENT_ID' then

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

750: --
751: For i in l_outputs.first..l_outputs.last loop
752: If l_outputs(i).name = 'FORMULA_MESSAGE' then
753: --
754: hr_utility.set_location(' Step 5:'||l_proc, 10);
755: l_formula_message := l_outputs(i).value;
756: Elsif l_outputs(i).name = 'FORMULA_STATUS' then
757: --
758: hr_utility.set_location(' Step 6:'||l_proc, 11);

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

754: hr_utility.set_location(' Step 5:'||l_proc, 10);
755: l_formula_message := l_outputs(i).value;
756: Elsif l_outputs(i).name = 'FORMULA_STATUS' then
757: --
758: hr_utility.set_location(' Step 6:'||l_proc, 11);
759: l_formula_status := upper(l_outputs(i).value);
760: Else
761: --
762: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');

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

768: End loop;
769: --
770: -- Check whether we have raised an error and act appropriately.
771: --
772: hr_utility.set_location(' Step 7:'||l_proc, 11);
773: If l_formula_status <> 'S' and p_warning_or_error = 'E' then
774: -- I.e. the formula validation failed and we need to raise an error.
775: If l_formula_message is null then
776: -- User not defined an error message.

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

795: --
796: End If;
797: End If;
798: --
799: hr_utility.set_location(' Leaving:'||l_proc, 10);
800: End;
801: --
802: -- ----------------------------------------------------------------------------
803: -- |-------------------------------------------------------|

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

816: where flex_value_set_id = p_value_set_id;
817: --
818: BEGIN
819: --
820: hr_utility.set_location(' Entering:'|| l_proc, 10);
821: --
822: if p_value_set_id is not null then
823: -- Check uom is 'C'
824: if upper(p_uom) <> 'C' then

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

821: --
822: if p_value_set_id is not null then
823: -- Check uom is 'C'
824: if upper(p_uom) <> 'C' then
825: hr_utility.set_location(l_proc, 20);
826: fnd_message.set_name('PAY','PAY_34117_INVALID_UOM');
827: fnd_message.raise_error;
828: else
829: -- Check value set id is valid, i.e. that it exists and that the value

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

831: open csr_value_set;
832: fetch csr_value_set into l_validation_type;
833: if csr_value_set%notfound or l_validation_type <> 'F' then
834: close csr_value_set;
835: hr_utility.set_location(l_proc, 30);
836: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
837: fnd_message.set_token('PROCEDURE', l_proc);
838: fnd_message.set_token('STEP','30');
839: fnd_message.raise_error;

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

841: close csr_value_set;
842: end if;
843: end if;
844: --
845: hr_utility.set_location(' Leaving:'|| l_proc, 40);
846: --
847: END chk_value_set_id;
848:
849: -- ----------------------------------------------------------------------------

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

864: l_proc varchar2(72) := g_package||'chk_upd_display_sequence';
865:
866: BEGIN
867:
868: hr_utility.set_location(' Entering:'|| l_proc, 10);
869:
870: if (p_name <> pay_ivl_shd.g_old_rec.name or p_display_sequence
871: <> pay_ivl_shd.g_old_rec.display_sequence) then
872: pay_element_types_pkg.check_for_paylink_batches

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

873: (p_element_type_id => p_element_type_id
874: ,p_element_name => p_name);
875: end if;
876:
877: hr_utility.set_location(' Leaving:'|| l_proc, 10);
878:
879: END chk_upd_display_sequence;
880:
881: --

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

899: l_count number;
900:
901: BEGIN
902:
903: hr_utility.set_location(' Entering:'|| l_proc, 10);
904:
905: if (p_generate_db_items_flag <> pay_ivl_shd.g_old_rec.generate_db_items_flag)
906: and p_datetrack_mode <> 'CORRECTION' then
907: open csr_row_count;

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

914: p_datetrack_mode := 'CORRECTION';
915: end if;
916: end if;
917:
918: hr_utility.set_location(' Leaving:'|| l_proc, 10);
919:
920: END chk_upd_generate_db_items_flag;
921:
922: --

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

960: l_count number;
961:
962: BEGIN
963:
964: hr_utility.set_location(' Entering:'|| l_proc, 10);
965:
966:
967: if (p_name <> pay_ivl_shd.g_old_rec.name) then
968:

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

1025: close csr_ben_contri;
1026:
1027: end if;
1028:
1029: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1030:
1031: END chk_upd_name;
1032:
1033: --

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

1064: l_proc varchar2(72) := g_package||'chk_upd_uom';
1065:
1066: BEGIN
1067:
1068: hr_utility.set_location(' Entering:'|| l_proc, 10);
1069:
1070: -- Check that the UOM if updated to a not null value is
1071: -- within the class as the previous UOM value
1072: if (p_uom <> pay_ivl_shd.g_old_rec.uom and p_uom is not null) then

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

1091: end loop;
1092: end if;
1093: end if;
1094:
1095: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1096:
1097: END chk_upd_uom;
1098:
1099: --

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

1133: l_proc varchar2(72) := g_package||'chk_upd_def_value_null';
1134:
1135: BEGIN
1136:
1137: hr_utility.set_location(' Entering:'|| l_proc, 10);
1138:
1139: open csr_pay_basis;
1140:
1141: -- Check for pay basis

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

1160: end if;
1161: close csr_entries;
1162: end if;
1163:
1164: hr_utility.set_location(' Entering:'|| l_proc, 10);
1165:
1166: END chk_upd_def_value_null;
1167:
1168: --

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

1182: l_proc varchar2(72) := g_package||'chk_upd_mand_flag';
1183:
1184: BEGIN
1185:
1186: hr_utility.set_location(' Entering:'|| l_proc, 10);
1187:
1188:
1189: if pay_ivl_shd.g_old_rec.mandatory_flag = 'N' and p_mandatory_flag = 'Y' then
1190: fnd_message.set_name('PAY', 'PAY_34125_MAN_FLAG_UPD');

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

1190: fnd_message.set_name('PAY', 'PAY_34125_MAN_FLAG_UPD');
1191: fnd_message.raise_error;
1192: end if;
1193:
1194: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1195:
1196: END chk_upd_mand_flag;
1197:
1198: --

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

1212: l_proc varchar2(72) := g_package||'chk_hot_default_flag';
1213:
1214: BEGIN
1215:
1216: hr_utility.set_location(' Entering:'|| l_proc, 10);
1217:
1218: if p_hot_default_flag = 'Y' and p_mandatory_flag <> 'Y' then
1219: fnd_message.set_name('PAY','PAY_34119_HOT_DEFAULT_FLAG');
1220: fnd_message.raise_error;

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

1219: fnd_message.set_name('PAY','PAY_34119_HOT_DEFAULT_FLAG');
1220: fnd_message.raise_error;
1221: end if;
1222:
1223: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1224:
1225: END chk_hot_default_flag;
1226: --
1227: -- ----------------------------------------------------------------------------

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

1256: l_proc varchar2(72) := g_package||'chk_name';
1257:
1258: BEGIN
1259:
1260: hr_utility.set_location(' Entering:'|| l_proc, 10);
1261:
1262: -- Check that the name is unique
1263:
1264: l_boolean := pay_input_values_pkg.name_not_unique

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

1290: fnd_message.set_name('PAY', 'PAY_34122_UOM_MONEY_PAYMENTS');
1291: fnd_message.raise_error;
1292: end if;
1293:
1294: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1295:
1296: END chk_name;
1297:
1298: --

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

1333: l_proc varchar2(72) := g_package||'chk_uom';
1334:
1335: BEGIN
1336:
1337: hr_utility.set_location(' Entering:'|| l_proc, 10);
1338:
1339: for rec in csr_currency
1340: loop
1341: if rec.input_currency_code is null and upper(p_uom) = 'M' then

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

1351: fnd_message.set_name('PAY', 'PAY_6171_INPVAL_NO_LOOKUP');
1352: fnd_message.raise_error;
1353: end if;
1354:
1355: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1356:
1357: END chk_uom;
1358:
1359: --

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

1404: l_input_currency_code varchar2(10) ;
1405: --
1406: BEGIN
1407: --
1408: hr_utility.set_location(' Entering:'|| l_proc, 10);
1409: --
1410: if p_default_value is not null then
1411: --
1412: if p_lookup_type is not null then

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

1410: if p_default_value is not null then
1411: --
1412: if p_lookup_type is not null then
1413: --
1414: hr_utility.set_location(l_proc, 20);
1415: --
1416: open csr_lookup;
1417: fetch csr_lookup into l_dummy;
1418: --

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

1417: fetch csr_lookup into l_dummy;
1418: --
1419: if csr_lookup%notfound then
1420: --
1421: hr_utility.set_location(l_proc, 30);
1422: --
1423: close csr_lookup;
1424: --
1425: fnd_message.set_name('PAY', 'PAY_6171_INPVAL_NO_LOOKUP');

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

1430: close csr_lookup;
1431: --
1432: elsif p_value_set_id is not null then
1433: --
1434: hr_utility.set_location(l_proc,40);
1435: if pay_input_values_pkg.decode_vset_value (
1436: p_value_set_id,
1437: p_default_value ) is null then
1438: --

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

1447: -- Bug 6164772
1448:
1449: elsif (p_min_value is not null or p_max_value is not null) then
1450: --
1451: hr_utility.set_location(' Leaving:'|| l_proc, 50);
1452: --
1453: open csr_currency(p_element_type_id);
1454: fetch csr_currency into l_input_currency_code ;
1455: close csr_currency;

Line 1472: hr_utility.set_location(' Leaving:'|| l_proc, 60);

1468: end if;
1469: --
1470: end if;
1471: --
1472: hr_utility.set_location(' Leaving:'|| l_proc, 60);
1473: --
1474: END chk_default_value;
1475:
1476: --

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

1519: l_proc varchar2(72) := g_package||'chk_upd_default_value';
1520: --
1521: BEGIN
1522: --
1523: hr_utility.set_location(' Entering:'|| l_proc, 10);
1524: --
1525: if p_lookup_type is not null or (
1526: pay_ivl_shd.g_old_rec.lookup_type is not null and
1527: p_lookup_type = hr_api.g_varchar2

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

1562: l_value_set_id := p_value_set_id;
1563: --
1564: end if;
1565: --
1566: hr_utility.set_location(l_proc,20);
1567: --
1568: -- Validate the default value using l_value_set_id
1569: --
1570: if pay_input_values_pkg.decode_vset_value (

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

1620: end if;
1621: --
1622: end if;
1623: --
1624: hr_utility.set_location(' Leaving:'|| l_proc, 30);
1625: --
1626: END chk_upd_default_value;
1627: */
1628:

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

1657: l_max_value varchar2(255);
1658: --
1659: BEGIN
1660: --
1661: hr_utility.set_location(' Entering:'|| l_proc, 10);
1662: --
1663: if(p_max_value is not null and p_min_value is not null) then
1664: --
1665: hr_utility.set_location(' Entering:'|| l_proc, 20);

Line 1665: hr_utility.set_location(' Entering:'|| l_proc, 20);

1661: hr_utility.set_location(' Entering:'|| l_proc, 10);
1662: --
1663: if(p_max_value is not null and p_min_value is not null) then
1664: --
1665: hr_utility.set_location(' Entering:'|| l_proc, 20);
1666: --
1667: open csr_currency(p_element_type_id);
1668: fetch csr_currency into l_input_currency_code ;
1669: close csr_currency;

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

1696: end if;
1697: --
1698: end if;
1699: --
1700: hr_utility.set_location(' Leaving:'|| l_proc, 30);
1701: --
1702: END chk_max_min_value;
1703:
1704: --

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

1733: l_dummy varchar2(1);
1734: l_proc varchar2(72) := g_package||'chk_warning_or_error';
1735: BEGIN
1736:
1737: hr_utility.set_location(' Entering:'|| l_proc, 10);
1738:
1739: if (p_min_value is not null or p_max_value is not null or p_formula_id
1740: is not NULL)
1741: -- or p_lookup_type is not null) -- bug 8675578

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

1758: fnd_message.raise_error;
1759: end if;
1760: close csr_lookup;
1761:
1762: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1763: END chk_warning_or_error;
1764:
1765: --
1766: -- ----------------------------------------------------------------------------

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

1817: l_proc varchar2(72) := g_package||'chk_other_insert_val';
1818:
1819: BEGIN
1820:
1821: hr_utility.set_location(' Entering:'|| l_proc, 10);
1822: if pay_input_values_pkg.no_of_input_values(p_element_type_id) >= 15 then
1823: fnd_message.set_name('PAY','HR_7124_INPVAL_MAX_ENTRIES');
1824: fnd_message.raise_error;
1825: end if;

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

1874: p_pay_basis_warning := TRUE;
1875: end if;
1876: end loop;
1877:
1878: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1879:
1880: END chk_other_insert_val;
1881: --
1882: -- ----------------------------------------------------------------------------

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

1976: l_proc varchar2(72) := g_package||'chk_raise_warning';
1977:
1978: BEGIN
1979:
1980: hr_utility.set_location(' Entering:'|| l_proc, 10);
1981:
1982:
1983: if p_lookup_type <> pay_ivl_shd.g_old_rec.lookup_type
1984: OR p_default_value <> pay_ivl_shd.g_old_rec.default_value OR p_min <> pay_ivl_shd.g_old_rec.min_value

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

1986: then
1987: p_link_inp_val_warning := TRUE;
1988: end if;
1989:
1990: hr_utility.set_location(' Leaving:'|| l_proc, 10);
1991:
1992: END chk_raise_warning;
1993:
1994: --

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

2053: l_proc varchar2(72) := g_package||'chk_delete_allowed';
2054:
2055: BEGIN
2056:
2057: hr_utility.set_location(' Entering:'|| l_proc, 10);
2058:
2059: open csr_classification;
2060: fetch csr_classification into l_dummy;
2061: close csr_classification;

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

2078: TRUE) then
2079: null;
2080: end if;
2081:
2082: hr_utility.set_location(' Leaving:'|| l_proc, 10);
2083:
2084: END chk_delete_allowed;
2085:
2086: --

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

2103: --
2104: l_proc varchar2(72) := g_package||'insert_validate';
2105: --
2106: Begin
2107: hr_utility.set_location('Entering:'||l_proc, 5);
2108: --
2109: -- Call all supporting business operations
2110: --
2111: --

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

2225: --
2226: -- Validate Dependent Attributes
2227: --
2228: --
2229: hr_utility.set_location(' Leaving:'||l_proc, 10);
2230: --
2231: End insert_validate;
2232: --
2233: -- ----------------------------------------------------------------------------

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

2251: l_proc varchar2(72) := g_package||'update_validate';
2252: l_default_formula_warning boolean;
2253: --
2254: Begin
2255: hr_utility.set_location('Entering:'||l_proc, 5);
2256: --
2257: -- Call all supporting business operations
2258: --
2259: --

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

2426: );
2427: END IF;
2428: --
2429: --
2430: hr_utility.set_location(' Leaving:'||l_proc, 10);
2431: End update_validate;
2432: --
2433: -- ----------------------------------------------------------------------------
2434: -- |---------------------------< delete_validate >----------------------------|

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

2444: --
2445: l_proc varchar2(72) := g_package||'delete_validate';
2446: --
2447: Begin
2448: hr_utility.set_location('Entering:'||l_proc, 5);
2449: --
2450: --
2451: chk_startup_action(false
2452: ,pay_ivl_shd.g_old_rec.business_group_id

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

2484: ,p_validation_end_date => p_validation_end_date
2485: ,p_input_value_id => p_rec.input_value_id
2486: );
2487: --
2488: hr_utility.set_location(' Leaving:'||l_proc, 10);
2489: End delete_validate;
2490: --
2491: end pay_ivl_bus;