DBA Data[Home] [Help]

APPS.ASO_QUOTE_UTIL_PVT dependencies on FND_GLOBAL

Line 24: If fnd_profile.value_specific('ASO_ENABLE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then

20: pragma exception_init(buffer_overflow, -20000);
21:
22: begin
23:
24: If fnd_profile.value_specific('ASO_ENABLE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
25: enable_debug_pvt();
26: Else
27: disable_debug_pvt();
28: End If;

Line 61: IF fnd_profile.value_specific('ASO_ENABLE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then

57:
58: /* Modified the procedure so that we can enable debug at user level. If the
59: profile ASO_ENABLE_DEBUG is Set to 'Yes' for a User, we will start writing
60: the debug messages into a file. */
61: IF fnd_profile.value_specific('ASO_ENABLE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
62:
63: l_session_id := icx_sec.g_session_id;
64: l_file_name := 'QOT_'||FND_GLOBAL.USER_NAME||'_' || l_session_id || '.log';
65:

Line 64: l_file_name := 'QOT_'||FND_GLOBAL.USER_NAME||'_' || l_session_id || '.log';

60: the debug messages into a file. */
61: IF fnd_profile.value_specific('ASO_ENABLE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
62:
63: l_session_id := icx_sec.g_session_id;
64: l_file_name := 'QOT_'||FND_GLOBAL.USER_NAME||'_' || l_session_id || '.log';
65:
66: IF (ASO_DEBUG_PUB.G_FILE is NULL OR ASO_DEBUG_PUB.G_FILE <> l_file_name) Then
67: ASO_DEBUG_PUB.G_DEBUG_MODE := 'FILE';
68: ASO_DEBUG_PUB.G_FILE := l_file_name;