DBA Data[Home] [Help]

APPS.ASO_QUOTE_UTIL_PVT dependencies on FND_PROFILE

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 103: RETURN NVL(fnd_profile.value('ASO_ENABLE_DEBUG'), 'N');

99: end disable_debug_pvt;
100:
101: FUNCTION is_debug_enabled RETURN VARCHAR2 AS
102: BEGIN
103: RETURN NVL(fnd_profile.value('ASO_ENABLE_DEBUG'), 'N');
104: END is_debug_enabled;
105:
106: FUNCTION rosetta_g_miss_num_map(n number) RETURN number as
107: a number := fnd_api.g_miss_num;