DBA Data[Home] [Help]

APPS.OE_DEBUG_PUB dependencies on OE_DEBUG_PUB

Line 1: PACKAGE BODY OE_DEBUG_PUB AS

1: PACKAGE BODY OE_DEBUG_PUB AS
2: /* $Header: OEXPDBGB.pls 120.4 2011/12/22 12:52:07 aparava ship $ */
3:
4:
5: Function Set_Debug_Mode(P_Mode in varchar2) Return Varchar2 IS

Line 49: oe_debug_pub.setdebuglevel(G_Debug_Level);

45: rtn_val := null;
46: end if;
47:
48: BEGIN
49: oe_debug_pub.setdebuglevel(G_Debug_Level);
50: EXCEPTION
51:
52: WHEN OTHERS THEN
53:

Line 54: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;

50: EXCEPTION
51:
52: WHEN OTHERS THEN
53:
54: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
55: oe_debug_pub.setdebuglevel(G_Debug_Level);
56:
57: END;
58: -- oe_debug_pub.debug_on; -- Commented for bug 7231197

Line 55: oe_debug_pub.setdebuglevel(G_Debug_Level);

51:
52: WHEN OTHERS THEN
53:
54: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
55: oe_debug_pub.setdebuglevel(G_Debug_Level);
56:
57: END;
58: -- oe_debug_pub.debug_on; -- Commented for bug 7231197
59:

Line 58: -- oe_debug_pub.debug_on; -- Commented for bug 7231197

54: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
55: oe_debug_pub.setdebuglevel(G_Debug_Level);
56:
57: END;
58: -- oe_debug_pub.debug_on; -- Commented for bug 7231197
59:
60: if nvl(fnd_profile.value('CONC_REQUEST_ID'),-1) <> -1 then -- added for bug 7231197
61: oe_debug_pub.debug_on;
62: end if;

Line 61: oe_debug_pub.debug_on;

57: END;
58: -- oe_debug_pub.debug_on; -- Commented for bug 7231197
59:
60: if nvl(fnd_profile.value('CONC_REQUEST_ID'),-1) <> -1 then -- added for bug 7231197
61: oe_debug_pub.debug_on;
62: end if;
63:
64: return(rtn_val);
65: Exception when others then

Line 86: OE_DEBUG_PUB.G_DEBUG := FND_API.G_TRUE;

82:
83: Procedure Debug_ON
84: IS
85: Begin
86: OE_DEBUG_PUB.G_DEBUG := FND_API.G_TRUE;
87: End Debug_On;
88:
89:
90: Procedure Debug_OFF

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

89:
90: Procedure Debug_OFF
91: IS
92: Begin
93: OE_DEBUG_PUB.G_DEBUG := FND_API.G_FALSE;
94: End Debug_Off;
95:
96:
97: Function ISDebugOn

Line 100: if OE_DEBUG_PUB.G_DEBUG = FND_API.G_TRUE then

96:
97: Function ISDebugOn
98: Return Boolean IS
99: Begin
100: if OE_DEBUG_PUB.G_DEBUG = FND_API.G_TRUE then
101: RETURN(TRUE);
102: else
103: RETURN(FALSE);
104: end if;

Line 233: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;

229: END IF;
230:
231: EXCEPTION
232: WHEN OTHERS THEN
233: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
234: END Add;
235:
236: Procedure GetFirst(Debug_msg out NOCOPY /* file.sql.39 change */ Varchar2)
237: IS

Line 326: OE_DEBUG_PUB.G_DEBUG_LEVEL := p_debug_level;

322:
323: Procedure SetDebugLevel(p_debug_level in number)
324: IS
325: Begin
326: OE_DEBUG_PUB.G_DEBUG_LEVEL := p_debug_level;
327: --Start of bug 13435459
328: IF G_Debug_Level <> 0.5 AND to_number(nvl(fnd_profile.value('ONT_DEBUG_LEVEL'), '0')) = 0.5 THEN
329: G_Debug_Level := 0.5;
330: END IF;

Line 334: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;

330: END IF;
331: --End of bug 13435459
332: Exception
333: WHEN OTHERS THEN
334: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
335:
336: End SetDebugLevel;
337:
338:

Line 375: OE_DEBUG_PUB.Setdebuglevel(5);

371:
372: UTL_FILE.Put_Line(G_FILE_PTR,'Session Id:'||userenv('SESSIONID'));
373:
374: BEGIN
375: OE_DEBUG_PUB.Setdebuglevel(5);
376: EXCEPTION
377: WHEN OTHERS THEN
378: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
379: OE_DEBUG_PUB.Setdebuglevel(G_Debug_Level);

Line 378: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;

374: BEGIN
375: OE_DEBUG_PUB.Setdebuglevel(5);
376: EXCEPTION
377: WHEN OTHERS THEN
378: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
379: OE_DEBUG_PUB.Setdebuglevel(G_Debug_Level);
380:
381: END;
382:

Line 379: OE_DEBUG_PUB.Setdebuglevel(G_Debug_Level);

375: OE_DEBUG_PUB.Setdebuglevel(5);
376: EXCEPTION
377: WHEN OTHERS THEN
378: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
379: OE_DEBUG_PUB.Setdebuglevel(G_Debug_Level);
380:
381: END;
382:
383: OE_DEBUG_PUB.Debug_On;

Line 383: OE_DEBUG_PUB.Debug_On;

379: OE_DEBUG_PUB.Setdebuglevel(G_Debug_Level);
380:
381: END;
382:
383: OE_DEBUG_PUB.Debug_On;
384:
385: Exception
386: WHEN OTHERS THEN
387: NULL;

Line 394: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;

390:
391: Procedure Stop_ONT_Debugger
392: IS
393: BEGIN
394: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
395: END Stop_ONT_Debugger;
396:
397: END OE_DEBUG_PUB;

Line 397: END OE_DEBUG_PUB;

393: BEGIN
394: OE_DEBUG_PUB.G_DEBUG_LEVEL := 0;
395: END Stop_ONT_Debugger;
396:
397: END OE_DEBUG_PUB;