DBA Data[Home] [Help]

APPS.IGI_IAC_DEBUG_PKG dependencies on FND_FILE

Line 30: fnd_file.put_names(l_debug_log,l_debug_output,l_output_dir);

26: BEGIN
27: l_vc2 := p_debug || chr_newline;
28: l_line_size := 75;
29: IF (l_debug_switch) THEN
30: fnd_file.put_names(l_debug_log,l_debug_output,l_output_dir);
31: fnd_file.put_line(fnd_file.output,p_debug);
32: END IF;
33: IF p_debug_type = 1 then
34: Fnd_file.put_line(fnd_file.log,p_debug);

Line 31: fnd_file.put_line(fnd_file.output,p_debug);

27: l_vc2 := p_debug || chr_newline;
28: l_line_size := 75;
29: IF (l_debug_switch) THEN
30: fnd_file.put_names(l_debug_log,l_debug_output,l_output_dir);
31: fnd_file.put_line(fnd_file.output,p_debug);
32: END IF;
33: IF p_debug_type = 1 then
34: Fnd_file.put_line(fnd_file.log,p_debug);
35: ELSIF p_debug_type = 2 then

Line 34: Fnd_file.put_line(fnd_file.log,p_debug);

30: fnd_file.put_names(l_debug_log,l_debug_output,l_output_dir);
31: fnd_file.put_line(fnd_file.output,p_debug);
32: END IF;
33: IF p_debug_type = 1 then
34: Fnd_file.put_line(fnd_file.log,p_debug);
35: ELSIF p_debug_type = 2 then
36: Fnd_file.put_line(fnd_file.output,p_debug);
37: END IF;
38: EXCEPTION

Line 36: Fnd_file.put_line(fnd_file.output,p_debug);

32: END IF;
33: IF p_debug_type = 1 then
34: Fnd_file.put_line(fnd_file.log,p_debug);
35: ELSIF p_debug_type = 2 then
36: Fnd_file.put_line(fnd_file.output,p_debug);
37: END IF;
38: EXCEPTION
39: WHEN OTHERS THEN
40: NULL;

Line 89: fnd_file.close;

85: */
86: PROCEDURE debug_off IS
87: BEGIN
88: If l_debug_switch then
89: fnd_file.close;
90: end if;
91: l_debug_switch := FALSE;
92: END debug_off;
93: