DBA Data[Home] [Help]

APPS.PQP_GDA_INS dependencies on PQP_GDA_INS

Line 1: Package Body pqp_gda_ins as

1: Package Body pqp_gda_ins as
2: /* $Header: pqgdarhi.pkb 120.0 2005/05/29 01:52 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqp_gda_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: pqp_gda_ins.g_gap_daily_absence_id_i := p_gap_daily_absence_id;

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

Line 187: pqp_gda_ins.g_gap_daily_absence_id_i;

183: Cursor C_Sel2 is
184: Select null
185: from pqp_gap_daily_absences
186: where gap_daily_absence_id =
187: pqp_gda_ins.g_gap_daily_absence_id_i;
188: --
189: l_proc varchar2(72) := g_package||'pre_insert';
190: l_exists varchar2(1);
191: --

Line 195: If (pqp_gda_ins.g_gap_daily_absence_id_i is not null) Then

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

Line 215: pqp_gda_ins.g_gap_daily_absence_id_i;

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

Line 216: pqp_gda_ins.g_gap_daily_absence_id_i := null;

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

Line 339: pqp_gda_ins.pre_insert(p_rec);

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

Line 343: pqp_gda_ins.insert_dml(p_rec);

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

Line 347: pqp_gda_ins.post_insert

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

Line 403: pqp_gda_ins.ins

399: --
400: -- Having converted the arguments into the pqp_gda_rec
401: -- plsql record structure we call the corresponding record business process.
402: --
403: pqp_gda_ins.ins
404: (p_effective_date
405: ,l_rec
406: );
407: --

Line 417: end pqp_gda_ins;

413: --
414: hr_utility.set_location(' Leaving:'||l_proc, 10);
415: End ins;
416: --
417: end pqp_gda_ins;