DBA Data[Home] [Help]

APPS.PQP_GDA_INS dependencies on PQP_GAP_DAILY_ABSENCES

Line 87: -- Insert the row into: pqp_gap_daily_absences

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

Line 89: insert into pqp_gap_daily_absences

85: --
86: --
87: -- Insert the row into: pqp_gap_daily_absences
88: --
89: insert into pqp_gap_daily_absences
90: (gap_daily_absence_id
91: ,gap_absence_plan_id
92: ,absence_date
93: ,work_pattern_day_type

Line 181: Cursor C_Sel1 is select pqp_gap_daily_absences_s.nextval from sys.dual;

177: Procedure pre_insert
178: (p_rec in out nocopy pqp_gda_shd.g_rec_type
179: ) is
180: --
181: Cursor C_Sel1 is select pqp_gap_daily_absences_s.nextval from sys.dual;
182: --
183: Cursor C_Sel2 is
184: Select null
185: from pqp_gap_daily_absences

Line 185: from pqp_gap_daily_absences

181: Cursor C_Sel1 is select pqp_gap_daily_absences_s.nextval from sys.dual;
182: --
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';

Line 207: fnd_message.set_token('TABLE_NAME','pqp_gap_daily_absences');

203: --
204: -- The primary key values are already in use.
205: --
206: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
207: fnd_message.set_token('TABLE_NAME','pqp_gap_daily_absences');
208: fnd_message.raise_error;
209: End If;
210: Close C_Sel2;
211: --

Line 306: (p_module_name => 'PQP_GAP_DAILY_ABSENCES'

302: --
303: when hr_api.cannot_find_prog_unit then
304: --
305: hr_api.cannot_find_prog_unit_error
306: (p_module_name => 'PQP_GAP_DAILY_ABSENCES'
307: ,p_hook_type => 'AI');
308: --
309: end;
310: --