DBA Data[Home] [Help]

APPS.OKS_RENCON_PVT dependencies on FND_MSG_PUB

Line 1983: FND_MSG_PUB.initialize;

1979: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
1980: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1981: END IF;
1982: IF FND_API.to_boolean(p_init_msg_list ) THEN
1983: FND_MSG_PUB.initialize;
1984: END IF;
1985:
1986: -- Added by MSENGUPT 11/07
1987: -- Need to check that target is valid as by the time the CP picks this up the target contract may not be in valid status

Line 2801: FOR i IN 1..FND_MSG_PUB.count_msg LOOP

2797: END IF;
2798:
2799: --log all the error and warning messages the CP log file
2800: IF (l_errors OR l_warnings) AND (p_conc_program = 'Y') THEN
2801: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2802: log_messages(FND_MSG_PUB.get(i, 'F'));
2803: END LOOP;
2804: END IF;
2805:

Line 2802: log_messages(FND_MSG_PUB.get(i, 'F'));

2798:
2799: --log all the error and warning messages the CP log file
2800: IF (l_errors OR l_warnings) AND (p_conc_program = 'Y') THEN
2801: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2802: log_messages(FND_MSG_PUB.get(i, 'F'));
2803: END LOOP;
2804: END IF;
2805:
2806: COMMIT;

Line 2811: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );

2807:
2808: IF(FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level)THEN
2809: FND_LOG.string(FND_LOG.level_procedure, l_mod_name || '.end', 'x_return_status=' || x_return_status ||' ,retcode='|| retcode);
2810: END IF;
2811: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );
2812:
2813: log_messages('Renewal Consolidation conurrent program - END');
2814: LOG_MESSAGES(' ');
2815:

Line 2827: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );

2823:
2824: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2825: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_error', 'x_return_status='||x_return_status);
2826: END IF;
2827: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );
2828:
2829: IF(get_oper_top_lines%isopen) THEN
2830: CLOSE get_oper_top_lines;
2831: END IF;

Line 2841: FOR i IN 1..FND_MSG_PUB.count_msg LOOP

2837: END IF;
2838:
2839: --log all the error messages the CP log file
2840: IF (p_conc_program = 'Y') THEN
2841: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2842: log_messages(FND_MSG_PUB.get(i, 'F'));
2843: END LOOP;
2844: END IF;
2845: log_messages('Renewal Consolidation conurrent program - Error');

Line 2842: log_messages(FND_MSG_PUB.get(i, 'F'));

2838:
2839: --log all the error messages the CP log file
2840: IF (p_conc_program = 'Y') THEN
2841: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2842: log_messages(FND_MSG_PUB.get(i, 'F'));
2843: END LOOP;
2844: END IF;
2845: log_messages('Renewal Consolidation conurrent program - Error');
2846:

Line 2856: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );

2852:
2853: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2854: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_unexpected_error', 'x_return_status='||x_return_status);
2855: END IF;
2856: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );
2857:
2858: IF(get_oper_top_lines%isopen) THEN
2859: CLOSE get_oper_top_lines;
2860: END IF;

Line 2870: FOR i IN 1..FND_MSG_PUB.count_msg LOOP

2866: END IF;
2867:
2868: --log all the error messages the CP log file
2869: IF (p_conc_program = 'Y') THEN
2870: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2871: log_messages(FND_MSG_PUB.get(i, 'F'));
2872: END LOOP;
2873: END IF;
2874: log_messages('Renewal Consolidation conurrent program - Unexpected Error');

Line 2871: log_messages(FND_MSG_PUB.get(i, 'F'));

2867:
2868: --log all the error messages the CP log file
2869: IF (p_conc_program = 'Y') THEN
2870: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2871: log_messages(FND_MSG_PUB.get(i, 'F'));
2872: END LOOP;
2873: END IF;
2874: log_messages('Renewal Consolidation conurrent program - Unexpected Error');
2875:

Line 2885: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, errbuf);

2881: errbuf := SQLCODE || SQLERRM;
2882:
2883: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2884: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_other_error', errbuf);
2885: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, errbuf);
2886: END IF;
2887: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );
2888:
2889: IF(get_oper_top_lines%isopen) THEN

Line 2887: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );

2883: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2884: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_other_error', errbuf);
2885: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, errbuf);
2886: END IF;
2887: FND_MSG_PUB.count_and_get(p_count => x_msg_count, p_data => x_msg_data );
2888:
2889: IF(get_oper_top_lines%isopen) THEN
2890: CLOSE get_oper_top_lines;
2891: END IF;

Line 2901: FOR i IN 1..FND_MSG_PUB.count_msg LOOP

2897: END IF;
2898:
2899: --log all the error messages the CP log file
2900: IF (p_conc_program = 'Y') THEN
2901: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2902: log_messages(FND_MSG_PUB.get(i, 'F'));
2903: END LOOP;
2904: END IF;
2905: log_messages('Renewal Consolidation conurrent program - Error - OTHERS '||errbuf);

Line 2902: log_messages(FND_MSG_PUB.get(i, 'F'));

2898:
2899: --log all the error messages the CP log file
2900: IF (p_conc_program = 'Y') THEN
2901: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
2902: log_messages(FND_MSG_PUB.get(i, 'F'));
2903: END LOOP;
2904: END IF;
2905: log_messages('Renewal Consolidation conurrent program - Error - OTHERS '||errbuf);
2906:

Line 3058: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, l_error_text);

3054:
3055: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
3056: l_error_text := substr (SQLERRM, 1, 240);
3057: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_other_error', l_error_text);
3058: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, l_error_text);
3059: END IF;
3060: IF (c_top_lines%isopen) THEN
3061: CLOSE c_top_lines;
3062: END IF;