DBA Data[Home] [Help]

APPS.IBE_UTIL dependencies on FND_PROFILE

Line 123: Changed to not call fnd_profile everytime but to check IBE_UTIL.DEBUGON global variable

119: pragma exception_init(buffer_overflow, -20000);
120: begin
121:
122: /**
123: Changed to not call fnd_profile everytime but to check IBE_UTIL.DEBUGON global variable
124: - achalana 07/29
125: **/
126: -- If fnd_profile.value_specific('IBE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
127: If IBE_UTIL.G_DEBUGON = FND_API.G_TRUE Then

Line 126: -- If fnd_profile.value_specific('IBE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then

122: /**
123: Changed to not call fnd_profile everytime but to check IBE_UTIL.DEBUGON global variable
124: - achalana 07/29
125: **/
126: -- If fnd_profile.value_specific('IBE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
127: If IBE_UTIL.G_DEBUGON = FND_API.G_TRUE Then
128: -- utl_file.put_line(ASO_DEBUG_PUB.G_FILE_PTR, to_char(sysdate,'DD-MON-YYYY:HH24:MI:SS')||'IBE IBE_UTIL:Using New Debugging');
129: enable_debug_pvt();
130: x_rest := p_line;

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

146: /**
147: wrote this section of code for backward compatibility, so that code that was not changed
148: for new debugging should work
149: **/
150: If fnd_profile.value_specific('IBE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
151: enable_debug_pvt();
152: x_rest := p_line;
153: loop
154: if (x_rest is null) then

Line 189: fnd_profile again, and set G_DEBUGON to true

185:
186: /**
187: If in java before calling enable_debug_new we already have checked the cookie by calling
188: IBEUtil.logEnabled() you can pass p_check_profile = 'N' to this api, it will not check
189: fnd_profile again, and set G_DEBUGON to true
190: **/
191:
192: If p_check_profile = 'N' Then
193: IBE_UTIL.G_DEBUGON := FND_API.G_TRUE;

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

192: If p_check_profile = 'N' Then
193: IBE_UTIL.G_DEBUGON := FND_API.G_TRUE;
194: IBE_UTIL.debug('IBE_UTIL.enable_debug_new p_check_profile is N');
195: Else
196: If fnd_profile.value_specific('IBE_DEBUG',FND_GLOBAL.USER_ID,null,null) = 'Y' Then
197: IBE_UTIL.G_DEBUGON := FND_API.G_TRUE;
198: Else
199: IBE_UTIL.G_DEBUGON := FND_API.G_FALSE;
200: End If;