DBA Data[Home] [Help]

APPS.PAY_SBA_INS dependencies on PAY_SBA_INS

Line 1: Package Body pay_sba_ins as

1: Package Body pay_sba_ins as
2: /* $Header: pysbarhi.pkb 120.0 2005/05/29 08:33 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_sba_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: pay_sba_ins.g_balance_attribute_id_i := p_balance_attribute_id;

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

Line 175: pay_sba_ins.g_balance_attribute_id_i;

171: Cursor C_Sel2 is
172: Select null
173: from pay_shadow_bal_attributes
174: where balance_attribute_id =
175: pay_sba_ins.g_balance_attribute_id_i;
176: --
177: l_proc varchar2(72) := g_package||'pre_insert';
178: l_exists varchar2(1);
179: --

Line 183: If (pay_sba_ins.g_balance_attribute_id_i is not null) Then

179: --
180: Begin
181: hr_utility.set_location('Entering:'||l_proc, 5);
182: --
183: If (pay_sba_ins.g_balance_attribute_id_i is not null) Then
184: --
185: -- Verify registered primary key values not already in use
186: --
187: Open C_Sel2;

Line 203: pay_sba_ins.g_balance_attribute_id_i;

199: --
200: -- Use registered key values and clear globals
201: --
202: p_rec.balance_attribute_id :=
203: pay_sba_ins.g_balance_attribute_id_i;
204: pay_sba_ins.g_balance_attribute_id_i := null;
205: Else
206: --
207: -- No registerd key values, so select the next sequence number

Line 204: pay_sba_ins.g_balance_attribute_id_i := null;

200: -- Use registered key values and clear globals
201: --
202: p_rec.balance_attribute_id :=
203: pay_sba_ins.g_balance_attribute_id_i;
204: pay_sba_ins.g_balance_attribute_id_i := null;
205: Else
206: --
207: -- No registerd key values, so select the next sequence number
208: --

Line 287: pay_sba_ins.pre_insert(p_rec);

283: hr_multi_message.end_validation_set;
284: --
285: -- Call the supporting pre-insert operation
286: --
287: pay_sba_ins.pre_insert(p_rec);
288: --
289: -- Insert the row
290: --
291: pay_sba_ins.insert_dml(p_rec);

Line 291: pay_sba_ins.insert_dml(p_rec);

287: pay_sba_ins.pre_insert(p_rec);
288: --
289: -- Insert the row
290: --
291: pay_sba_ins.insert_dml(p_rec);
292: --
293: -- Call the supporting post-insert operation
294: --
295: pay_sba_ins.post_insert

Line 295: pay_sba_ins.post_insert

291: pay_sba_ins.insert_dml(p_rec);
292: --
293: -- Call the supporting post-insert operation
294: --
295: pay_sba_ins.post_insert
296: (p_rec
297: );
298: --
299: -- Call to raise any errors on multi-message list

Line 337: pay_sba_ins.ins

333: --
334: -- Having converted the arguments into the pay_sba_rec
335: -- plsql record structure we call the corresponding record business process.
336: --
337: pay_sba_ins.ins
338: (l_rec
339: );
340: --
341: -- As the primary key argument(s)

Line 350: end pay_sba_ins;

346: --
347: hr_utility.set_location(' Leaving:'||l_proc, 10);
348: End ins;
349: --
350: end pay_sba_ins;