DBA Data[Home] [Help]

APPS.HR_PAP_BUS dependencies on HR_UTILITY

Line 87: hr_utility.set_location ('Entering '||l_proc,1);

83: end check_parameters;
84: --
85: begin
86: --
87: hr_utility.set_location ('Entering '||l_proc,1);
88: --
89: check_parameters;
90: --
91: -- Check that the pattern purpose is a valid lookup code.

Line 100: hr_utility.set_message (801,'HR_51078_PAP_PATTERN_PURPOSE');

96: --
97: -- The pattern purpose is not valid.
98: --
99: close csr_lookup;
100: hr_utility.set_message (801,'HR_51078_PAP_PATTERN_PURPOSE');
101: hr_utility.raise_error;
102: --
103: else
104: --

Line 101: hr_utility.raise_error;

97: -- The pattern purpose is not valid.
98: --
99: close csr_lookup;
100: hr_utility.set_message (801,'HR_51078_PAP_PATTERN_PURPOSE');
101: hr_utility.raise_error;
102: --
103: else
104: --
105: close csr_lookup;

Line 120: hr_utility.set_message (801,'HR_51079_PAP_SSP_PATTERN');

116: fetch csr_non_SSP_pattern into l_dummy;
117: if csr_non_SSP_pattern%found then
118: --
119: close csr_non_SSP_pattern;
120: hr_utility.set_message (801,'HR_51079_PAP_SSP_PATTERN');
121: hr_utility.raise_error;
122: --
123: else
124: --

Line 121: hr_utility.raise_error;

117: if csr_non_SSP_pattern%found then
118: --
119: close csr_non_SSP_pattern;
120: hr_utility.set_message (801,'HR_51079_PAP_SSP_PATTERN');
121: hr_utility.raise_error;
122: --
123: else
124: --
125: close csr_non_SSP_pattern;

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

127: end if;
128: --
129: end if;
130: --
131: hr_utility.set_location ('Leaving '||l_proc,10);
132: --
133: end chk_pattern_purpose;
134: -- ----------------------------------------------------------------------------
135: -- |---------------------------< insert_validate >----------------------------|

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

138: --
139: l_proc varchar2(72) := g_package||'insert_validate';
140: --
141: Begin
142: hr_utility.set_location('Entering:'||l_proc, 5);
143: --
144: -- Call all supporting business operations
145: --
146: chk_pattern_purpose ( p_pattern_purpose=> p_rec.pattern_purpose,

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

146: chk_pattern_purpose ( p_pattern_purpose=> p_rec.pattern_purpose,
147: p_pattern_id=> p_rec.pattern_id);
148: --
149: --
150: hr_utility.set_location(' Leaving:'||l_proc, 10);
151: End insert_validate;
152: --
153: -- ----------------------------------------------------------------------------
154: -- |---------------------------< update_validate >----------------------------|

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

157: --
158: l_proc varchar2(72) := g_package||'update_validate';
159: --
160: Begin
161: hr_utility.set_location('Entering:'||l_proc, 5);
162: --
163: -- Call all supporting business operations
164: --
165: --

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

163: -- Call all supporting business operations
164: --
165: --
166: --
167: hr_utility.set_location(' Leaving:'||l_proc, 10);
168: End update_validate;
169: --
170: -- ----------------------------------------------------------------------------
171: -- |---------------------------< delete_validate >----------------------------|

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

174: --
175: l_proc varchar2(72) := g_package||'delete_validate';
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: -- Call all supporting business operations
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: -- Call all supporting business operations
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: End delete_validate;
184: --
185: end hr_pap_bus;