DBA Data[Home] [Help]

APPS.OKS_RENCON_PVT dependencies on FND_MSG_PUB

Line 1981: FND_MSG_PUB.initialize;

1977: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
1978: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1979: END IF;
1980: IF FND_API.to_boolean(p_init_msg_list ) THEN
1981: FND_MSG_PUB.initialize;
1982: END IF;
1983:
1984: -- Added by MSENGUPT 11/07
1985: -- 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 2799: FOR i IN 1..FND_MSG_PUB.count_msg LOOP

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

3046:
3047: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
3048: l_error_text := substr (SQLERRM, 1, 240);
3049: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_other_error', l_error_text);
3050: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name, l_error_text);
3051: END IF;
3052: IF (c_top_lines%isopen) THEN
3053: CLOSE c_top_lines;
3054: END IF;