DBA Data[Home] [Help]

APPS.GHR_US_NFC_EXTRACTS dependencies on BEN_EXT_FMT

Line 2298: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,

2294: l_err_name := null ;
2295: end if ;
2296: -- If element name is sent get the message to write
2297: if p_err_no is not null and p_element is not null then
2298: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,
2299: p_err_name,
2300: p_element ) ;
2301: end if ;
2302: --

Line 2348: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,

2344: l_err_name := null ;
2345: end if ;
2346: -- If element name is sent get the message to write
2347: if p_err_no is not null and p_element is not null then
2348: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,
2349: p_err_name,
2350: p_element );
2351: end if ;
2352: open err_cnt_c;

Line 2409: ,Ben_Ext_Fmt.g_elmt_name)

2405: Write_Error
2406: (p_err_name => p_msg_text
2407: ,p_err_no => p_msg_code
2408: ,p_element => Nvl(Ben_Ext_Person.g_elmt_name
2409: ,Ben_Ext_Fmt.g_elmt_name)
2410: );
2411: elsif p_msg_type = 'W' then
2412: Write_Warning
2413: (p_err_name => p_msg_text

Line 2416: ,Ben_Ext_Fmt.g_elmt_name)

2412: Write_Warning
2413: (p_err_name => p_msg_text
2414: ,p_err_no => p_msg_code
2415: ,p_element => Nvl(Ben_Ext_Person.g_elmt_name
2416: ,Ben_Ext_Fmt.g_elmt_name)
2417: );
2418: end if;
2419: end if;
2420: Hr_Utility.set_location('Leaving: '||l_proc, 80);

Line 5307: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);

5303: begin
5304: if i.frmt_mask_lookup_cd is not null and
5305: l_ff_value is not null then
5306: if Substr(i.frmt_mask_lookup_cd,1,1) = 'N' then
5307: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
5308: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
5309: l_ff_value := l_ff_value_fmt;
5310: elsif Substr(i.frmt_mask_lookup_cd,1,1) = 'D' then
5311: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);

Line 5308: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);

5304: if i.frmt_mask_lookup_cd is not null and
5305: l_ff_value is not null then
5306: if Substr(i.frmt_mask_lookup_cd,1,1) = 'N' then
5307: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
5308: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
5309: l_ff_value := l_ff_value_fmt;
5310: elsif Substr(i.frmt_mask_lookup_cd,1,1) = 'D' then
5311: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
5312: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),

Line 5311: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);

5307: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
5308: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
5309: l_ff_value := l_ff_value_fmt;
5310: elsif Substr(i.frmt_mask_lookup_cd,1,1) = 'D' then
5311: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
5312: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),
5313: i.frmt_mask_cd);
5314: l_ff_value := l_ff_value_fmt;
5315: end if;

Line 5312: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),

5308: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
5309: l_ff_value := l_ff_value_fmt;
5310: elsif Substr(i.frmt_mask_lookup_cd,1,1) = 'D' then
5311: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
5312: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),
5313: i.frmt_mask_cd);
5314: l_ff_value := l_ff_value_fmt;
5315: end if;
5316: end if;