DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on HR_CHKFMT

Line 578: hr_chkfmt.changeformat(

574: hr_utility.set_message_token('INPUT_VALUE_NAME',l_rec.name);
575: hr_utility.raise_error;
576: Else
577: p_canonical_value := l_rec.default_value;
578: hr_chkfmt.changeformat(
579: input => p_canonical_value,
580: output => p_user_value,
581: format => l_rec.uom,
582: curcode => l_rec.input_currency_code);

Line 597: hr_chkfmt.checkformat(

593: -- Check format validation(format, min and max validations).
594: -- Hot defaulted value is validated again for range validation.
595: --
596: Begin
597: hr_chkfmt.checkformat(
598: value => p_user_value,
599: format => l_rec.uom,
600: output => p_canonical_value,
601: minimum => l_rec.min_value,

Line 621: hr_chkfmt.changeformat(

617: -- Format min_value and max_value for output parameters.
618: -- These parameters should be used for message only.
619: --
620: If l_rec.min_value is not NULL then
621: hr_chkfmt.changeformat(
622: input => l_rec.min_value,
623: output => p_user_min_value,
624: format => l_rec.uom,
625: curcode => l_rec.input_currency_code);

Line 628: hr_chkfmt.changeformat(

624: format => l_rec.uom,
625: curcode => l_rec.input_currency_code);
626: End If;
627: If l_rec.max_value is not NULL then
628: hr_chkfmt.changeformat(
629: input => l_rec.max_value,
630: output => p_user_max_value,
631: format => l_rec.uom,
632: curcode => l_rec.input_currency_code);