DBA Data[Home] [Help]

APPS.GHR_CDT_INS dependencies on GHR_CDT_INS

Line 1: Package Body ghr_cdt_ins as

1: Package Body ghr_cdt_ins as
2: /* $Header: ghcdtrhi.pkb 115.4 2003/01/30 19:25:13 asubrahm noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ghr_cdt_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: ghr_cdt_ins.g_compl_ca_detail_id_i := p_compl_ca_detail_id;

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

Line 195: ghr_cdt_ins.g_compl_ca_detail_id_i;

191: Cursor C_Sel2 is
192: Select null
193: from ghr_compl_ca_details
194: where compl_ca_detail_id =
195: ghr_cdt_ins.g_compl_ca_detail_id_i;
196: --
197: l_proc varchar2(72) := g_package||'pre_insert';
198: l_exists varchar2(1);
199: --

Line 203: If (ghr_cdt_ins.g_compl_ca_detail_id_i is not null) Then

199: --
200: Begin
201: hr_utility.set_location('Entering:'||l_proc, 5);
202: --
203: If (ghr_cdt_ins.g_compl_ca_detail_id_i is not null) Then
204: --
205: -- Verify registered primary key values not already in use
206: --
207: Open C_Sel2;

Line 223: ghr_cdt_ins.g_compl_ca_detail_id_i;

219: --
220: -- Use registered key values and clear globals
221: --
222: p_rec.compl_ca_detail_id :=
223: ghr_cdt_ins.g_compl_ca_detail_id_i;
224: ghr_cdt_ins.g_compl_ca_detail_id_i := null;
225: Else
226: --
227: -- No registerd key values, so select the next sequence number

Line 224: ghr_cdt_ins.g_compl_ca_detail_id_i := null;

220: -- Use registered key values and clear globals
221: --
222: p_rec.compl_ca_detail_id :=
223: ghr_cdt_ins.g_compl_ca_detail_id_i;
224: ghr_cdt_ins.g_compl_ca_detail_id_i := null;
225: Else
226: --
227: -- No registerd key values, so select the next sequence number
228: --

Line 337: ghr_cdt_ins.pre_insert(p_rec);

333: );
334: --
335: -- Call the supporting pre-insert operation
336: --
337: ghr_cdt_ins.pre_insert(p_rec);
338: --
339: -- Insert the row
340: --
341: ghr_cdt_ins.insert_dml(p_rec);

Line 341: ghr_cdt_ins.insert_dml(p_rec);

337: ghr_cdt_ins.pre_insert(p_rec);
338: --
339: -- Insert the row
340: --
341: ghr_cdt_ins.insert_dml(p_rec);
342: --
343: -- Call the supporting post-insert operation
344: --
345: ghr_cdt_ins.post_insert

Line 345: ghr_cdt_ins.post_insert

341: ghr_cdt_ins.insert_dml(p_rec);
342: --
343: -- Call the supporting post-insert operation
344: --
345: ghr_cdt_ins.post_insert
346: (p_effective_date
347: ,p_rec
348: );
349: --

Line 406: ghr_cdt_ins.ins

402: --
403: -- Having converted the arguments into the ghr_cdt_rec
404: -- plsql record structure we call the corresponding record business process.
405: --
406: ghr_cdt_ins.ins
407: (p_effective_date
408: ,l_rec
409: );
410: --

Line 420: end ghr_cdt_ins;

416: --
417: hr_utility.set_location(' Leaving:'||l_proc, 10);
418: End ins;
419: --
420: end ghr_cdt_ins;