DBA Data[Home] [Help]

APPS.BEN_PEA_BUS dependencies on DT_API

Line 208: If (dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode)) then

204: p_argument_value => p_datetrack_mode);
205: --
206: -- Only perform the validation if the datetrack update mode is valid
207: --
208: If (dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode)) then
209: --
210: --
211: -- Ensure the arguments are not null
212: --

Line 224: NOT (dt_api.check_min_max_dates

220: p_argument => 'validation_end_date',
221: p_argument_value => p_validation_end_date);
222: --
223: If ((nvl(p_prtt_enrt_rslt_id, hr_api.g_number) <> hr_api.g_number) and
224: NOT (dt_api.check_min_max_dates
225: (p_base_table_name => 'ben_prtt_enrt_rslt_f',
226: p_base_key_column => 'prtt_enrt_rslt_id',
227: p_base_key_value => p_prtt_enrt_rslt_id,
228: p_from_date => p_validation_start_date,

Line 280: -- generic dt_api.rows_exist function then we must supply an error via

276: -- Processing continues.
277: --
278: -- Post Failure:
279: -- If a row exists by determining the returning Boolean value from the
280: -- generic dt_api.rows_exist function then we must supply an error via
281: -- the use of the local exception handler l_rows_exist.
282: --
283: -- Developer Implementation Notes:
284: -- This procedure should not need maintenance unless the HR Schema model

Line 336: If (dt_api.rows_exist

332: (p_api_name => l_proc,
333: p_argument => 'prtt_enrt_actn_id',
334: p_argument_value => p_prtt_enrt_actn_id);
335: --
336: If (dt_api.rows_exist
337: (p_base_table_name => 'ben_cvrd_dpnt_ctfn_prvdd_f',
338: p_base_key_column => 'prtt_enrt_actn_id',
339: p_base_key_value => p_prtt_enrt_actn_id,
340: p_from_date => p_validation_start_date,

Line 345: If (dt_api.rows_exist

341: p_to_date => p_validation_end_date)) Then
342: l_table_name := 'ben_cvrd_dpnt_ctfn_prvdd_f';
343: Raise l_rows_exist;
344: End If;
345: If (dt_api.rows_exist
346: (p_base_table_name => 'ben_pl_bnf_ctfn_prvdd_f',
347: p_base_key_column => 'prtt_enrt_actn_id',
348: p_base_key_value => p_prtt_enrt_actn_id,
349: p_from_date => p_validation_start_date,

Line 354: If (dt_api.rows_exist

350: p_to_date => p_validation_end_date)) Then
351: l_table_name := 'ben_pl_bnf_ctfn_prvdd_f';
352: Raise l_rows_exist;
353: End If;
354: If (dt_api.rows_exist
355: (p_base_table_name => 'ben_prtt_enrt_ctfn_prvdd_f',
356: p_base_key_column => 'prtt_enrt_actn_id',
357: p_base_key_value => p_prtt_enrt_actn_id,
358: p_from_date => p_validation_start_date,