DBA Data[Home] [Help]

APPS.OKS_RENEW_PVT dependencies on V$PARAMETER

Line 28: * The location of the log file depends on the first path in the value field of v$parameter.

24: END DEBUG_LOG;
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,

Line 52: from v$parameter

48:
49:
50: cursor get_dir is
51: select value
52: from v$parameter
53: where name = 'utl_file_dir';
54:
55: Begin
56: x_return_status := OKC_API.G_RET_STS_SUCCESS;