DBA Data[Home] [Help]

APPS.ICX_POR_TRACK_VALIDATE_JOB_S dependencies on FND_LOG

Line 201: * FND_LOG_MESSAGES table using the AOL API.

197: END delete_job;
198:
199: /*
200: * Procedure to insert the debug message into
201: * FND_LOG_MESSAGES table using the AOL API.
202: * @param p_debug_message debug message
203: * @param p_log_type log types
204: LOADER: Logs into the loader log file using the fnd apis
205: CONCURRENT: Logs into the concurrent mgr log using the

Line 223: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE,

219: /*Insert the Debug string */
220: IF p_log_type = 'LOADER' THEN
221: WHILE l_start < l_debug_msg_length LOOP
222: l_start := l_start + l_size;
223: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE,
224: g_module_name,
225: substrb(l_debug_msg,1,l_size));
226: l_debug_msg := substrb(l_debug_msg,l_size+1);
227: END LOOP;

Line 266: fnd_log_repository.init;

262: fnd_profile.put('AFLOG_ENABLED', 'Y');
263: fnd_profile.put('AFLOG_MODULE', g_module_name);
264: fnd_profile.put('AFLOG_LEVEL', '1');
265: fnd_profile.put('AFLOG_FILENAME', '');
266: fnd_log_repository.init;
267: END IF;
268:
269: EXCEPTION
270: WHEN OTHERS THEN