DBA Data[Home] [Help]

APPS.AP_WEB_DISC_PKG dependencies on FND_GLOBAL

Line 443: p_text := l_label_text || fnd_global.local_chr(9) || l_line || fnd_global.local_chr(13) || '

439:
440: /* If it's 'Line' field, then we've reached the receipts section.
441: Put the line back into p_text since we don't want to process it here. */
442: if (l_label_code = 'AP_WEB_LINE') then
443: p_text := l_label_text || fnd_global.local_chr(9) || l_line || fnd_global.local_chr(13) || '
444: ' || p_text;
445: exit;
446: end if;
447:

Line 2987: sep varchar2(2) := /*fnd_global.local_chr(13)||*/'

2983:
2984: PROCEDURE GetLine(p_exp in out nocopy long,
2985: p_line out nocopy long,
2986: p_max in number default 2000) IS
2987: sep varchar2(2) := /*fnd_global.local_chr(13)||*/'
2988: '; -- Removed fnd_global.local_chr(13) for R12, bug 5140868
2989: -- pos number;
2990: -- l_exp long := p_exp;
2991: l_line long := '';

Line 2988: '; -- Removed fnd_global.local_chr(13) for R12, bug 5140868

2984: PROCEDURE GetLine(p_exp in out nocopy long,
2985: p_line out nocopy long,
2986: p_max in number default 2000) IS
2987: sep varchar2(2) := /*fnd_global.local_chr(13)||*/'
2988: '; -- Removed fnd_global.local_chr(13) for R12, bug 5140868
2989: -- pos number;
2990: -- l_exp long := p_exp;
2991: l_line long := '';
2992:

Line 2997: p_line := substr(l_line, 1, p_max) || fnd_global.local_chr(9);

2993: BEGIN
2994:
2995: GetTill(p_exp, l_line, sep);
2996: if (length(l_line) >= p_max) then
2997: p_line := substr(l_line, 1, p_max) || fnd_global.local_chr(9);
2998: raise VALUE_ERROR;
2999: else
3000: p_line := l_line || fnd_global.local_chr(9);
3001: end if;

Line 3000: p_line := l_line || fnd_global.local_chr(9);

2996: if (length(l_line) >= p_max) then
2997: p_line := substr(l_line, 1, p_max) || fnd_global.local_chr(9);
2998: raise VALUE_ERROR;
2999: else
3000: p_line := l_line || fnd_global.local_chr(9);
3001: end if;
3002:
3003: END GetLine;
3004:

Line 3009: sep varchar2(1) := fnd_global.local_chr(9);

3005: PROCEDURE GetField(p_line in out nocopy long,
3006: p_field out nocopy long,
3007: p_max in number default 300) IS
3008:
3009: sep varchar2(1) := fnd_global.local_chr(9);
3010: l_fld long := '';
3011:
3012: BEGIN
3013: