DBA Data[Home] [Help]

APPS.XLA_CREATE_ACCT_RPT_PVT dependencies on FND_PROFILE

Line 106: SELECT decode(fnd_profile.value('AFLOG_ENABLED'), 'Y', 'Yes', 'No') INTO l_fnd_debug_status FROM dual;

102: BEGIN
103:
104: -- Get the FND: Debug Log Status
105: -- Bug No : 11063454
106: SELECT decode(fnd_profile.value('AFLOG_ENABLED'), 'Y', 'Yes', 'No') INTO l_fnd_debug_status FROM dual;
107:
108: print_logfile(to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')||' - FND: Debug Log Enabled : '|| l_fnd_debug_status);
109:
110: print_logfile(to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')||

Line 114: SELECT fnd_profile.value('USER_ID') INTO p_user_id FROM dual;

110: print_logfile(to_char(sysdate,'DD-MON-YYYY HH24:MI:SS')||
111: ' - Beginning of the Report');
112: -- Get the user id
113:
114: SELECT fnd_profile.value('USER_ID') INTO p_user_id FROM dual;
115: --
116: -- Get the Request id of the concurrent program
117: --
118: IF (C_LEVEL_STATEMENT >= g_log_level) THEN