DBA Data[Home] [Help]

APPS.ITG_DEBUG_PUB dependencies on ITG_DEBUG_PUB

Line 1: PACKAGE BODY ITG_DEBUG_PUB AS

1: PACKAGE BODY ITG_DEBUG_PUB AS
2: /* $Header: ITGDBGB.pls 120.0 2005/12/22 04:19:26 bsaratna noship $ */
3:
4:
5: Function Set_Debug_Mode(P_Mode in varchar2) Return Varchar2 IS

Line 121: l_file :=ITG_DEBUG_PUB.Set_Debug_Mode('FILE');

117: end if;
118: else -- debug mode is FILE
119: l_debug_msg := substr(replace(to_char(sysdate,'dd-mon-yyyy hh24:mi:ss')||':'||p_debug_level||': '||p_debug_msg,l_g_miss_char,l_replace),1,2000);
120: IF G_FILE is null THEN
121: l_file :=ITG_DEBUG_PUB.Set_Debug_Mode('FILE');
122: END IF;
123: utl_file.put_line(G_FILE_PTR, l_debug_msg);
124: utl_file.fflush(G_FILE_PTR);
125: end if;

Line 230: END ITG_DEBUG_PUB;

226: WHEN OTHERS THEN
227: G_DEBUG_LEVEL := 5;
228: End SetDebugLevel;
229:
230: END ITG_DEBUG_PUB;