DBA Data[Home] [Help]

APPS.ASO_DEBUG_PUB dependencies on OE_DEBUG_PUB

Line 19: OE_DEBUG_PUB.G_DEBUG_MODE := 'FILE';

15:
16: if P_MODE = 'FILE' then
17:
18: G_DEBUG_MODE := 'FILE';
19: OE_DEBUG_PUB.G_DEBUG_MODE := 'FILE';
20: if G_FILE is null then
21: --IF (ASO_DEBUG_PUB.G_FILE is NULL OR ASO_DEBUG_PUB.G_FILE <> 'ASO'||FND_GLOBAL.USER_NAME||'.dbg') Then
22: select aso_debug_file_s.nextval
23: into l_dbgfile_number

Line 32: oe_debug_pub.G_FILE_PTR := G_FILE_PTR;

28: || fnd_global.user_name
29: || '.dbg';
30:
31: G_FILE_PTR := utl_file.fopen(G_DIR, G_FILE, 'a');
32: oe_debug_pub.G_FILE_PTR := G_FILE_PTR;
33: end if;
34: rtn_val := G_DIR || '/' || g_file;
35: elsif P_MODE = 'CONC' then
36: --G_DEBUG_MODE := 'CONC';

Line 62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;

58: G_Debug_tbl.DELETE;
59: G_Debug_count := 0;
60: G_Debug_index := 0;
61:
62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;
63: OE_DEBUG_PUB.G_Debug_count := 0;
64: OE_DEBUG_PUB.G_Debug_index := 0;
65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;

Line 63: OE_DEBUG_PUB.G_Debug_count := 0;

59: G_Debug_count := 0;
60: G_Debug_index := 0;
61:
62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;
63: OE_DEBUG_PUB.G_Debug_count := 0;
64: OE_DEBUG_PUB.G_Debug_index := 0;
65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
67:

Line 64: OE_DEBUG_PUB.G_Debug_index := 0;

60: G_Debug_index := 0;
61:
62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;
63: OE_DEBUG_PUB.G_Debug_count := 0;
64: OE_DEBUG_PUB.G_Debug_index := 0;
65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
67:
68: END Initialize;

Line 65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;

61:
62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;
63: OE_DEBUG_PUB.G_Debug_count := 0;
64: OE_DEBUG_PUB.G_Debug_index := 0;
65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
67:
68: END Initialize;
69:

Line 66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;

62: OE_DEBUG_PUB.G_Debug_tbl.DELETE;
63: OE_DEBUG_PUB.G_Debug_count := 0;
64: OE_DEBUG_PUB.G_Debug_index := 0;
65: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
66: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
67:
68: END Initialize;
69:
70:

Line 75: --OE_DEBUG_PUB.G_DEBUG := FND_API.G_TRUE;

71: Procedure Debug_ON
72: IS
73: Begin
74: ASO_DEBUG_PUB.G_DEBUG := FND_API.G_TRUE;
75: --OE_DEBUG_PUB.G_DEBUG := FND_API.G_TRUE;
76: End Debug_On;
77:
78:
79: Procedure Debug_OFF

Line 83: OE_DEBUG_PUB.G_DEBUG := FND_API.G_FALSE;

79: Procedure Debug_OFF
80: IS
81: Begin
82: ASO_DEBUG_PUB.G_DEBUG := FND_API.G_FALSE;
83: OE_DEBUG_PUB.G_DEBUG := FND_API.G_FALSE;
84: End Debug_Off;
85:
86:
87: Function ISDebugOn

Line 139: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;

135: aso_debug_pub.SetDebugLevel(10);
136: l_fname := set_debug_mode('FILE');
137: -- I could not test this, But this is the problem. This should be set after
138: -- set_debug_mode call, other G_FILE will be null
139: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
140: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
141: utl_file.put_line(G_FILE_PTR, 'Hello Sir, U have Opened a New Session');
142: else
143: ASO_DEBUG_PUB.G_FILE := 'OFF';

Line 140: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;

136: l_fname := set_debug_mode('FILE');
137: -- I could not test this, But this is the problem. This should be set after
138: -- set_debug_mode call, other G_FILE will be null
139: OE_DEBUG_PUB.G_DIR := ASO_DEBUG_PUB.G_DIR;
140: OE_DEBUG_PUB.G_FILE := ASO_DEBUG_PUB.G_FILE;
141: utl_file.put_line(G_FILE_PTR, 'Hello Sir, U have Opened a New Session');
142: else
143: ASO_DEBUG_PUB.G_FILE := 'OFF';
144: return;

Line 295: OE_DEBUG_PUB.G_DEBUG_LEVEL := p_debug_level;

291: Procedure SetDebugLevel(p_debug_level in number)
292: IS
293: Begin
294: ASO_DEBUG_PUB.G_DEBUG_LEVEL := p_debug_level;
295: OE_DEBUG_PUB.G_DEBUG_LEVEL := p_debug_level;
296: End SetDebugLevel;
297:
298: procedure disable_debug_pvt is
299: begin

Line 302: OE_DEBUG_PUB.Debug_off;

298: procedure disable_debug_pvt is
299: begin
300: ASO_DEBUG_PUB.Debug_off;
301: ASO_DEBUG_PUB.G_FILE := null;
302: OE_DEBUG_PUB.Debug_off;
303: OE_DEBUG_PUB.G_FILE := null;
304: If utl_file.is_Open(ASO_DEBUG_PUB.G_FILE_PTR) Then
305: utl_file.fclose(ASO_DEBUG_PUB.G_FILE_PTR);
306: End If;

Line 303: OE_DEBUG_PUB.G_FILE := null;

299: begin
300: ASO_DEBUG_PUB.Debug_off;
301: ASO_DEBUG_PUB.G_FILE := null;
302: OE_DEBUG_PUB.Debug_off;
303: OE_DEBUG_PUB.G_FILE := null;
304: If utl_file.is_Open(ASO_DEBUG_PUB.G_FILE_PTR) Then
305: utl_file.fclose(ASO_DEBUG_PUB.G_FILE_PTR);
306: End If;
307: exception