DBA Data[Home] [Help]

APPS.BEN_YRP_BUS dependencies on FND_PROFILE

Line 319: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));

315: --
316: -- raise error Start Date must precede End date
317: --
318: hr_utility.set_message(805,'BEN_93611_STRT_NOT_PRCD_END');
319: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
320: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
321: hr_utility.raise_error;
322:
323: elsif(p_end_date > add_months(p_start_date,12)-1 ) then

Line 320: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));

316: -- raise error Start Date must precede End date
317: --
318: hr_utility.set_message(805,'BEN_93611_STRT_NOT_PRCD_END');
319: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
320: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
321: hr_utility.raise_error;
322:
323: elsif(p_end_date > add_months(p_start_date,12)-1 ) then
324: --

Line 329: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));

325: -- Raise error Date range between end data nad start date is
326: -- greater than 1 year.
327: --
328: hr_utility.set_message(805,'BEN_93612_DT_RANG_GT_YR');
329: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
330: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
331: hr_utility.raise_error;
332: elsif to_char(p_start_date, 'DDMM') = '0101' and
333: to_char(p_end_date, 'DDMM') = '3112' and

Line 330: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));

326: -- greater than 1 year.
327: --
328: hr_utility.set_message(805,'BEN_93612_DT_RANG_GT_YR');
329: hr_utility.set_message_token('START_DATE',to_char(p_start_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
330: hr_utility.set_message_token('END_DATE',to_char(p_end_date,fnd_profile.value('ICX_DATE_FORMAT_MASK')));
331: hr_utility.raise_error;
332: elsif to_char(p_start_date, 'DDMM') = '0101' and
333: to_char(p_end_date, 'DDMM') = '3112' and
334: p_perd_typ_cd <> 'CLNDR' then