DBA Data[Home] [Help]

APPS.PQP_PENSION_EXTRACTS dependencies on BEN_EXT_FMT

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

1400: l_err_name := NULL ;
1401: END IF ;
1402: -- If element name is sent get the message to write
1403: IF p_err_no IS NOT NULL AND p_element IS NOT NULL THEN
1404: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,
1405: p_err_name,
1406: p_element ) ;
1407: END IF ;
1408:

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

1447: l_err_name := NULL ;
1448: END IF ;
1449: -- If element name is sent get the message to write
1450: IF p_err_no IS NOT NULL AND p_element IS NOT NULL THEN
1451: l_err_name := Ben_Ext_Fmt.get_error_msg(p_err_no,
1452: p_err_name,
1453: p_element ) ;
1454: END IF ;
1455:

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

2079: BEGIN
2080: IF i.frmt_mask_lookup_cd IS NOT NULL AND
2081: l_ff_value IS NOT NULL THEN
2082: IF Substr(i.frmt_mask_lookup_cd,1,1) = 'N' THEN
2083: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
2084: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
2085: l_ff_value := l_ff_value_fmt;
2086: ELSIF Substr(i.frmt_mask_lookup_cd,1,1) = 'D' THEN
2087: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);

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

2080: IF i.frmt_mask_lookup_cd IS NOT NULL AND
2081: l_ff_value IS NOT NULL THEN
2082: IF Substr(i.frmt_mask_lookup_cd,1,1) = 'N' THEN
2083: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
2084: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
2085: l_ff_value := l_ff_value_fmt;
2086: ELSIF Substr(i.frmt_mask_lookup_cd,1,1) = 'D' THEN
2087: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
2088: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),

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

2083: Hr_Utility.set_location('..Applying NUMBER format mask :ben_ext_fmt.apply_format_mask',50);
2084: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
2085: l_ff_value := l_ff_value_fmt;
2086: ELSIF Substr(i.frmt_mask_lookup_cd,1,1) = 'D' THEN
2087: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
2088: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),
2089: i.frmt_mask_cd);
2090: l_ff_value := l_ff_value_fmt;
2091: END IF;

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

2084: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(To_Number(l_ff_value), i.frmt_mask_cd);
2085: l_ff_value := l_ff_value_fmt;
2086: ELSIF Substr(i.frmt_mask_lookup_cd,1,1) = 'D' THEN
2087: Hr_Utility.set_location('..Applying Date format mask :ben_ext_fmt.apply_format_mask',55);
2088: l_ff_value_fmt := Ben_Ext_Fmt.apply_format_mask(Fnd_Date.canonical_to_date(l_ff_value),
2089: i.frmt_mask_cd);
2090: l_ff_value := l_ff_value_fmt;
2091: END IF;
2092: END IF;

Line 4571: NVL(ben_ext_fmt.g_elmt_name

4567: l_ext_rslt_id:= get_current_extract_result;
4568: IF l_ext_rslt_id <> -1 THEN
4569: IF p_error_NUMBER IS NULL THEN
4570: l_error_text:= 'Warning raised in data element '||
4571: NVL(ben_ext_fmt.g_elmt_name
4572: ,ben_ext_person.g_elmt_name)||'. '||
4573: p_error_text;
4574: ELSE
4575: ben_ext_thread.g_err_num := p_error_NUMBER;

Line 4578: ben_ext_fmt.get_error_msg(TO_NUMBER(SUBSTR(p_error_text, 5, 5)),

4574: ELSE
4575: ben_ext_thread.g_err_num := p_error_NUMBER;
4576: ben_ext_thread.g_err_name := p_error_text;
4577: l_error_text :=
4578: ben_ext_fmt.get_error_msg(TO_NUMBER(SUBSTR(p_error_text, 5, 5)),
4579: p_error_text,NVL(ben_ext_fmt.g_elmt_name,ben_ext_person.g_elmt_name) );
4580:
4581: END IF;
4582: l_person_id:= NVL(get_current_extract_person(p_assignment_id)

Line 4579: p_error_text,NVL(ben_ext_fmt.g_elmt_name,ben_ext_person.g_elmt_name) );

4575: ben_ext_thread.g_err_num := p_error_NUMBER;
4576: ben_ext_thread.g_err_name := p_error_text;
4577: l_error_text :=
4578: ben_ext_fmt.get_error_msg(TO_NUMBER(SUBSTR(p_error_text, 5, 5)),
4579: p_error_text,NVL(ben_ext_fmt.g_elmt_name,ben_ext_person.g_elmt_name) );
4580:
4581: END IF;
4582: l_person_id:= NVL(get_current_extract_person(p_assignment_id)
4583: ,ben_ext_person.g_person_id);