DBA Data[Home] [Help]

APPS.PQH_VLE_INS dependencies on PQH_FR_VALIDATION_EVENTS

Line 87: -- Insert the row into: pqh_fr_validation_events

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

Line 89: insert into pqh_fr_validation_events

85: --
86: --
87: -- Insert the row into: pqh_fr_validation_events
88: --
89: insert into pqh_fr_validation_events
90: (validation_event_id
91: ,validation_id
92: ,event_type
93: ,event_code

Line 175: Cursor C_Sel1 is select pqh_fr_validation_events_s.nextval from sys.dual;

171: Procedure pre_insert
172: (p_rec in out nocopy pqh_vle_shd.g_rec_type
173: ) is
174: --
175: Cursor C_Sel1 is select pqh_fr_validation_events_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from pqh_fr_validation_events

Line 179: from pqh_fr_validation_events

175: Cursor C_Sel1 is select pqh_fr_validation_events_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from pqh_fr_validation_events
180: where validation_event_id =
181: pqh_vle_ins.g_validation_event_id_i;
182: --
183: l_proc varchar2(72) := g_package||'pre_insert';

Line 201: fnd_message.set_token('TABLE_NAME','pqh_fr_validation_events');

197: --
198: -- The primary key values are already in use.
199: --
200: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
201: fnd_message.set_token('TABLE_NAME','pqh_fr_validation_events');
202: fnd_message.raise_error;
203: End If;
204: Close C_Sel2;
205: --

Line 294: (p_module_name => 'PQH_FR_VALIDATION_EVENTS'

290: --
291: when hr_api.cannot_find_prog_unit then
292: --
293: hr_api.cannot_find_prog_unit_error
294: (p_module_name => 'PQH_FR_VALIDATION_EVENTS'
295: ,p_hook_type => 'AI');
296: --
297: end;
298: --