DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on HR_CHKFMT

Line 562: hr_chkfmt.changeformat(

558: hr_utility.set_message_token('INPUT_VALUE_NAME',l_rec.name);
559: hr_utility.raise_error;
560: Else
561: p_canonical_value := l_rec.default_value;
562: hr_chkfmt.changeformat(
563: input => p_canonical_value,
564: output => p_user_value,
565: format => l_rec.uom,
566: curcode => l_rec.input_currency_code);

Line 581: hr_chkfmt.checkformat(

577: -- Check format validation(format, min and max validations).
578: -- Hot defaulted value is validated again for range validation.
579: --
580: Begin
581: hr_chkfmt.checkformat(
582: value => p_user_value,
583: format => l_rec.uom,
584: output => p_canonical_value,
585: minimum => l_rec.min_value,

Line 605: hr_chkfmt.changeformat(

601: -- Format min_value and max_value for output parameters.
602: -- These parameters should be used for message only.
603: --
604: If l_rec.min_value is not NULL then
605: hr_chkfmt.changeformat(
606: input => l_rec.min_value,
607: output => p_user_min_value,
608: format => l_rec.uom,
609: curcode => l_rec.input_currency_code);

Line 612: hr_chkfmt.changeformat(

608: format => l_rec.uom,
609: curcode => l_rec.input_currency_code);
610: End If;
611: If l_rec.max_value is not NULL then
612: hr_chkfmt.changeformat(
613: input => l_rec.max_value,
614: output => p_user_max_value,
615: format => l_rec.uom,
616: curcode => l_rec.input_currency_code);