DBA Data[Home] [Help]

APPS.PER_SLT_INS dependencies on PER_SLT_INS

Line 1: Package Body per_slt_ins as

1: Package Body per_slt_ins as
2: /* $Header: pesltrhi.pkb 115.2 2003/08/07 23:59:21 vkonda noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' per_slt_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_slt_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: per_slt_ins.g_solution_type_name_i := p_solution_type_name;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_slt_ins.g_solution_type_name_i := p_solution_type_name;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 178: If (per_slt_ins.g_solution_type_name_i is not null) Then

174: --
175: Begin
176: hr_utility.set_location('Entering:'||l_proc, 5);
177: --
178: If (per_slt_ins.g_solution_type_name_i is not null) Then
179: --
180: -- Verify registered primary key values not already in use
181: --
182: Open C_Sel2;

Line 197: p_rec.solution_type_name := per_slt_ins.g_solution_type_name_i;

193: Close C_Sel2;
194: --
195: -- Use registered key values and clear globals
196: --
197: p_rec.solution_type_name := per_slt_ins.g_solution_type_name_i;
198: per_slt_ins.g_solution_type_name_i := null;
199: Else
200: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
201: hr_utility.set_message_token('API_NAME', 'per_slt_ins');

Line 198: per_slt_ins.g_solution_type_name_i := null;

194: --
195: -- Use registered key values and clear globals
196: --
197: p_rec.solution_type_name := per_slt_ins.g_solution_type_name_i;
198: per_slt_ins.g_solution_type_name_i := null;
199: Else
200: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
201: hr_utility.set_message_token('API_NAME', 'per_slt_ins');
202: hr_utility.set_message_token('ARGUMENT', 'base_key_value');

Line 201: hr_utility.set_message_token('API_NAME', 'per_slt_ins');

197: p_rec.solution_type_name := per_slt_ins.g_solution_type_name_i;
198: per_slt_ins.g_solution_type_name_i := null;
199: Else
200: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
201: hr_utility.set_message_token('API_NAME', 'per_slt_ins');
202: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
203: hr_utility.raise_error;
204: End If;
205: --

Line 302: per_slt_ins.pre_insert(p_rec);

298: hr_multi_message.end_validation_set;
299: --
300: -- Call the supporting pre-insert operation
301: --
302: per_slt_ins.pre_insert(p_rec);
303: --
304: -- Insert the row
305: --
306: per_slt_ins.insert_dml(p_rec);

Line 306: per_slt_ins.insert_dml(p_rec);

302: per_slt_ins.pre_insert(p_rec);
303: --
304: -- Insert the row
305: --
306: per_slt_ins.insert_dml(p_rec);
307: --
308: -- Call the supporting post-insert operation
309: --
310: per_slt_ins.post_insert

Line 310: per_slt_ins.post_insert

306: per_slt_ins.insert_dml(p_rec);
307: --
308: -- Call the supporting post-insert operation
309: --
310: per_slt_ins.post_insert
311: (p_effective_date
312: ,p_rec
313: );
314: --

Line 352: per_slt_ins.ins

348: --
349: -- Having converted the arguments into the per_slt_rec
350: -- plsql record structure we call the corresponding record business process.
351: --
352: per_slt_ins.ins
353: (p_effective_date
354: ,l_rec
355: );
356: --

Line 365: end per_slt_ins;

361: --
362: hr_utility.set_location(' Leaving:'||l_proc, 10);
363: End ins;
364: --
365: end per_slt_ins;