DBA Data[Home] [Help]

APPS.GHR_CBA_INS dependencies on GHR_CBA_INS

Line 1: Package Body ghr_cba_ins as

1: Package Body ghr_cba_ins as
2: /* $Header: ghcbarhi.pkb 115.1 2003/01/30 19:25:00 asubrahm noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ghr_cba_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_cba_ins.g_compl_basis_id_i := p_compl_basis_id;

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

Line 181: ghr_cba_ins.g_compl_basis_id_i;

177: Cursor C_Sel2 is
178: Select null
179: from ghr_compl_bases
180: where compl_basis_id =
181: ghr_cba_ins.g_compl_basis_id_i;
182: --
183: l_proc varchar2(72) := g_package||'pre_insert';
184: l_exists varchar2(1);
185: --

Line 189: If (ghr_cba_ins.g_compl_basis_id_i is not null) Then

185: --
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188: --
189: If (ghr_cba_ins.g_compl_basis_id_i is not null) Then
190: --
191: -- Verify registered primary key values not already in use
192: --
193: Open C_Sel2;

Line 209: ghr_cba_ins.g_compl_basis_id_i;

205: --
206: -- Use registered key values and clear globals
207: --
208: p_rec.compl_basis_id :=
209: ghr_cba_ins.g_compl_basis_id_i;
210: ghr_cba_ins.g_compl_basis_id_i := null;
211: Else
212: --
213: -- No registerd key values, so select the next sequence number

Line 210: ghr_cba_ins.g_compl_basis_id_i := null;

206: -- Use registered key values and clear globals
207: --
208: p_rec.compl_basis_id :=
209: ghr_cba_ins.g_compl_basis_id_i;
210: ghr_cba_ins.g_compl_basis_id_i := null;
211: Else
212: --
213: -- No registerd key values, so select the next sequence number
214: --

Line 316: ghr_cba_ins.pre_insert(p_rec);

312: );
313: --
314: -- Call the supporting pre-insert operation
315: --
316: ghr_cba_ins.pre_insert(p_rec);
317: --
318: -- Insert the row
319: --
320: ghr_cba_ins.insert_dml(p_rec);

Line 320: ghr_cba_ins.insert_dml(p_rec);

316: ghr_cba_ins.pre_insert(p_rec);
317: --
318: -- Insert the row
319: --
320: ghr_cba_ins.insert_dml(p_rec);
321: --
322: -- Call the supporting post-insert operation
323: --
324: ghr_cba_ins.post_insert

Line 324: ghr_cba_ins.post_insert

320: ghr_cba_ins.insert_dml(p_rec);
321: --
322: -- Call the supporting post-insert operation
323: --
324: ghr_cba_ins.post_insert
325: (p_effective_date
326: ,p_rec
327: );
328: --

Line 371: ghr_cba_ins.ins

367: --
368: -- Having converted the arguments into the ghr_cba_rec
369: -- plsql record structure we call the corresponding record business process.
370: --
371: ghr_cba_ins.ins
372: (p_effective_date
373: ,l_rec
374: );
375: --

Line 385: end ghr_cba_ins;

381: --
382: hr_utility.set_location(' Leaving:'||l_proc, 10);
383: End ins;
384: --
385: end ghr_cba_ins;