DBA Data[Home] [Help]

APPS.GL_CI_PRE_CROSS_PKG dependencies on FND_GLOBAL

Line 28: if message_string = fnd_global.local_chr(10) then

24: msg_text varchar2(10000) := substr(message_string, 1, 32000);
25: new_line number := 0;
26: begin
27: if verbose_mode then
28: if message_string = fnd_global.local_chr(10) then
29: FND_FILE.put(which_file, message_string);
30: else
31: while msg_text is not null loop
32: new_line := instr(msg_text, fnd_global.local_chr(10));

Line 32: new_line := instr(msg_text, fnd_global.local_chr(10));

28: if message_string = fnd_global.local_chr(10) then
29: FND_FILE.put(which_file, message_string);
30: else
31: while msg_text is not null loop
32: new_line := instr(msg_text, fnd_global.local_chr(10));
33: if new_line = 0 then new_line := line_size;
34: elsif new_line > line_size then new_line := line_size;
35: end if;
36: FND_FILE.put_line(which_file, substr(msg_text, 1, new_line-1));

Line 49: new_line := instr(msg_text, fnd_global.local_chr(10));

45: --+ without initializing user_id, resp_id, login_resp_id.
46: --+ dbms_output.enable(1000000);
47: while msg_text is not null loop
48: --+can not use chr(10) any more, can not use dbms_output any more
49: new_line := instr(msg_text, fnd_global.local_chr(10));
50: if new_line = 0 then new_line := line_size;
51: elsif new_line > line_size then new_line := line_size;
52: end if;
53: raise_application_error(-20000, substr(msg_text, 1, new_line-1));