DBA Data[Home] [Help]

APPS.HR_ICX_INS dependencies on HR_UTILITY

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

60:
61: l_proc varchar2(72) := g_package||'ins_or_sel';
62: --
63: begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: --
66: -- Getting id_flex_num
67: --
68: OPEN cur_id_flex;

Line 110: hr_utility.set_location(l_proc, 20);

106: l_segs_changed := false;
107: End if;
108: --
109: IF l_segs_changed and l_id_flex_num is null THEN
110: hr_utility.set_location(l_proc, 20);
111: -- error message
112: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
113: fnd_message.set_token('PROCEDURE', l_proc);
114: fnd_message.set_token('STEP','10');

Line 120: hr_utility.set_location(l_proc, 30);

116: End if;
117: --
118: IF l_id_flex_num is null and l_segs_changed = false THEN
119: null;
120: hr_utility.set_location(l_proc, 30);
121: ELSE
122: -- id_flex_num is true at this point.
123: -- Always call AOL code here, as user may be only changing id_flex_num and
124: -- not any segments, so we must ensure this is still validated.

Line 125: hr_utility.set_location(l_proc, 40);

121: ELSE
122: -- id_flex_num is true at this point.
123: -- Always call AOL code here, as user may be only changing id_flex_num and
124: -- not any segments, so we must ensure this is still validated.
125: hr_utility.set_location(l_proc, 40);
126: --
127: hr_utility.set_location(l_proc, 100);
128: hr_kflex_utility.ins_or_sel_keyflex_comb
129: (p_appl_short_name => 'PER',

Line 127: hr_utility.set_location(l_proc, 100);

123: -- Always call AOL code here, as user may be only changing id_flex_num and
124: -- not any segments, so we must ensure this is still validated.
125: hr_utility.set_location(l_proc, 40);
126: --
127: hr_utility.set_location(l_proc, 100);
128: hr_kflex_utility.ins_or_sel_keyflex_comb
129: (p_appl_short_name => 'PER',
130: p_flex_code => 'ICX',
131: p_flex_num => l_id_flex_num,

Line 169: hr_utility.set_location(' Leaving:'||l_proc, 60);

165: --
166: p_item_context_id := l_item_context_id;
167: p_concatenated_segments := l_concatenated_segments;
168: End if;
169: hr_utility.set_location(' Leaving:'||l_proc, 60);
170: end ins_or_sel;
171: --
172: -- ----------------------------------------------------------------------------
173: -- |------------------------------< insert_dml >------------------------------|

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

218: --
219: l_proc varchar2(72) := g_package||'insert_dml';
220: --
221: Begin
222: hr_utility.set_location('Entering:'||l_proc, 5);
223: p_rec.object_version_number := 1; -- Initialise the object version
224: --
225: --
226: --

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

306: );
307: --
308: --
309: --
310: hr_utility.set_location(' Leaving:'||l_proc, 10);
311: Exception
312: When hr_api.check_integrity_violated Then
313: -- A check constraint has been violated
314: --

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

374: --
375: Cursor C_Sel1 is select hr_item_contexts_s.nextval from sys.dual;
376: --
377: Begin
378: hr_utility.set_location('Entering:'||l_proc, 5);
379: --
380: --
381: -- Select the next sequence number
382: --

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

383: Open C_Sel1;
384: Fetch C_Sel1 Into p_rec.item_context_id;
385: Close C_Sel1;
386: --
387: hr_utility.set_location(' Leaving:'||l_proc, 10);
388: End pre_insert;
389: --
390: -- ----------------------------------------------------------------------------
391: -- |-----------------------------< post_insert >------------------------------|

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

426: --
427: l_proc varchar2(72) := g_package||'post_insert';
428: --
429: Begin
430: hr_utility.set_location('Entering:'||l_proc, 5);
431: begin
432: --
433: hr_icx_rki.after_insert
434: (p_effective_date => p_effective_date

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

517: ,p_hook_type => 'AI');
518: --
519: end;
520: --
521: hr_utility.set_location(' Leaving:'||l_proc, 10);
522: End post_insert;
523: --
524: -- ----------------------------------------------------------------------------
525: -- |---------------------------------< ins >----------------------------------|

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

531: --
532: l_proc varchar2(72) := g_package||'ins';
533: --
534: Begin
535: hr_utility.set_location('Entering:'||l_proc, 5);
536: --
537: -- Call the supporting insert validate operations
538: --
539: hr_icx_bus.insert_validate

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

555: (p_effective_date
556: ,p_rec
557: );
558: --
559: hr_utility.set_location('Leaving:'||l_proc, 20);
560:
561: end ins;
562: --
563: -- ----------------------------------------------------------------------------

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

607: l_rec hr_icx_shd.g_rec_type;
608: l_proc varchar2(72) := g_package||'ins';
609: --
610: Begin
611: hr_utility.set_location('Entering:'||l_proc, 5);
612: --
613: -- Call conversion function to turn arguments into the
614: -- p_rec structure.
615: --

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

668: p_item_context_id := l_rec.item_context_id;
669: p_object_version_number := l_rec.object_version_number;
670: --
671: --
672: hr_utility.set_location(' Leaving:'||l_proc, 10);
673: End ins;
674: --
675: end hr_icx_ins;