DBA Data[Home] [Help]

APPS.PER_SLS_INS dependencies on HR_UTILITY

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

22: --
23: l_proc varchar2(72) := g_package||'set_base_key_value';
24: --
25: Begin
26: hr_utility.set_location('Entering:'||l_proc, 10);
27: --
28: per_sls_ins.g_solution_set_name_i := p_solution_set_name;
29: per_sls_ins.g_user_id_i := p_user_id;
30: --

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

27: --
28: per_sls_ins.g_solution_set_name_i := p_solution_set_name;
29: per_sls_ins.g_user_id_i := p_user_id;
30: --
31: hr_utility.set_location(' Leaving:'||l_proc, 20);
32: End set_base_key_value;
33: --
34: --
35: -- ----------------------------------------------------------------------------

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

81: --
82: l_proc varchar2(72) := g_package||'insert_dml';
83: --
84: Begin
85: hr_utility.set_location('Entering:'||l_proc, 5);
86: p_rec.object_version_number := 1; -- Initialise the object version
87: --
88: --
89: --

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

109: );
110: --
111: --
112: --
113: hr_utility.set_location(' Leaving:'||l_proc, 10);
114: Exception
115: When hr_api.check_integrity_violated Then
116: -- A check constraint has been violated
117: --

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

182: l_proc varchar2(72) := g_package||'pre_insert';
183: l_exists varchar2(1);
184: --
185: Begin
186: hr_utility.set_location('Entering:'||l_proc, 5);
187: --
188: If (per_sls_ins.g_solution_set_name_i is not null or
189: per_sls_ins.g_user_id_i is not null) Then
190: --

Line 218: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');

214: Else
215: --
216: -- No registerd key values, so raise error
217: --
218: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
219: hr_utility.set_message_token('API_NAME', 'per_sls_ins');
220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
221: hr_utility.raise_error;
222: End If;

Line 219: hr_utility.set_message_token('API_NAME', 'per_sls_ins');

215: --
216: -- No registerd key values, so raise error
217: --
218: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
219: hr_utility.set_message_token('API_NAME', 'per_sls_ins');
220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
221: hr_utility.raise_error;
222: End If;
223: --

Line 220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');

216: -- No registerd key values, so raise error
217: --
218: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
219: hr_utility.set_message_token('API_NAME', 'per_sls_ins');
220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
221: hr_utility.raise_error;
222: End If;
223: --
224: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 221: hr_utility.raise_error;

217: --
218: hr_utility.set_message(801, 'HR_7207_API_MANDATORY_ARG');
219: hr_utility.set_message_token('API_NAME', 'per_sls_ins');
220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
221: hr_utility.raise_error;
222: End If;
223: --
224: hr_utility.set_location(' Leaving:'||l_proc, 10);
225: End pre_insert;

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

220: hr_utility.set_message_token('ARGUMENT', 'base_key_value');
221: hr_utility.raise_error;
222: End If;
223: --
224: hr_utility.set_location(' Leaving:'||l_proc, 10);
225: End pre_insert;
226: --
227: -- ----------------------------------------------------------------------------
228: -- |-----------------------------< post_insert >------------------------------|

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

263: --
264: l_proc varchar2(72) := g_package||'post_insert';
265: --
266: Begin
267: hr_utility.set_location('Entering:'||l_proc, 5);
268: begin
269: --
270: per_sls_rki.after_insert
271: (p_effective_date => p_effective_date

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

292: ,p_hook_type => 'AI');
293: --
294: end;
295: --
296: hr_utility.set_location(' Leaving:'||l_proc, 10);
297: End post_insert;
298: --
299: -- ----------------------------------------------------------------------------
300: -- |---------------------------------< ins >----------------------------------|

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

306: --
307: l_proc varchar2(72) := g_package||'ins';
308: --
309: Begin
310: hr_utility.set_location('Entering:'||l_proc, 5);
311: --
312: -- Call the supporting insert validate operations
313: --
314: per_sls_bus.insert_validate

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

336: --
337: -- Call to raise any errors on multi-message list
338: hr_multi_message.end_validation_set;
339: --
340: hr_utility.set_location('Leaving:'||l_proc, 20);
341: end ins;
342: --
343: -- ----------------------------------------------------------------------------
344: -- |---------------------------------< ins >----------------------------------|

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

356: l_rec per_sls_shd.g_rec_type;
357: l_proc varchar2(72) := g_package||'ins';
358: --
359: Begin
360: hr_utility.set_location('Entering:'||l_proc, 5);
361: --
362: -- Call conversion function to turn arguments into the
363: -- p_rec structure.
364: --

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

386: p_solution_set_name := l_rec.solution_set_name;
387: p_user_id := l_rec.user_id;
388: p_object_version_number := l_rec.object_version_number;
389: --
390: hr_utility.set_location(' Leaving:'||l_proc, 10);
391: End ins;
392: --
393: end per_sls_ins;