DBA Data[Home] [Help]

APPS.PQP_GDS_INS dependencies on PQP_GAP_DURATION_SUMMARY

Line 87: -- Insert the row into: pqp_gap_duration_summary

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: pqp_gds_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: pqp_gap_duration_summary
88: --
89: insert into pqp_gap_duration_summary
90: (gap_duration_summary_id
91: ,assignment_id

Line 89: insert into pqp_gap_duration_summary

85: pqp_gds_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: pqp_gap_duration_summary
88: --
89: insert into pqp_gap_duration_summary
90: (gap_duration_summary_id
91: ,assignment_id
92: ,gap_absence_plan_id
93: ,summary_type

Line 179: Cursor C_Sel1 is select pqp_gap_duration_summary_s.nextval from sys.dual;

175: Procedure pre_insert
176: (p_rec in out nocopy pqp_gds_shd.g_rec_type
177: ) is
178: --
179: Cursor C_Sel1 is select pqp_gap_duration_summary_s.nextval from sys.dual;
180: --
181: Cursor C_Sel2 is
182: Select null
183: from pqp_gap_duration_summary

Line 183: from pqp_gap_duration_summary

179: Cursor C_Sel1 is select pqp_gap_duration_summary_s.nextval from sys.dual;
180: --
181: Cursor C_Sel2 is
182: Select null
183: from pqp_gap_duration_summary
184: where gap_duration_summary_id =
185: pqp_gds_ins.g_gap_duration_summary_id_i;
186: --
187: l_proc varchar2(72) := g_package||'pre_insert';

Line 205: fnd_message.set_token('TABLE_NAME','pqp_gap_duration_summary');

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

Line 300: (p_module_name => 'PQP_GAP_DURATION_SUMMARY'

296: --
297: when hr_api.cannot_find_prog_unit then
298: --
299: hr_api.cannot_find_prog_unit_error
300: (p_module_name => 'PQP_GAP_DURATION_SUMMARY'
301: ,p_hook_type => 'AI');
302: --
303: end;
304: --