DBA Data[Home] [Help]

APPS.OKL_ASSET_SUBSIDY_PVT dependencies on FND_LOG

Line 2801: l_module CONSTANT fnd_log_messages.module%TYPE := 'okl.plsql.OKL_ASSET_SUBSIDY_PVT.VALIDATE_SUBSIDY_POOL_APPLIC';

2797: lv_subsidy_name okl_subsidies_b.name%TYPE;
2798: lv_subsidy_pool_name okl_subsidy_pools_v.subsidy_pool_name%TYPE;
2799: --END: 09/29/2005 bug#4634871
2800:
2801: l_module CONSTANT fnd_log_messages.module%TYPE := 'okl.plsql.OKL_ASSET_SUBSIDY_PVT.VALIDATE_SUBSIDY_POOL_APPLIC';
2802: l_debug_enabled VARCHAR2(10);
2803: is_debug_statement_on BOOLEAN;
2804:
2805: --START: 09-Dec-2005 cklee - Fixed bug#4874385 |

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

2813:
2814: -- check if debug is enabled
2815: l_debug_enabled := okl_debug_pub.check_log_enabled;
2816: -- check for logging on STATEMENT level
2817: is_debug_statement_on := okl_debug_pub.check_log_on(l_module,FND_LOG.LEVEL_STATEMENT);
2818:
2819: -- cklee: 06/29/2005
2820: -- l_applicable is used for the resturn status of the function. Do not confuse
2821: -- with the name of the variable. So, if l_applicable = 'Y' means subsidy is

Line 2831: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2827:
2828: IF(l_applicable = 'Y' AND lx_subsidy_pool_id IS NOT NULL)THEN
2829: -- write to log
2830: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
2831: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
2832: l_module,
2833: 'subsidy '||p_subsidy_id||' is attached to subsidy pool '||lx_subsidy_pool_id
2834: );
2835: END IF; -- end of NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on

Line 2846: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2842: );
2843: IF(l_applicable = 'N')THEN
2844: -- write to log
2845: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
2846: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
2847: l_module,
2848: 'subsidy pool '||lx_subsidy_pool_id||' is not active'
2849: );
2850: END IF; -- end of NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on

Line 2924: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2920: );
2921: IF(l_applicable = 'N')THEN
2922: -- write to log
2923: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
2924: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
2925: l_module,
2926: 'conversion basis does not exist for subsidy pool '||lx_subsidy_pool_id||' on '||trunc(sysdate)||
2927: ' between trx currency code '||lv_asset_curr_code||' and pool currency '||lx_sub_pool_curr_code
2928: );

Line 2945: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2941: --END: 09/29/2005 bug#4634871
2942: END IF;
2943: -- write to log
2944: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
2945: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
2946: l_module,
2947: 'conversion rate '|| lx_conversion_rate||' for pool '||lx_subsidy_pool_id||' on '||trunc(sysdate)||
2948: ' between trx currency code '||lv_asset_curr_code||' and pool currency '||lx_sub_pool_curr_code
2949: );

Line 2958: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2954: ,x_pool_balance => lx_sub_pool_balance);
2955: IF(l_applicable = 'N')THEN
2956: -- write to log
2957: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
2958: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
2959: l_module,
2960: 'subsidy pool balance is not valid before add '||lx_sub_pool_balance
2961: );
2962: END IF; -- end of NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on

Line 3003: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,

2999: ,x_msg_data => lx_msg_data);
3000:
3001: -- write to log
3002: IF(NVL(l_debug_enabled,'N')='Y' AND is_debug_statement_on) THEN
3003: okl_debug_pub.log_debug(FND_LOG.LEVEL_STATEMENT,
3004: l_module,
3005: 'okl_asset_subsidy_pvt.is_balance_valid_after_add returned with '|| lx_return_status||' x_msg_data '||lx_msg_data
3006: );
3007: END IF;