DBA Data[Home] [Help]

APPS.PQH_LOS_INS dependencies on PQH_SITUATIONS

Line 87: -- Insert the row into: pqh_situations

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: pqh_situations
88: --
89: insert into pqh_situations
90: (situation_id
91: ,situation

Line 89: insert into pqh_situations

85: --
86: --
87: -- Insert the row into: pqh_situations
88: --
89: insert into pqh_situations
90: (situation_id
91: ,situation
92: ,effective_start_date
93: ,effective_end_date

Line 307: Cursor C_Sel1 is select pqh_situations_s.nextval from sys.dual;

303: Procedure pre_insert
304: (p_rec in out nocopy pqh_los_shd.g_rec_type
305: ) is
306: --
307: Cursor C_Sel1 is select pqh_situations_s.nextval from sys.dual;
308: --
309: Cursor C_Sel2 is
310: Select null
311: from pqh_situations

Line 311: from pqh_situations

307: Cursor C_Sel1 is select pqh_situations_s.nextval from sys.dual;
308: --
309: Cursor C_Sel2 is
310: Select null
311: from pqh_situations
312: where situation_id =
313: pqh_los_ins.g_situation_id_i;
314: --
315: l_proc varchar2(72) := g_package||'pre_insert';

Line 333: fnd_message.set_token('TABLE_NAME','pqh_situations');

329: --
330: -- The primary key values are already in use.
331: --
332: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
333: fnd_message.set_token('TABLE_NAME','pqh_situations');
334: fnd_message.raise_error;
335: End If;
336: Close C_Sel2;
337: --

Line 558: (p_module_name => 'PQH_SITUATIONS'

554: --
555: when hr_api.cannot_find_prog_unit then
556: --
557: hr_api.cannot_find_prog_unit_error
558: (p_module_name => 'PQH_SITUATIONS'
559: ,p_hook_type => 'AI');
560: --
561: end;
562: --