DBA Data[Home] [Help]

APPS.PAY_SIV_BUS dependencies on HR_CHKFMT

Line 483: hr_chkfmt.checkformat

479: --
480: -- Check that the name format is correct (not null payroll name).
481: --
482: l_value := p_name;
483: hr_chkfmt.checkformat
484: (value => l_value
485: ,format => 'PAY_NAME'
486: ,output => l_output
487: ,minimum => null

Line 797: hr_chkfmt.changeformat

793: --
794: -- Check the minimum value.
795: --
796: l_value := l_min;
797: hr_chkfmt.changeformat
798: (input => l_value
799: ,output => l_min_output
800: ,format => l_uom
801: ,curcode => p_input_currency_code

Line 807: hr_chkfmt.changeformat

803: --
804: -- Check the maximum value.
805: --
806: l_value := l_max;
807: hr_chkfmt.changeformat
808: (input => l_value
809: ,output => l_max_output
810: ,format => l_uom
811: ,curcode => p_input_currency_code

Line 817: hr_chkfmt.changeformat

813: --
814: -- Check the default value.
815: --
816: l_value := l_def;
817: hr_chkfmt.changeformat
818: (input => l_value
819: ,output => l_def_output
820: ,format => l_uom
821: ,curcode => p_input_currency_code

Line 831: hr_chkfmt.checkformat

827: --
828: -- Only check maximum and minimum values if both values are not null.
829: --
830: if l_min is not null and l_max is not null then
831: hr_chkfmt.checkformat
832: (value => l_min_output
833: ,format => l_uom
834: ,output => l_output
835: ,minimum => l_min

Line 849: hr_chkfmt.checkformat

845: -- not null.
846: --
847: if l_rgeflg <> 'F' and l_def is not null and
848: (l_min is not null or l_max is not null) then
849: hr_chkfmt.checkformat
850: (value => l_def_output
851: ,format => l_uom
852: ,output => l_output
853: ,minimum => l_min