DBA Data[Home] [Help]

APPS.WSH_FTE_ENABLED dependencies on WSH_DEBUG_SV

Line 42: l_debug_on := WSH_DEBUG_SV.is_debug_enabled;

38: l_debug_on := WSH_DEBUG_INTERFACE.g_debug;
39: --
40: IF l_debug_on IS NULL
41: THEN
42: l_debug_on := WSH_DEBUG_SV.is_debug_enabled;
43: END IF;
44: --
45: IF l_debug_on THEN
46: WSH_DEBUG_SV.push(l_module_name);

Line 46: WSH_DEBUG_SV.push(l_module_name);

42: l_debug_on := WSH_DEBUG_SV.is_debug_enabled;
43: END IF;
44: --
45: IF l_debug_on THEN
46: WSH_DEBUG_SV.push(l_module_name);
47: END IF;
48: --
49: --
50: -- Debug Statements

Line 53: WSH_DEBUG_SV.pop(l_module_name);

49: --
50: -- Debug Statements
51: --
52: IF l_debug_on THEN
53: WSH_DEBUG_SV.pop(l_module_name);
54: END IF;
55: --
56: return 'Y';
57: EXCEPTION

Line 69: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

65: --
66: -- Debug Statements
67: --
68: IF l_debug_on THEN
69: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
70: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
71: END IF;
72: --
73: -- Debug Statements

Line 70: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');

66: -- Debug Statements
67: --
68: IF l_debug_on THEN
69: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
70: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
71: END IF;
72: --
73: -- Debug Statements
74: --

Line 76: WSH_DEBUG_SV.pop(l_module_name);

72: --
73: -- Debug Statements
74: --
75: IF l_debug_on THEN
76: WSH_DEBUG_SV.pop(l_module_name);
77: END IF;
78: --
79: return 'N';
80: --