DBA Data[Home] [Help]

APPS.OKC_DEBUG dependencies on FND_PROFILE

Line 4: l_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

1: PACKAGE BODY OKC_DEBUG AS
2: /* $Header: OKCDBUGB.pls 120.0 2005/05/25 22:52:14 appldev noship $ */
3:
4: l_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
5:
6: -- g_user_id Number := OKC_API.G_MISS_NUM;
7: g_indent_str Varchar2(4000) := Null;
8: g_proc Varchar2(80);

Line 33: if FND_PROFILE.VALUE('AFLOG_ENABLED') = 'Y' then

29: -- the flag will be set whenever the indent string is null
30: -- bug 2170106, jkodiyan
31: --
32: if g_indent_str is null then
33: if FND_PROFILE.VALUE('AFLOG_ENABLED') = 'Y' then
34: Set_trace_on;
35: else
36: Set_trace_off;
37: end if;