DBA Data[Home] [Help]

APPS.HR_PAC_BUS dependencies on HR_UTILITY

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

74: end check_parameters;
75: --
76: begin
77: --
78: hr_utility.set_location ('Entering '||l_proc,1);
79: --
80: check_parameters;
81: --
82: open csr_pattern_purpose;

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

96: -- The pattern bit chosen, or one of the pattern bits in the component
97: -- pattern chosen, was not a whole multiple of a day.
98: --
99: close csr_pattern_bit;
100: hr_utility.set_message (801,'HR_51073_PAC_SSP_BITS');
101: hr_utility.raise_error;
102: --
103: else
104: --

Line 101: hr_utility.raise_error;

97: -- pattern chosen, was not a whole multiple of a day.
98: --
99: close csr_pattern_bit;
100: hr_utility.set_message (801,'HR_51073_PAC_SSP_BITS');
101: hr_utility.raise_error;
102: --
103: else
104: --
105: close csr_pattern_bit;

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

111: close csr_pattern_purpose;
112: --
113: end if;
114: --
115: hr_utility.set_location ('Leaving '||l_proc,10);
116: --
117: end chk_SSP_rules;
118: -- ----------------------------------------------------------------------------
119: -- |---------------------------< chk_availability >---------------------------|

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

134: and lookup_type = 'AVAILABILITY';
135: --
136: begin
137: --
138: hr_utility.set_location ('Entering '||l_proc,1);
139: --
140: if p_availability is not null then
141: --
142: open csr_lookup;

Line 149: hr_utility.set_message (801,'HR_51074_PAC_AVAILABILITY');

145: --
146: -- The availability was not valid.
147: --
148: close csr_lookup;
149: hr_utility.set_message (801,'HR_51074_PAC_AVAILABILITY');
150: hr_utility.raise_error;
151: --
152: else
153: --

Line 150: hr_utility.raise_error;

146: -- The availability was not valid.
147: --
148: close csr_lookup;
149: hr_utility.set_message (801,'HR_51074_PAC_AVAILABILITY');
150: hr_utility.raise_error;
151: --
152: else
153: --
154: close csr_lookup;

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

156: end if;
157: --
158: end if;
159: --
160: hr_utility.set_location ('Leaving '||l_proc,10);
161: --
162: end chk_availability;
163: -- ----------------------------------------------------------------------------
164: -- |---------------------------< chk_component_pattern_id >-------------------|

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

182: and component_pattern_id is not null;
183: --
184: begin
185: --
186: hr_utility.set_location ('Entering '||l_proc,1);
187: --
188: if p_component_pattern_id is not null then
189: --
190: open csr_component;

Line 195: hr_utility.set_message (801,'HR_51075_PAC_PAT_HIERARCHY');

191: fetch csr_component into l_dummy;
192: if csr_component%found then
193: --
194: close csr_component;
195: hr_utility.set_message (801,'HR_51075_PAC_PAT_HIERARCHY');
196: hr_utility.raise_error;
197: --
198: else
199: --

Line 196: hr_utility.raise_error;

192: if csr_component%found then
193: --
194: close csr_component;
195: hr_utility.set_message (801,'HR_51075_PAC_PAT_HIERARCHY');
196: hr_utility.raise_error;
197: --
198: else
199: --
200: close csr_component;

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

202: end if;
203: --
204: end if;
205: --
206: hr_utility.set_location ('Leaving '||l_proc,10);
207: --
208: end chk_component_pattern_id;
209: -- ----------------------------------------------------------------------------
210: -- |---------------------------< insert_validate >----------------------------|

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

213: --
214: l_proc varchar2(72) := g_package||'insert_validate';
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: -- Call all supporting business operations
220: --
221: chk_availability (p_availability=> p_rec.availability);

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

227: p_component_pattern_id=> p_rec.component_pattern_id,
228: p_pattern_bit_id=> p_rec.pattern_bit_id);
229: --
230: --
231: hr_utility.set_location(' Leaving:'||l_proc, 10);
232: End insert_validate;
233: --
234: -- ----------------------------------------------------------------------------
235: -- |---------------------------< update_validate >----------------------------|

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

238: --
239: l_proc varchar2(72) := g_package||'update_validate';
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: -- Call all supporting business operations
245: --
246: -- Update is NOT allowed

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

244: -- Call all supporting business operations
245: --
246: -- Update is NOT allowed
247: --
248: hr_utility.set_location(' Leaving:'||l_proc, 10);
249: End update_validate;
250: --
251: -- ----------------------------------------------------------------------------
252: -- |---------------------------< delete_validate >----------------------------|

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

255: --
256: l_proc varchar2(72) := g_package||'delete_validate';
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: -- Call all supporting business operations
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: -- Call all supporting business operations
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);
264: End delete_validate;
265: --
266: end hr_pac_bus;