DBA Data[Home] [Help]

APPS.PER_QTT_BUS dependencies on HR_UTILITY

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

36: p_qualification_type_id <> qtt.qualification_type_id
37: );
38: --
39: Begin
40: hr_utility.set_location('Entering:'||l_proc, 5);
41: --
42: l_api_updating := per_qtt_shd.api_updating
43: (p_qualification_type_id => p_qualification_type_id,
44: p_language => p_language

Line 58: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');

54: if p_name is null then
55: --
56: -- raise error
57: --
58: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');
59: hr_utility.raise_error;
60: --
61: end if;
62: --

Line 59: hr_utility.raise_error;

55: --
56: -- raise error
57: --
58: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');
59: hr_utility.raise_error;
60: --
61: end if;
62: --
63: -- check if the qualification name exists in the per_qualification_types

Line 74: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');

70: --
71: -- raise error
72: --
73: close c1;
74: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');
75: hr_utility.raise_error;
76: --
77: end if;
78: --

Line 75: hr_utility.raise_error;

71: -- raise error
72: --
73: close c1;
74: hr_utility.set_message(801, 'HR_51536_EQT_NAME_UK');
75: hr_utility.raise_error;
76: --
77: end if;
78: --
79: close c1;

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

79: close c1;
80: --
81: end if;
82: --
83: hr_utility.set_location('Leaving:'||l_proc,5);
84:
85: end chk_name_unique;
86: --
87: -- ----------------------------------------------------------------------------

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

147: l_proc varchar2(72) := g_package||'validate_translation';
148: --
149: Begin
150: --
151: hr_utility.set_location('Entering:'||l_proc,5);
152: --
153: -- Get any required base table values here
154: -- (none)
155: --

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

158: ,p_language => p_rec.language
159: ,p_name => p_rec.name
160: );
161: --
162: hr_utility.set_location('Leaving:'||l_proc,10);
163: --
164: END;
165: --
166: -- ----------------------------------------------------------------------------

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

173: --
174: l_proc varchar2(72) := g_package||'insert_validate';
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 5);
178: --
179: -- Call all supporting business operations
180: --
181: -- PMFLETCH - Implemented as per base table

Line 190: hr_utility.set_location('Entering:'||l_proc, 7);

186: -- Fix for bug 2723065
187: -- Commented line which hardcodes security profile to '0'
188: -- hr_api.set_security_group_id(p_security_group_id => 0);
189: --
190: hr_utility.set_location('Entering:'||l_proc, 7);
191: --
192: validate_translation
193: ( p_rec
194: , p_qualification_type_id

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

196: --
197: -- Validate Dependent Attributes
198: -- None
199: --
200: hr_utility.set_location(' Leaving:'||l_proc, 10);
201: End insert_validate;
202: --
203: -- ----------------------------------------------------------------------------
204: -- |---------------------------< update_validate >----------------------------|

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

209: --
210: l_proc varchar2(72) := g_package||'update_validate';
211: --
212: Begin
213: hr_utility.set_location('Entering:'||l_proc, 5);
214: --
215: -- Call all supporting business operations
216: --
217: -- PMFLETCH - Implemented as per base table

Line 226: hr_utility.set_location('Entering:'||l_proc, 7);

222: -- Fix for bug 2723065
223: -- Commented line which hardcodes security profile to '0'
224: -- hr_api.set_security_group_id(p_security_group_id => 0);
225: --
226: hr_utility.set_location('Entering:'||l_proc, 7);
227: --
228: --
229: validate_translation
230: ( p_rec

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

237: (p_rec => p_rec
238: );
239: --
240: --
241: hr_utility.set_location(' Leaving:'||l_proc, 10);
242: End update_validate;
243: --
244: -- ----------------------------------------------------------------------------
245: -- |---------------------------< delete_validate >----------------------------|

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

250: --
251: l_proc varchar2(72) := g_package||'delete_validate';
252: --
253: Begin
254: hr_utility.set_location('Entering:'||l_proc, 5);
255: --
256: -- Call all supporting business operations
257: --
258: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

254: hr_utility.set_location('Entering:'||l_proc, 5);
255: --
256: -- Call all supporting business operations
257: --
258: hr_utility.set_location(' Leaving:'||l_proc, 10);
259: End delete_validate;
260: --
261: -- ----------------------------------------------------------------------------
262: -- |---------------------------< validate_translation >------------------------|

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

293: l_proc varchar2(72) := g_package||'validate_translation';
294: --
295: BEGIN
296: --
297: hr_utility.set_location('Entering:'||l_proc,5);
298: --
299: chk_name_unique
300: ( p_qualification_type_id => p_qualification_type_id
301: , p_language => p_language

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

301: , p_language => p_language
302: , p_name => p_name
303: );
304: --
305: hr_utility.set_location('Leaving:'||l_proc,10);
306: --
307: END;
308: --
309: end per_qtt_bus;