DBA Data[Home] [Help]

APPS.OKS_RENEW_PVT dependencies on FND_LOG

Line 60: --writes to the standard fnd_log_messages table

56: x_return_status := OKC_API.G_RET_STS_SUCCESS;
57:
58: --anjkumar, for R12 nobody should use this procedure for loggin
59: --but for old modules that are still using this, make sure that this also
60: --writes to the standard fnd_log_messages table
61: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
62: FND_LOG.string(FND_LOG.level_statement, nvl(p_program_name, 'oks.plsql.unknown'), p_perf_msg||' '||p_error_msg);
63: END IF;
64:

Line 61: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN

57:
58: --anjkumar, for R12 nobody should use this procedure for loggin
59: --but for old modules that are still using this, make sure that this also
60: --writes to the standard fnd_log_messages table
61: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
62: FND_LOG.string(FND_LOG.level_statement, nvl(p_program_name, 'oks.plsql.unknown'), p_perf_msg||' '||p_error_msg);
63: END IF;
64:
65: l_end_time := to_char(sysdate, 'HH24:MI:SS AM');

Line 62: FND_LOG.string(FND_LOG.level_statement, nvl(p_program_name, 'oks.plsql.unknown'), p_perf_msg||' '||p_error_msg);

58: --anjkumar, for R12 nobody should use this procedure for loggin
59: --but for old modules that are still using this, make sure that this also
60: --writes to the standard fnd_log_messages table
61: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
62: FND_LOG.string(FND_LOG.level_statement, nvl(p_program_name, 'oks.plsql.unknown'), p_perf_msg||' '||p_error_msg);
63: END IF;
64:
65: l_end_time := to_char(sysdate, 'HH24:MI:SS AM');
66: l_perf_msg := l_perf_msg || ' ' || l_end_time;