DBA Data[Home] [Help]

APPS.OKS_RENEW_PVT dependencies on FND_GLOBAL

Line 29: * The name of the log file is ERM_l_session_id_FND_GLOBAL.user_id

25:
26: /*
27: * This procedure will write the performace messages and/or error messages to a log file.
28: * The location of the log file depends on the first path in the value field of v$parameter.
29: * The name of the log file is ERM_l_session_id_FND_GLOBAL.user_id
30: */
31: Procedure Debug_Log(p_program_name IN VARCHAR2,
32: p_perf_msg IN VARCHAR2,
33: p_error_msg IN VARCHAR2,

Line 75: || FND_GLOBAL.user_id || '.out';

71: --If l_perf_msg is null Then l_perf_msg := ''; End If;
72: If l_error_msg is null Then l_error_msg := ''; End If;
73:
74: l_file_name := 'ERM_' || l_session_id || '_'
75: || FND_GLOBAL.user_id || '.out';
76:
77: Open get_dir;
78: Fetch get_dir into l_location;
79: Close get_dir;