DBA Data[Home] [Help]

APPS.HR_DU_UTILITY dependencies on FND_GLOBAL

Line 23: -- Description: In 11i fnd_global.local_CHR(i) will return the local

19: -- 11i / 11.0 specific code
20: -- start
21:
22: -- ------------------------- local_chr ------------------------
23: -- Description: In 11i fnd_global.local_CHR(i) will return the local
24: -- equivelent of the ASCII character. This does not exit pre 11i.
25: --
26: --
27: -- Input Parameters

Line 47: l_char := fnd_global.local_chr(p_char_code);

43:
44: -- uncomment appropriate version
45:
46: -- 11i version
47: l_char := fnd_global.local_chr(p_char_code);
48:
49: -- pre 11i version
50: -- l_char := CHR(p_char_code);
51: