DBA Data[Home] [Help]

APPS.GL_CI_DATA_TRANSFER_PKG dependencies on FND_FILE

Line 30: which_file in varchar2 default FND_FILE.log

26: procedure debug_message (
27: message_string in varchar2 ,
28: verbose_mode in boolean default FALSE,
29: line_size in number default 255 ,
30: which_file in varchar2 default FND_FILE.log
31: ) is
32: msg_text varchar2(10000);
33: new_line number;
34: begin

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

35: msg_text := substr(message_string, 1, 32000);
36: new_line := 0;
37: if verbose_mode then
38: if message_string = fnd_global.local_chr(10) then
39: FND_FILE.put(which_file, message_string);
40: else
41: while msg_text is not null loop
42: new_line := instr(msg_text, fnd_global.local_chr(10));
43: if new_line = 0 then new_line := line_size;

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

43: if new_line = 0 then new_line := line_size;
44: elsif new_line > line_size then new_line := line_size;
45: end if;
46: --DBMS_OUTPUT.put_line( substr(msg_text, 1, new_line-1) );
47: FND_FILE.put_line(which_file, substr(msg_text, 1, new_line-1));
48: msg_text := substr(msg_text, new_line+1);
49: end loop;
50: end if;
51: end if;

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

51: end if;
52: exception
53: when OTHERS then
54: if SQLCODE = 1 then
55: --+ Raised if you call FND_FILE from a SQL*Plus session
56: --+ without initializing user_id, resp_id, login_resp_id.
57: --+ dbms_output.enable(1000000);
58: while msg_text is not null loop
59: --+can not use chr(10) any more, can not use dbms_output any more

Line 79: which_file in varchar2 default FND_FILE.log

75: procedure log_message (
76: message_string in varchar2 ,
77: verbose_mode in boolean default FALSE,
78: line_size in number default 255 ,
79: which_file in varchar2 default FND_FILE.log
80: ) is
81: msg_text varchar2(10000);
82: new_line number;
83: begin

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

84: msg_text := substr(message_string, 1, 32000);
85: new_line := 0;
86: if verbose_mode then
87: if message_string = fnd_global.local_chr(10) then
88: FND_FILE.put(which_file, message_string);
89: else
90: while msg_text is not null loop
91: new_line := instr(msg_text, fnd_global.local_chr(10));
92: if new_line = 0 then new_line := line_size;

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

92: if new_line = 0 then new_line := line_size;
93: elsif new_line > line_size then new_line := line_size;
94: end if;
95: --DBMS_OUTPUT.put_line( substr(msg_text, 1, new_line-1) );
96: FND_FILE.put_line(which_file, substr(msg_text, 1, new_line-1));
97: msg_text := substr(msg_text, new_line+1);
98: end loop;
99: end if;
100: end if;

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

100: end if;
101: exception
102: when OTHERS then
103: if SQLCODE = 1 then
104: --+ Raised if you call FND_FILE from a SQL*Plus session
105: --+ without initializing user_id, resp_id, login_resp_id.
106: --+ dbms_output.enable(1000000);
107: while msg_text is not null loop
108: --+can not use chr(10) any more, can not use dbms_output any more

Line 128: which_file in varchar2 default FND_FILE.log

124: procedure DD (
125: message_string in varchar2,
126: mode_override in boolean default TRUE,
127: line_size in number default 255,
128: which_file in varchar2 default FND_FILE.log
129: ) is
130: begin
131: if mode_override then
132: debug_message(message_string, TRUE, line_size, which_file);