DBA Data[Home] [Help]

APPS.GHR_CCL_INS dependencies on GHR_CCL_INS

Line 1: Package Body ghr_ccl_ins as

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

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ghr_ccl_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_ccl_ins.g_compl_claim_id_i := p_compl_claim_id;

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

Line 188: ghr_ccl_ins.g_compl_claim_id_i;

184: Cursor C_Sel2 is
185: Select null
186: from ghr_compl_claims
187: where compl_claim_id =
188: ghr_ccl_ins.g_compl_claim_id_i;
189: --
190: l_proc varchar2(72) := g_package||'pre_insert';
191: l_exists varchar2(1);
192: --

Line 196: If (ghr_ccl_ins.g_compl_claim_id_i is not null) Then

192: --
193: Begin
194: hr_utility.set_location('Entering:'||l_proc, 5);
195: --
196: If (ghr_ccl_ins.g_compl_claim_id_i is not null) Then
197: --
198: -- Verify registered primary key values not already in use
199: --
200: Open C_Sel2;

Line 216: ghr_ccl_ins.g_compl_claim_id_i;

212: --
213: -- Use registered key values and clear globals
214: --
215: p_rec.compl_claim_id :=
216: ghr_ccl_ins.g_compl_claim_id_i;
217: ghr_ccl_ins.g_compl_claim_id_i := null;
218: Else
219: --
220: -- No registerd key values, so select the next sequence number

Line 217: ghr_ccl_ins.g_compl_claim_id_i := null;

213: -- Use registered key values and clear globals
214: --
215: p_rec.compl_claim_id :=
216: ghr_ccl_ins.g_compl_claim_id_i;
217: ghr_ccl_ins.g_compl_claim_id_i := null;
218: Else
219: --
220: -- No registerd key values, so select the next sequence number
221: --

Line 325: ghr_ccl_ins.pre_insert(p_rec);

321: );
322: --
323: -- Call the supporting pre-insert operation
324: --
325: ghr_ccl_ins.pre_insert(p_rec);
326: --
327: -- Insert the row
328: --
329: ghr_ccl_ins.insert_dml(p_rec);

Line 329: ghr_ccl_ins.insert_dml(p_rec);

325: ghr_ccl_ins.pre_insert(p_rec);
326: --
327: -- Insert the row
328: --
329: ghr_ccl_ins.insert_dml(p_rec);
330: --
331: -- Call the supporting post-insert operation
332: --
333: ghr_ccl_ins.post_insert

Line 333: ghr_ccl_ins.post_insert

329: ghr_ccl_ins.insert_dml(p_rec);
330: --
331: -- Call the supporting post-insert operation
332: --
333: ghr_ccl_ins.post_insert
334: (p_effective_date
335: ,p_rec
336: );
337: --

Line 386: ghr_ccl_ins.ins

382: --
383: -- Having converted the arguments into the ghr_ccl_rec
384: -- plsql record structure we call the corresponding record business process.
385: --
386: ghr_ccl_ins.ins
387: (p_effective_date
388: ,l_rec
389: );
390: --

Line 401: end ghr_ccl_ins;

397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 10);
399: End ins;
400: --
401: end ghr_ccl_ins;