DBA Data[Home] [Help]

APPS.GML_VALIDATEDERIVE_GRP dependencies on FND_PROFILE

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

27: */
28:
29: /* Global variables */
30: -- Read the profile option that enables/disables the debug log
31: g_fnd_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
32:
33: --yannamal bug4189249 Feb 17 2005
34: --Getting the Debug Log Level to check the level before logging
35: g_fnd_debug_level NUMBER := NVL(FND_PROFILE.VALUE('AFLOG_LEVEL'),0);

Line 35: g_fnd_debug_level NUMBER := NVL(FND_PROFILE.VALUE('AFLOG_LEVEL'),0);

31: g_fnd_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
32:
33: --yannamal bug4189249 Feb 17 2005
34: --Getting the Debug Log Level to check the level before logging
35: g_fnd_debug_level NUMBER := NVL(FND_PROFILE.VALUE('AFLOG_LEVEL'),0);
36:
37: G_PKG_NAME CONSTANT VARCHAR2(30) :='GML_ValidateDerive_GRP';
38: g_module_prefix CONSTANT VARCHAR2(40) := 'po.plsql.' || g_pkg_name || '.';
39: