DBA Data[Home] [Help]

APPS.FND_MESSAGE dependencies on FND_GLOBAL

Line 418: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

414: tok_type := TTYPE;
415: end if;
416:
417: /* Note that we are intentionally using chr(0) rather than */
418: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
419: /* 3722358 - replace chr(0) in VALUE with spaces */
420:
421: /* Bug 5397597. If TTYPE='Y' then substrb(VALUE,1,30) (intentionally
422: * used substrb instead of substr to handle the worst cases that the

Line 490: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

486: OUT_VAL varchar2(2000);
487: begin
488: if MSGSET then
489: /* Note that we are intentionally using chr(0) rather than */
490: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
491: OUT_VAL := MSGAPP||chr(0)||MSGNAME||chr(0)||MSGDATA;
492: MSGSET := FALSE;
493: else
494: OUT_VAL := '';

Line 508: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

504:
505: procedure RAISE_ERROR is
506: begin
507: /* Note that we are intentionally using chr(0) rather than */
508: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
509: raise_application_error(-20001,
510: MSGNAME||': '||replace(rtrim(MSGDATA,chr(0)),
511: chr(0), ', '));
512: end;

Line 696: || FND_GLOBAL.NEWLINE

692: into token_text;
693: else
694: token_text :=
695: 'Parameter error in FND_MESSAGE.FETCH_SQL_TOKEN(Token SQL): '
696: || FND_GLOBAL.NEWLINE
697: || 'TOK_VAL must begin with keyword SELECT';
698: end if;
699: return token_text;
700: exception

Line 704: || FND_GLOBAL.NEWLINE

700: exception
701: when others then
702: token_text :=
703: 'SQL-Generic error in FND_MESSAGE.FETCH_SQL_TOKEN(Token SQL): '
704: || FND_GLOBAL.NEWLINE
705: || SUBSTR(sqlerrm, 1, 1900);
706: return token_text;
707: end;
708:

Line 787: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

783: while POS < DATA_SIZE loop
784: TTYPE := SUBSTR(MSGDATA, POS, 1);
785: POS := POS + 2;
786: /* Note that we are intentionally using chr(0) rather than */
787: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
788: NEXTPOS := INSTR(MSGDATA, chr(0), POS);
789: if (NEXTPOS = 0) then /* For bug 1893617 */
790: exit; /* Should never happen, but prevent spins on bad data*/
791: end if;

Line 835: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

831: if AUTO_LOG <> 'Y' then
832: MSGSET := FALSE;
833: end if;
834: /* Note that we are intentionally using chr(0) rather than */
835: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
836: return (MSGAPP||chr(0)||MSGNAME||chr(0)||MSGDATA);
837: else
838: return ('');
839: end if;

Line 858: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

854: begin
855: POS := 1;
856:
857: /* Note that we are intentionally using chr(0) rather than */
858: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
859: NEXTPOS := INSTR(ENCODED_MESSAGE, chr(0), POS);
860: MSGAPP := SUBSTR(ENCODED_MESSAGE, POS, NEXTPOS - POS);
861: POS := NEXTPOS + 1;
862:

Line 889: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

885: null;
886: POS := 1;
887:
888: /* Note that we are intentionally using chr(0) rather than */
889: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
890: NEXTPOS := INSTR(ENCODED_MESSAGE, chr(0), POS);
891: APP_SHORT_NAME := SUBSTR(ENCODED_MESSAGE, POS, NEXTPOS - POS);
892: POS := NEXTPOS + 1;
893:

Line 941: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */

937: STARTPOS := POS;
938: TTYPE := SUBSTR(MSGDATA, POS, 1);
939: POS := POS + 2;
940: /* Note that we are intentionally using chr(0) rather than */
941: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
942: NEXTPOS := INSTR(MSGDATA, chr(0), POS);
943: if (NEXTPOS = 0) then /* For bug 1893617 */
944: exit; /* Should never happen, but prevent spins on bad data*/
945: end if;