DBA Data[Home] [Help]

APPS.FF_LOAD_CONTEXTS_PKG dependencies on HR_UTILITY

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

191:
192: --
193: -- The context does not match any in the list.
194: --
195: hr_utility.set_message(801, 'FF_33290_CONTEXT_NOT_ALLOWED');
196: hr_utility.set_message_token('1', p_context_name);
197: hr_utility.raise_error;
198: end validate_name;
199:

Line 196: hr_utility.set_message_token('1', p_context_name);

192: --
193: -- The context does not match any in the list.
194: --
195: hr_utility.set_message(801, 'FF_33290_CONTEXT_NOT_ALLOWED');
196: hr_utility.set_message_token('1', p_context_name);
197: hr_utility.raise_error;
198: end validate_name;
199:
200: -- ----------------------------------------------------------------------------

Line 197: hr_utility.raise_error;

193: -- The context does not match any in the list.
194: --
195: hr_utility.set_message(801, 'FF_33290_CONTEXT_NOT_ALLOWED');
196: hr_utility.set_message_token('1', p_context_name);
197: hr_utility.raise_error;
198: end validate_name;
199:
200: -- ----------------------------------------------------------------------------
201: -- |---------------------------< LOAD_ROW >------------------------------------|

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

215: where fcon.context_name = p_context_name;
216:
217: BEGIN
218: --
219: hr_utility.set_location('Entering:'|| l_proc, 10);
220:
221: open csr_existing;
222: fetch csr_existing into l_existing_con_id;
223:

Line 240: hr_utility.set_location(' Leaving:'|| l_proc, 20);

236: end if;
237: --
238: -- do not pass back any out parameters from the API calls
239: --
240: hr_utility.set_location(' Leaving:'|| l_proc, 20);
241: --
242: end load_row;
243:
244: --

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

254: l_proc varchar2(100) := g_package || 'insert_contexts';
255: --
256: Begin
257: --
258: hr_utility.set_location('Entering:'|| l_proc, 10);
259:
260: --Insert into ff_formula_types table
261: Insert Into FF_CONTEXTS(
262: CONTEXT_ID

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

267: ,p_context_level
268: ,p_context_name
269: ,p_data_type);
270: --
271: hr_utility.set_location('Leaving:'|| l_proc, 10);
272:
273: End insert_contexts;
274: --
275: ------------------------------------------------------------------------------------------------