DBA Data[Home] [Help]

APPS.OKL_REVERSE_CONTRACT_PVT dependencies on FND_LOG

Line 298: l_module CONSTANT fnd_log_messages.module%TYPE := 'okl.plsql.OKL_REVERSE_CONTRACT_PVT.REVERSE_TRX';

294: WHERE SOURCE_ID = p_source_id
295: AND SOURCE_TABLE = p_source_table;
296:
297: -- sjalasut, added local variables to support logging
298: l_module CONSTANT fnd_log_messages.module%TYPE := 'okl.plsql.OKL_REVERSE_CONTRACT_PVT.REVERSE_TRX';
299: l_debug_enabled VARCHAR2(10);
300: is_debug_statement_on BOOLEAN;
301:
302: -- R12 Change - START

Line 320: is_debug_statement_on := okl_debug_pub.check_log_on(l_module,FND_LOG.LEVEL_STATEMENT);

316:
317: -- check if debug is enabled
318: l_debug_enabled := okl_debug_pub.check_log_enabled;
319: -- check for logging on STATEMENT level
320: is_debug_statement_on := okl_debug_pub.check_log_on(l_module,FND_LOG.LEVEL_STATEMENT);
321:
322: -- Reverse Contract Lines Transactions
323: FOR ctrct_trx_rec IN ctrct_trx_cur
324: LOOP

Line 517: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

513: * Logic added as part of subsidy pools enhancement. START
514: */
515: -- write to log
516: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
517: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
518: l_module,
519: 'calling okl_subsidy_pool_auth_trx_pvt.create_pool_trx_khr_reverse with p_chr_id '|| p_contract_id ||
520: ' p_transaction_date '||p_transaction_date
521: );

Line 535: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

531: ,p_override_trx_reason => NULL -- pass this as null from there as this holds override value
532: );
533: -- write to log
534: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
535: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
536: l_module,
537: 'okl_subsidy_pool_auth_trx_pvt.create_pool_trx_khr_reverse returned with '||l_return_status||
538: ' l_msg_data '||l_msg_data
539: );