DBA Data[Home] [Help]

APPS.PQH_BPL_INS dependencies on PQH_BPL_INS

Line 1: Package Body pqh_bpl_ins as

1: Package Body pqh_bpl_ins as
2: /* $Header: pqbplrhi.pkb 115.9 2003/04/11 11:44:23 mvankada noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_bpl_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: pqh_bpl_ins.g_pool_id_i := p_pool_id;

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

Line 188: pqh_bpl_ins.g_pool_id_i;

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

Line 196: If (pqh_bpl_ins.g_pool_id_i is not null) Then

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

Line 216: pqh_bpl_ins.g_pool_id_i;

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

Line 217: pqh_bpl_ins.g_pool_id_i := null;

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

Line 338: pqh_bpl_ins.pre_insert(p_rec);

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

Line 342: pqh_bpl_ins.insert_dml(p_rec);

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

Line 346: pqh_bpl_ins.post_insert

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

Line 400: pqh_bpl_ins.ins

396: --
397: -- Having converted the arguments into the pqh_bpl_rec
398: -- plsql record structure we call the corresponding record business process.
399: --
400: pqh_bpl_ins.ins
401: (p_effective_date
402: ,l_rec
403: );
404: --

Line 414: end pqh_bpl_ins;

410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 10);
412: End ins;
413: --
414: end pqh_bpl_ins;