DBA Data[Home] [Help]

APPS.HR_BPL_MESSAGE dependencies on FND_GLOBAL

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

151: while POS < DATA_SIZE loop
152: TTYPE := SUBSTR(MSGDATA, POS, 1);
153: POS := POS + 2;
154: /* Note that we are intentionally using chr(0) rather than */
155: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
156: NEXTPOS := INSTR(MSGDATA, chr(0), POS);
157: if (NEXTPOS = 0) then /* For bug 1893617 */
158: exit; /* Should never happen, but prevent spins on bad data*/
159: end if;

Line 217: || FND_GLOBAL.NEWLINE

213: into token_text;
214: else
215: token_text :=
216: 'Parameter error in FND_MESSAGE.FETCH_SQL_TOKEN(Token SQL): '
217: || FND_GLOBAL.NEWLINE
218: || 'TOK_VAL must begin with keyword SELECT';
219: end if;
220: return token_text;
221: exception

Line 225: || FND_GLOBAL.NEWLINE

221: exception
222: when others then
223: token_text :=
224: 'SQL-Generic error in FND_MESSAGE.FETCH_SQL_TOKEN(Token SQL): '
225: || FND_GLOBAL.NEWLINE
226: || SUBSTR(sqlerrm, 1, 1900);
227: return token_text;
228: end;
229:

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

254: tok_type := TTYPE;
255: end if;
256:
257: /* Note that we are intentionally using chr(0) rather than */
258: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
259: MSGDATA := MSGDATA||tok_type||chr(0)||TOKEN||chr(0)||VALUE||chr(0);
260:
261: end set_token;
262:

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

312: OUT_VAL varchar2(2000);
313: begin
314: if MSGSET then
315: /* Note that we are intentionally using chr(0) rather than */
316: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
317: OUT_VAL := MSGAPP||chr(0)||MSGNAME||chr(0)||MSGDATA;
318: MSGSET := FALSE;
319: else
320: OUT_VAL := '';

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

330:
331: procedure RAISE_ERROR is
332: begin
333: /* Note that we are intentionally using chr(0) rather than */
334: /* FND_GLOBAL.LOCAL_CHR() for a performance bug (982909) */
335: raise_application_error(-20001,
336: MSGNAME||': '||replace(rtrim(MSGDATA,chr(0)),
337: chr(0), ', '));
338: end;