DBA Data[Home] [Help]

APPS.BIS_DEBUG_PUB dependencies on FND_PROFILE

Line 26: fnd_profile.value('BIS_DEBUG_LEVEL'), '1'));

22:
23: -- Global variable holding the desired debug_level.
24:
25: G_Debug_Level NUMBER := to_number(nvl(
26: fnd_profile.value('BIS_DEBUG_LEVEL'), '1'));
27:
28: -- Index used by the Get function to keep track of the last fetched
29: -- Debug.
30:

Line 38: G_DIR Varchar2(255) := fnd_profile.value

34: G_DEBUG Varchar2(1) := FND_API.G_FALSE;
35: G_DEBUG_MODE VARCHAR2(30) := 'TABLE';
36: -- Table , default mode
37: -- file , write to log file
38: G_DIR Varchar2(255) := fnd_profile.value
39: (
40: 'BIS_DEBUG_LOG_DIRECTORY'
41: );
42: G_FILE Varchar2(255) := null;