DBA Data[Home] [Help]

APPS.AME_UTIL dependencies on HR_CHKFMT

Line 26: return(hr_chkfmt.changeformat(input => canonicalNumberStringIn,

22: if(currencyCodeIn is null) then
23: /* It would be nice to be able to format this string with the right decimal character. */
24: return(canonicalNumberStringIn);
25: else
26: return(hr_chkfmt.changeformat(input => canonicalNumberStringIn,
27: format => 'M',
28: curcode => currencyCodeIn));
29: end if;
30: exception

Line 957: In hr_chkfmt.checkformat, <> is an in/out argument that on output is end-user friendly,

953: inputString := replace(inputNumberStringIn,
954: ',',
955: '.');
956: /*
957: In hr_chkfmt.checkformat, <> is an in/out argument that on output is end-user friendly,
958: and <> is a number-string in canonical format (I checked the source code). <>
959: must be either 'Y' or 'N' (the package does not offer constants for these values).
960: */
961: hr_chkfmt.checkformat(value => inputString,

Line 961: hr_chkfmt.checkformat(value => inputString,

957: In hr_chkfmt.checkformat, <> is an in/out argument that on output is end-user friendly,
958: and <> is a number-string in canonical format (I checked the source code). <>
959: must be either 'Y' or 'N' (the package does not offer constants for these values).
960: */
961: hr_chkfmt.checkformat(value => inputString,
962: format => format,
963: output => returnValue,
964: minimum => null,
965: maximum => null,