DBA Data[Home] [Help]

APPS.PQH_VLP_INS dependencies on PQH_FR_VALIDATION_PERIODS

Line 87: -- Insert the row into: pqh_fr_validation_periods

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

Line 89: insert into pqh_fr_validation_periods

85: --
86: --
87: -- Insert the row into: pqh_fr_validation_periods
88: --
89: insert into pqh_fr_validation_periods
90: (validation_period_id
91: ,validation_id
92: ,start_date
93: ,end_date

Line 187: Cursor C_Sel1 is select pqh_fr_validation_periods_s.nextval from sys.dual;

183: Procedure pre_insert
184: (p_rec in out nocopy pqh_vlp_shd.g_rec_type
185: ) is
186: --
187: Cursor C_Sel1 is select pqh_fr_validation_periods_s.nextval from sys.dual;
188: --
189: Cursor C_Sel2 is
190: Select null
191: from pqh_fr_validation_periods

Line 191: from pqh_fr_validation_periods

187: Cursor C_Sel1 is select pqh_fr_validation_periods_s.nextval from sys.dual;
188: --
189: Cursor C_Sel2 is
190: Select null
191: from pqh_fr_validation_periods
192: where validation_period_id =
193: pqh_vlp_ins.g_validation_period_id_i;
194: --
195: l_proc varchar2(72) := g_package||'pre_insert';

Line 213: fnd_message.set_token('TABLE_NAME','pqh_fr_validation_periods');

209: --
210: -- The primary key values are already in use.
211: --
212: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
213: fnd_message.set_token('TABLE_NAME','pqh_fr_validation_periods');
214: fnd_message.raise_error;
215: End If;
216: Close C_Sel2;
217: --

Line 318: (p_module_name => 'PQH_FR_VALIDATION_PERIODS'

314: --
315: when hr_api.cannot_find_prog_unit then
316: --
317: hr_api.cannot_find_prog_unit_error
318: (p_module_name => 'PQH_FR_VALIDATION_PERIODS'
319: ,p_hook_type => 'AI');
320: --
321: end;
322: --