DBA Data[Home] [Help]

APPS.CSE_DEBUG_PUB dependencies on FND_PROFILE

Line 4: l_debug varchar2(1) := nvl(fnd_profile.value('cse_debug_option'),'N');

1: PACKAGE BODY cse_debug_pub AS
2: /* $Header: CSEPDBGB.pls 120.3 2006/08/16 20:21:33 brmanesh noship $ */
3:
4: l_debug varchar2(1) := nvl(fnd_profile.value('cse_debug_option'),'N');
5:
6: FUNCTION set_debug_file(p_file in varchar2 default null) RETURN varchar2 IS
7: rtn_val varchar2(100);
8: l_cse varchar2(3) := 'cse';

Line 13: g_dir := nvl(fnd_profile.value('cse_debug_log_directory'), '/tmp');

9: l_sysdate date := sysdate;
10: BEGIN
11:
12: IF g_dir is null THEN
13: g_dir := nvl(fnd_profile.value('cse_debug_log_directory'), '/tmp');
14: END IF;
15:
16: IF g_file IS null THEN
17: IF p_file IS null THEN