DBA Data[Home] [Help]

APPS.GL_CI_PRE_CROSS_PKG dependencies on FND_FILE

Line 22: which_file in varchar2 default FND_FILE.log

18: procedure debug_message (
19: message_string in varchar2 ,
20: verbose_mode in boolean default FALSE,
21: line_size in number default 255 ,
22: which_file in varchar2 default FND_FILE.log
23: ) is
24: msg_text varchar2(10000) := substr(message_string, 1, 32000);
25: new_line number := 0;
26: begin

Line 29: FND_FILE.put(which_file, message_string);

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));
33: if new_line = 0 then new_line := line_size;

Line 36: FND_FILE.put_line(which_file, substr(msg_text, 1, new_line-1));

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));
37: msg_text := substr(msg_text, new_line+1);
38: end loop;
39: end if;
40: end if;

Line 44: --+ Raised if you call FND_FILE from a SQL*Plus session

40: end if;
41: exception
42: when OTHERS then
43: if SQLCODE = 1 then
44: --+ Raised if you call FND_FILE from a SQL*Plus session
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

Line 69: which_file in varchar2 default FND_FILE.log

65: procedure DD (
66: message_string in varchar2,
67: mode_override in boolean default TRUE,
68: line_size in number default 255,
69: which_file in varchar2 default FND_FILE.log
70: ) is
71: begin
72: if mode_override then
73: debug_message(message_string, TRUE, line_size, which_file);