DBA Data[Home] [Help]

APPS.PAY_KR_SEP_FORM_PKG dependencies on HR_CHKFMT

Line 1090: hr_chkfmt.changeformat(

1086: hr_utility.set_message_token('INPUT_VALUE_NAME',l_rec.name);
1087: hr_utility.raise_error;
1088: else
1089: p_canonical_value := l_rec.default_value;
1090: hr_chkfmt.changeformat(
1091: input => p_canonical_value,
1092: output => p_user_value,
1093: format => l_rec.uom,
1094: curcode => l_rec.input_currency_code);

Line 1109: hr_chkfmt.checkformat(

1105: -- Check format validation(format, min and max validations).
1106: -- Hot defaulted value is validated again for range validation.
1107: --
1108: begin
1109: hr_chkfmt.checkformat(
1110: value => p_user_value,
1111: format => l_rec.uom,
1112: output => p_canonical_value,
1113: minimum => l_rec.min_value,

Line 1133: hr_chkfmt.changeformat(

1129: -- Format min_value and max_value for output parameters.
1130: -- These parameters should be used for message only.
1131: --
1132: if l_rec.min_value is not NULL then
1133: hr_chkfmt.changeformat(
1134: input => l_rec.min_value,
1135: output => p_user_min_value,
1136: format => l_rec.uom,
1137: curcode => l_rec.input_currency_code);

Line 1140: hr_chkfmt.changeformat(

1136: format => l_rec.uom,
1137: curcode => l_rec.input_currency_code);
1138: end if;
1139: if l_rec.max_value is not NULL then
1140: hr_chkfmt.changeformat(
1141: input => l_rec.max_value,
1142: output => p_user_max_value,
1143: format => l_rec.uom,
1144: curcode => l_rec.input_currency_code);

Line 1839: hr_chkfmt.changeformat(

1835: cursor csr_default_value
1836: is
1837: select piv.input_value_id input_value_id,
1838: piv.display_sequence display_sequence,
1839: hr_chkfmt.changeformat(
1840: decode(piv.lookup_type,
1841: null,
1842: decode(piv.hot_default_flag,
1843: 'Y',nvl(pliv.default_value,piv.default_value),

Line 2047: select substr(hr_chkfmt.changeformat(

2043: l_value varchar2(240);
2044: --
2045: cursor csr_entry_value
2046: is
2047: select substr(hr_chkfmt.changeformat(
2048: decode(piv.lookup_type,
2049: null,
2050: nvl(l_screen_value,decode(piv.hot_default_flag,
2051: 'Y',nvl(pliv.default_value,piv.default_value),