DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on HR_GENERAL

Line 293: hr_general.decode_lookup(

289: decode(piv.hot_default_flag,
290: 'Y',nvl(pliv.default_value,piv.default_value),
291: pliv.default_value) DEFAULT_VALUE,
292: decode(piv.lookup_type,NULL,NULL,
293: hr_general.decode_lookup(
294: piv.lookup_type,
295: decode(piv.hot_default_flag,
296: 'Y',nvl(pliv.default_value,piv.default_value),
297: pliv.default_value))) D_DEFAULT_VALUE

Line 475: -- hr_general.decode_lookup(

471: decode(piv.hot_default_flag,
472: 'Y',nvl(pliv.default_value,piv.default_value),
473: pliv.default_value) DEFAULT_VALUE,
474: -- decode(piv.lookup_type,NULL,NULL,
475: -- hr_general.decode_lookup(
476: -- piv.lookup_type,
477: -- decode(piv.hot_default_flag,
478: -- 'Y',nvl(pliv.default_value,piv.default_value),
479: -- pliv.default_value))) D_DEFAULT_VALUE,

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

591: --
592: -- In case the value input is incorrect format.
593: --
594: when others then
595: l_d_uom := hr_general.decode_lookup('UNITS',l_rec.uom);
596: hr_utility.set_message(801,'PAY_6306_INPUT_VALUE_FORMAT');
597: hr_utility.set_message_token('UNIT_OF_MEASURE',l_d_uom);
598: hr_utility.raise_error;
599: End;