DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on HR_GENERAL

Line 309: hr_general.decode_lookup(

305: decode(piv.hot_default_flag,
306: 'Y',nvl(pliv.default_value,piv.default_value),
307: pliv.default_value) DEFAULT_VALUE,
308: decode(piv.lookup_type,NULL,NULL,
309: hr_general.decode_lookup(
310: piv.lookup_type,
311: decode(piv.hot_default_flag,
312: 'Y',nvl(pliv.default_value,piv.default_value),
313: pliv.default_value))) D_DEFAULT_VALUE

Line 491: -- hr_general.decode_lookup(

487: decode(piv.hot_default_flag,
488: 'Y',nvl(pliv.default_value,piv.default_value),
489: pliv.default_value) DEFAULT_VALUE,
490: -- decode(piv.lookup_type,NULL,NULL,
491: -- hr_general.decode_lookup(
492: -- piv.lookup_type,
493: -- decode(piv.hot_default_flag,
494: -- 'Y',nvl(pliv.default_value,piv.default_value),
495: -- pliv.default_value))) D_DEFAULT_VALUE,

Line 611: l_d_uom := hr_general.decode_lookup('UNITS',l_rec.uom);

607: --
608: -- In case the value input is incorrect format.
609: --
610: when others then
611: l_d_uom := hr_general.decode_lookup('UNITS',l_rec.uom);
612: hr_utility.set_message(801,'PAY_6306_INPUT_VALUE_FORMAT');
613: hr_utility.set_message_token('UNIT_OF_MEASURE',l_d_uom);
614: hr_utility.raise_error;
615: End;