DBA Data[Home] [Help]

APPS.FND_FLEX_KEY_API dependencies on FND_GLOBAL

Line 23: chr_newline VARCHAR2(8) := fnd_global.newline;

19:
20: debug_mode_on BOOLEAN := FALSE;
21: do_validation BOOLEAN := TRUE;
22: internal_messages VARCHAR2(10000);
23: chr_newline VARCHAR2(8) := fnd_global.newline;
24:
25:
26: /* ---------- WHO INFORMATION ---------- */
27:

Line 4259: (instr(p_tag, fnd_global.tab) > 0)) THEN

4255: -- Check for white space in tag.
4256:
4257: IF ((instr(p_tag, ' ') > 0) OR
4258: (instr(p_tag, chr_newline) > 0) OR
4259: (instr(p_tag, fnd_global.tab) > 0)) THEN
4260: raise_application_error(error_tag_white_space, 'The tag cannot have white space in it.', TRUE);
4261: END IF;
4262:
4263: -- Check for maximum length of TAG.