DBA Data[Home] [Help]

APPS.PQH_OPS_INS dependencies on PQH_OPS_INS

Line 1: Package Body pqh_ops_ins as

1: Package Body pqh_ops_ins as
2: /* $Header: pqopsrhi.pkb 115.2 2002/12/03 20:41:53 rpasapul noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_ops_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_ops_ins.g_wrkplc_vldtn_op_id_i := p_wrkplc_vldtn_op_id;

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

Line 179: pqh_ops_ins.g_wrkplc_vldtn_op_id_i;

175: Cursor C_Sel2 is
176: Select null
177: from pqh_de_wrkplc_vldtn_ops
178: where wrkplc_vldtn_op_id =
179: pqh_ops_ins.g_wrkplc_vldtn_op_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';
182: l_exists varchar2(1);
183: --

Line 187: If (pqh_ops_ins.g_wrkplc_vldtn_op_id_i is not null) Then

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

Line 207: pqh_ops_ins.g_wrkplc_vldtn_op_id_i;

203: --
204: -- Use registered key values and clear globals
205: --
206: p_rec.wrkplc_vldtn_op_id :=
207: pqh_ops_ins.g_wrkplc_vldtn_op_id_i;
208: pqh_ops_ins.g_wrkplc_vldtn_op_id_i := null;
209: Else
210: --
211: -- No registerd key values, so select the next sequence number

Line 208: pqh_ops_ins.g_wrkplc_vldtn_op_id_i := null;

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

Line 323: pqh_ops_ins.pre_insert(p_rec);

319: hr_multi_message.end_validation_set;
320: --
321: -- Call the supporting pre-insert operation
322: --
323: pqh_ops_ins.pre_insert(p_rec);
324: --
325: -- Insert the row
326: --
327: pqh_ops_ins.insert_dml(p_rec);

Line 327: pqh_ops_ins.insert_dml(p_rec);

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

Line 331: pqh_ops_ins.post_insert

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

Line 379: pqh_ops_ins.ins

375: --
376: -- Having converted the arguments into the pqh_ops_rec
377: -- plsql record structure we call the corresponding record business process.
378: --
379: pqh_ops_ins.ins
380: (p_effective_date
381: ,l_rec
382: );
383: --

Line 393: end pqh_ops_ins;

389: --
390: hr_utility.set_location(' Leaving:'||l_proc, 10);
391: End ins;
392: --
393: end pqh_ops_ins;