DBA Data[Home] [Help]

APPS.HR_EAP_BUS dependencies on HR_UTILITY

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

111: from hr_ki_ext_applications
112: where external_application_name = p_external_application_name;
113: --
114: Begin
115: hr_utility.set_location('Entering:'||l_proc,10);
116: --
117: -- Check value has been passed
118: --
119: hr_api.mandatory_arg_error

Line 125: hr_utility.set_location('Validating:'||l_proc,20);

121: ,p_argument => 'EXTERNAL_APPLICATION_NAME'
122: ,p_argument_value => p_external_application_name
123: );
124:
125: hr_utility.set_location('Validating:'||l_proc,20);
126: open csr_name;
127: fetch csr_name into l_key;
128: if (csr_name%found)
129: then

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

132: fnd_message.raise_error;
133: end if;
134: close csr_name;
135:
136: hr_utility.set_location(' Leaving:'||l_proc,30);
137: exception
138: when app_exception.application_exception then
139: if hr_multi_message.exception_add
140: (p_associated_column1 => 'hr_ki_ext_applications.EXTERNAL_APPLICATION_NAME'

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

138: when app_exception.application_exception then
139: if hr_multi_message.exception_add
140: (p_associated_column1 => 'hr_ki_ext_applications.EXTERNAL_APPLICATION_NAME'
141: )then
142: hr_utility.set_location(' Leaving:'||l_proc, 40);
143: raise;
144: end if;
145: hr_utility.set_location(' Leaving:'||l_proc,50);
146: End CHK_EXTERNAL_APPLICATION_NAME;

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

141: )then
142: hr_utility.set_location(' Leaving:'||l_proc, 40);
143: raise;
144: end if;
145: hr_utility.set_location(' Leaving:'||l_proc,50);
146: End CHK_EXTERNAL_APPLICATION_NAME;
147:
148: -- ----------------------------------------------------------------------------
149: -- |---------------< CHK_EXTERNAL_APP_NAME_UPD>-------------------------------|

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

187: where external_application_name = p_external_application_name
188: and ext_application_id<>p_ext_application_id;
189: --
190: Begin
191: hr_utility.set_location('Entering:'||l_proc,10);
192: --
193: -- Check value has been passed
194: --
195: hr_api.mandatory_arg_error

Line 201: hr_utility.set_location('Validating:'||l_proc,20);

197: ,p_argument => 'EXTERNAL_APPLICATION_NAME'
198: ,p_argument_value => p_external_application_name
199: );
200:
201: hr_utility.set_location('Validating:'||l_proc,20);
202: open csr_name;
203: fetch csr_name into l_key;
204: if (csr_name%found)
205: then

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

208: fnd_message.raise_error;
209: end if;
210: close csr_name;
211:
212: hr_utility.set_location(' Leaving:'||l_proc,30);
213: exception
214: when app_exception.application_exception then
215: if hr_multi_message.exception_add
216: (p_associated_column1 => 'hr_ki_ext_applications.EXTERNAL_APPLICATION_NAME'

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

214: when app_exception.application_exception then
215: if hr_multi_message.exception_add
216: (p_associated_column1 => 'hr_ki_ext_applications.EXTERNAL_APPLICATION_NAME'
217: )then
218: hr_utility.set_location(' Leaving:'||l_proc, 40);
219: raise;
220: end if;
221: hr_utility.set_location(' Leaving:'||l_proc,50);
222: End CHK_EXTERNAL_APP_NAME_UPD;

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

217: )then
218: hr_utility.set_location(' Leaving:'||l_proc, 40);
219: raise;
220: end if;
221: hr_utility.set_location(' Leaving:'||l_proc,50);
222: End CHK_EXTERNAL_APP_NAME_UPD;
223: --
224: -- ----------------------------------------------------------------------------
225: -- |---------------------------< insert_validate >----------------------------|

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

230: --
231: l_proc varchar2(72) := g_package||'insert_validate';
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: --
236: -- Call all supporting business operations
237: --
238: --

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

241: --
242: -- Validate Dependent Attributes
243: --
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: End insert_validate;
247: --
248: -- ----------------------------------------------------------------------------
249: -- |---------------------------< update_validate >----------------------------|

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

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

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

277:
278:
279: --
280: --
281: hr_utility.set_location(' Leaving:'||l_proc, 10);
282: End update_validate;
283: --
284: -- ----------------------------------------------------------------------------
285: -- |---------------------------< delete_validate >----------------------------|

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

290: --
291: l_proc varchar2(72) := g_package||'delete_validate';
292: --
293: Begin
294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: -- Call all supporting business operations
297: --
298: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: -- Call all supporting business operations
297: --
298: hr_utility.set_location(' Leaving:'||l_proc, 10);
299: End delete_validate;
300: --
301: end hr_eap_bus;