DBA Data[Home] [Help]

APPS.OZF_FUND_RECONCILE_PVT dependencies on FND_MSG_PUB

Line 47: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

43: -- Note
44: ------------------------------------------------------------
45:
46: g_pkg_name CONSTANT VARCHAR2 (30) := 'ozf_fund_reconcile_pvt';
47: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
48: g_bulk_limit CONSTANT NUMBER := 5000;
49:
50: /* =========================================================
51: --tbl_type to hold the object

Line 519: /* fnd_msg_pub.count_and_get (

515: -- x_retcode := 1;
516: --x_errbuf := l_msg_data;
517: ozf_utility_pvt.write_conc_log('ERROR: Could not perform reconcile for Object: '||l_object_type||' : '||l_object_tbl (k).object_id);
518:
519: /* fnd_msg_pub.count_and_get (
520: p_encoded=> fnd_api.g_false
521: ,p_count=> x_msg_count
522: ,p_data=> x_msg_data
523: );*/

Line 581: /* fnd_msg_pub.count_and_get (

577:
578: END LOOP;
579:
580: ozf_utility_pvt.write_conc_log (l_msg_data);
581: /* fnd_msg_pub.count_and_get (
582: p_encoded=> fnd_api.g_false
583: ,p_count=> x_msg_count
584: ,p_data=> x_msg_data
585: );

Line 592: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

588: WHEN OTHERS THEN
589: -ROLLBACK TO release_fund_conc;
590: x_return_status := fnd_api.g_ret_sts_unexp_error;
591:
592: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
593: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
594: END IF;
595:
596: fnd_msg_pub.count_and_get (

Line 593: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

589: -ROLLBACK TO release_fund_conc;
590: x_return_status := fnd_api.g_ret_sts_unexp_error;
591:
592: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
593: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
594: END IF;
595:
596: fnd_msg_pub.count_and_get (
597: p_count=> x_msg_count

Line 596: fnd_msg_pub.count_and_get (

592: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
593: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
594: END IF;
595:
596: fnd_msg_pub.count_and_get (
597: p_count=> x_msg_count
598: ,p_data=> x_msg_data
599: ,p_encoded=> fnd_api.g_false
600: );

Line 734: fnd_msg_pub.initialize;

730: ozf_utility_pvt.debug_message (': before parent source cursor ');
731: END IF;
732:
733: IF fnd_api.to_boolean (p_init_msg_list) THEN
734: fnd_msg_pub.initialize;
735: END IF;
736:
737: IF NOT fnd_api.compatible_api_call (l_api_version, p_api_version, l_api_name, g_pkg_name) THEN
738: RAISE fnd_api.g_exc_unexpected_error;

Line 976: fnd_msg_pub.count_and_get (

972: IF G_DEBUG THEN
973: ozf_utility_pvt.debug_message ( l_api_name || ': end');
974: END IF;
975:
976: fnd_msg_pub.count_and_get (
977: p_count=> x_msg_count
978: ,p_data=> x_msg_data
979: ,p_encoded=> fnd_api.g_false
980: );

Line 988: fnd_msg_pub.count_and_get (

984: EXCEPTION
985: WHEN fnd_api.g_exc_error THEN
986: ROLLBACK TO reconcile_budget_line;
987: x_return_status := fnd_api.g_ret_sts_error;
988: fnd_msg_pub.count_and_get (
989: p_count=> x_msg_count
990: ,p_data=> x_msg_data
991: ,p_encoded=> fnd_api.g_false
992: );

Line 996: fnd_msg_pub.count_and_get (

992: );
993: WHEN fnd_api.g_exc_unexpected_error THEN
994: ROLLBACK TO reconcile_budget_line;
995: x_return_status := fnd_api.g_ret_sts_unexp_error;
996: fnd_msg_pub.count_and_get (
997: p_count=> x_msg_count
998: ,p_data=> x_msg_data
999: ,p_encoded=> fnd_api.g_false
1000: );

Line 1005: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

1001: WHEN OTHERS THEN
1002: ROLLBACK TO reconcile_budget_line;
1003: x_return_status := fnd_api.g_ret_sts_unexp_error;
1004:
1005: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1006: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1007: END IF;
1008:
1009: fnd_msg_pub.count_and_get (

Line 1006: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

1002: ROLLBACK TO reconcile_budget_line;
1003: x_return_status := fnd_api.g_ret_sts_unexp_error;
1004:
1005: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1006: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1007: END IF;
1008:
1009: fnd_msg_pub.count_and_get (
1010: p_count=> x_msg_count

Line 1009: fnd_msg_pub.count_and_get (

1005: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1006: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1007: END IF;
1008:
1009: fnd_msg_pub.count_and_get (
1010: p_count=> x_msg_count
1011: ,p_data=> x_msg_data
1012: ,p_encoded=> fnd_api.g_false
1013: );

Line 1584: fnd_msg_pub.initialize;

1580: END IF;
1581: -- x_return_status := fnd_api.g_ret_sts_success;
1582:
1583: /* IF fnd_api.to_boolean (p_init_msg_list) THEN
1584: fnd_msg_pub.initialize;
1585: END IF;
1586:
1587: IF NOT fnd_api.compatible_api_call (l_api_version, p_api_version, l_api_name, g_pkg_name) THEN
1588: RAISE fnd_api.g_exc_unexpected_error;

Line 1619: /* fnd_msg_pub.count_and_get (

1615: ROLLBACK TO offer_budget;
1616: END IF;
1617: END LOOP;
1618:
1619: /* fnd_msg_pub.count_and_get (
1620: p_encoded=> fnd_api.g_false
1621: ,p_count=> x_msg_count
1622: ,p_data=> x_msg_data
1623: );

Line 1631: fnd_msg_pub.count_and_get (

1627: EXCEPTION
1628: WHEN fnd_api.g_exc_error THEN
1629: ROLLBACK TO Post_utilized_budget_conc;
1630: x_return_status := fnd_api.g_ret_sts_error;
1631: fnd_msg_pub.count_and_get (
1632: p_count=> x_msg_count
1633: ,p_data=> x_msg_data
1634: ,p_encoded=> fnd_api.g_false
1635: );

Line 1639: fnd_msg_pub.count_and_get (

1635: );
1636: WHEN fnd_api.g_exc_unexpected_error THEN
1637: ROLLBACK TO Post_utilized_budget_conc;
1638: x_return_status := fnd_api.g_ret_sts_unexp_error;
1639: fnd_msg_pub.count_and_get (
1640: p_count=> x_msg_count
1641: ,p_data=> x_msg_data
1642: ,p_encoded=> fnd_api.g_false
1643: );

Line 1648: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

1644: WHEN OTHERS THEN
1645: ROLLBACK TO Post_utilized_budget_conc;
1646: x_return_status := fnd_api.g_ret_sts_unexp_error;
1647:
1648: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1649: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1650: END IF;
1651:
1652: fnd_msg_pub.count_and_get (

Line 1649: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

1645: ROLLBACK TO Post_utilized_budget_conc;
1646: x_return_status := fnd_api.g_ret_sts_unexp_error;
1647:
1648: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1649: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1650: END IF;
1651:
1652: fnd_msg_pub.count_and_get (
1653: p_count=> x_msg_count

Line 1652: fnd_msg_pub.count_and_get (

1648: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1649: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1650: END IF;
1651:
1652: fnd_msg_pub.count_and_get (
1653: p_count=> x_msg_count
1654: ,p_data=> x_msg_data
1655: ,p_encoded=> fnd_api.g_false
1656: ); */

Line 1750: fnd_msg_pub.initialize;

1746: ozf_utility_pvt.debug_message (': before parent source cursor ');
1747: END IF;
1748:
1749: IF fnd_api.to_boolean (p_init_msg_list) THEN
1750: fnd_msg_pub.initialize;
1751: END IF;
1752:
1753: IF NOT fnd_api.compatible_api_call (l_api_version, p_api_version, l_api_name, g_pkg_name) THEN
1754: RAISE fnd_api.g_exc_unexpected_error;

Line 1873: fnd_msg_pub.count_and_get (

1869: END LOOP;
1870:
1871: CLOSE c_parent_source_fund;
1872:
1873: fnd_msg_pub.count_and_get (
1874: p_encoded=> fnd_api.g_false
1875: ,p_count=> x_msg_count
1876: ,p_data=> x_msg_data
1877: );

Line 1886: fnd_msg_pub.count_and_get (

1882: EXCEPTION
1883: WHEN fnd_api.g_exc_error THEN
1884: ROLLBACK TO reconcile_budget_utilized;
1885: x_return_status := fnd_api.g_ret_sts_error;
1886: fnd_msg_pub.count_and_get (
1887: p_count=> x_msg_count
1888: ,p_data=> x_msg_data
1889: ,p_encoded=> fnd_api.g_false
1890: );

Line 1894: fnd_msg_pub.count_and_get (

1890: );
1891: WHEN fnd_api.g_exc_unexpected_error THEN
1892: ROLLBACK TO reconcile_budget_utilized;
1893: x_return_status := fnd_api.g_ret_sts_unexp_error;
1894: fnd_msg_pub.count_and_get (
1895: p_count=> x_msg_count
1896: ,p_data=> x_msg_data
1897: ,p_encoded=> fnd_api.g_false
1898: );

Line 1903: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

1899: WHEN OTHERS THEN
1900: ROLLBACK TO reconcile_budget_utilized;
1901: x_return_status := fnd_api.g_ret_sts_unexp_error;
1902:
1903: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1904: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1905: END IF;
1906:
1907: fnd_msg_pub.count_and_get (

Line 1904: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

1900: ROLLBACK TO reconcile_budget_utilized;
1901: x_return_status := fnd_api.g_ret_sts_unexp_error;
1902:
1903: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1904: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1905: END IF;
1906:
1907: fnd_msg_pub.count_and_get (
1908: p_count=> x_msg_count

Line 1907: fnd_msg_pub.count_and_get (

1903: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1904: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1905: END IF;
1906:
1907: fnd_msg_pub.count_and_get (
1908: p_count=> x_msg_count
1909: ,p_data=> x_msg_data
1910: ,p_encoded=> fnd_api.g_false
1911: );

Line 1957: fnd_msg_pub.initialize;

1953: END IF;
1954: x_return_status := fnd_api.g_ret_sts_success;
1955:
1956: IF fnd_api.to_boolean (p_init_msg_list) THEN
1957: fnd_msg_pub.initialize;
1958: END IF;
1959:
1960: IF NOT fnd_api.compatible_api_call (l_api_version, p_api_version, l_api_name, g_pkg_name) THEN
1961: RAISE fnd_api.g_exc_unexpected_error;

Line 2000: fnd_msg_pub.count_and_get (

1996: ELSIF l_return_status = fnd_api.g_ret_sts_unexp_error THEN
1997: RAISE fnd_api.g_exc_unexpected_error;
1998: END IF;
1999:
2000: fnd_msg_pub.count_and_get (
2001: p_encoded=> fnd_api.g_false
2002: ,p_count=> x_msg_count
2003: ,p_data=> x_msg_data
2004: );

Line 2013: fnd_msg_pub.count_and_get (

2009: EXCEPTION
2010: WHEN fnd_api.g_exc_error THEN
2011: ROLLBACK TO reconcile_line;
2012: x_return_status := fnd_api.g_ret_sts_error;
2013: fnd_msg_pub.count_and_get (
2014: p_count=> x_msg_count
2015: ,p_data=> x_msg_data
2016: ,p_encoded=> fnd_api.g_false
2017: );

Line 2021: fnd_msg_pub.count_and_get (

2017: );
2018: WHEN fnd_api.g_exc_unexpected_error THEN
2019: ROLLBACK TO reconcile_line;
2020: x_return_status := fnd_api.g_ret_sts_unexp_error;
2021: fnd_msg_pub.count_and_get (
2022: p_count=> x_msg_count
2023: ,p_data=> x_msg_data
2024: ,p_encoded=> fnd_api.g_false
2025: );

Line 2030: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

2026: WHEN OTHERS THEN
2027: ROLLBACK TO reconcile_line;
2028: x_return_status := fnd_api.g_ret_sts_unexp_error;
2029:
2030: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2031: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
2032: END IF;
2033:
2034: fnd_msg_pub.count_and_get (

Line 2031: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

2027: ROLLBACK TO reconcile_line;
2028: x_return_status := fnd_api.g_ret_sts_unexp_error;
2029:
2030: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2031: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
2032: END IF;
2033:
2034: fnd_msg_pub.count_and_get (
2035: p_count=> x_msg_count

Line 2034: fnd_msg_pub.count_and_get (

2030: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2031: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
2032: END IF;
2033:
2034: fnd_msg_pub.count_and_get (
2035: p_count=> x_msg_count
2036: ,p_data=> x_msg_data
2037: ,p_encoded=> fnd_api.g_false
2038: );

Line 2428: fnd_msg_pub.count_and_get(

2424: END IF; -- The main IF loop
2425:
2426: x_return_status := fnd_api.g_ret_sts_success;
2427:
2428: fnd_msg_pub.count_and_get(
2429: p_encoded => fnd_api.g_false
2430: ,p_count => x_msg_count
2431: ,p_data => x_msg_data);
2432: EXCEPTION

Line 2435: fnd_msg_pub.count_and_get(

2431: ,p_data => x_msg_data);
2432: EXCEPTION
2433: WHEN fnd_api.g_exc_error THEN
2434: x_return_status := fnd_api.g_ret_sts_error;
2435: fnd_msg_pub.count_and_get(
2436: p_encoded => fnd_api.g_false
2437: ,p_count => x_msg_count
2438: ,p_data => x_msg_data);
2439: WHEN fnd_api.g_exc_unexpected_error THEN

Line 2441: fnd_msg_pub.count_and_get(

2437: ,p_count => x_msg_count
2438: ,p_data => x_msg_data);
2439: WHEN fnd_api.g_exc_unexpected_error THEN
2440: x_return_status := fnd_api.g_ret_sts_unexp_error;
2441: fnd_msg_pub.count_and_get(
2442: p_encoded => fnd_api.g_false
2443: ,p_count => x_msg_count
2444: ,p_data => x_msg_data);
2445: WHEN OTHERS THEN

Line 2447: fnd_msg_pub.count_and_get(

2443: ,p_count => x_msg_count
2444: ,p_data => x_msg_data);
2445: WHEN OTHERS THEN
2446: x_return_status := fnd_api.g_ret_sts_unexp_error;
2447: fnd_msg_pub.count_and_get(
2448: p_encoded => fnd_api.g_false
2449: ,p_count => x_msg_count
2450: ,p_data => x_msg_data);
2451: END transferring_unutilized_amount;

Line 2509: fnd_msg_pub.initialize;

2505: ozf_utility_pvt.write_conc_log(l_full_name || ': start');
2506: END IF;
2507:
2508: IF fnd_api.to_boolean(p_init_msg_list) THEN
2509: fnd_msg_pub.initialize;
2510: END IF;
2511:
2512: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version, l_api_name, g_pkg_name) THEN
2513: RAISE fnd_api.g_exc_unexpected_error;

Line 2817: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false

2813: END LOOP;
2814:
2815: CLOSE c_get_new_funds;
2816:
2817: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false
2818: ,p_count => x_msg_count
2819: ,p_data => x_msg_data);
2820:
2821: IF G_DEBUG THEN

Line 2829: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false

2825: EXCEPTION
2826: WHEN fnd_api.g_exc_error THEN
2827: ROLLBACK;
2828: x_return_status := fnd_api.g_ret_sts_error;
2829: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false
2830: ,p_count => x_msg_count
2831: ,p_data => x_msg_data);
2832: WHEN fnd_api.g_exc_unexpected_error THEN
2833: ROLLBACK;

Line 2835: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false

2831: ,p_data => x_msg_data);
2832: WHEN fnd_api.g_exc_unexpected_error THEN
2833: ROLLBACK;
2834: x_return_status := fnd_api.g_ret_sts_unexp_error;
2835: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false
2836: ,p_count => x_msg_count
2837: ,p_data => x_msg_data);
2838: WHEN OTHERS THEN
2839: ROLLBACK;

Line 2842: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

2838: WHEN OTHERS THEN
2839: ROLLBACK;
2840: x_return_status := fnd_api.g_ret_sts_unexp_error;
2841:
2842: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2843: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
2844: END IF;
2845:
2846: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false

Line 2843: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

2839: ROLLBACK;
2840: x_return_status := fnd_api.g_ret_sts_unexp_error;
2841:
2842: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2843: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
2844: END IF;
2845:
2846: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false
2847: ,p_count => x_msg_count

Line 2846: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false

2842: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2843: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
2844: END IF;
2845:
2846: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false
2847: ,p_count => x_msg_count
2848: ,p_data => x_msg_data);
2849:
2850: END get_new_funds;

Line 2989: fnd_msg_pub.initialize;

2985: LOOP
2986: SAVEPOINT open_next_years_budget;
2987: FETCH c_get_fund_id INTO l_root_fund_id;
2988:
2989: fnd_msg_pub.initialize;
2990:
2991: l_return_status := fnd_api.g_ret_sts_success;
2992:
2993: IF c_get_fund_id%NOTFOUND THEN

Line 3137: fnd_msg_pub.count_and_get(p_count => x_msg_count

3133: COMMIT;
3134: x_retcode := 0;
3135: ELSE
3136: ROLLBACK TO open_next_years_budget;
3137: fnd_msg_pub.count_and_get(p_count => x_msg_count
3138: ,p_data => x_msg_data
3139: ,p_encoded => fnd_api.g_false
3140: );
3141: ozf_utility_pvt.write_conc_log (x_msg_data);

Line 3174: fnd_msg_pub.count_and_get(p_count => x_msg_count

3170: WHEN fnd_api.g_exc_error THEN
3171: ROLLBACK;
3172: x_retcode := 1;
3173: x_errbuf := x_msg_data;
3174: fnd_msg_pub.count_and_get(p_count => x_msg_count
3175: ,p_data => x_msg_data
3176: ,p_encoded => fnd_api.g_false
3177: );
3178: ozf_utility_pvt.write_conc_log (x_errbuf);

Line 3183: fnd_msg_pub.count_and_get(p_count => x_msg_count

3179: WHEN fnd_api.g_exc_unexpected_error THEN
3180: ROLLBACK;
3181: x_retcode := 1;
3182: x_errbuf := x_msg_data;
3183: fnd_msg_pub.count_and_get(p_count => x_msg_count
3184: ,p_data => x_msg_data
3185: ,p_encoded => fnd_api.g_false
3186: );
3187: ozf_utility_pvt.write_conc_log (x_errbuf);

Line 3192: fnd_msg_pub.count_and_get(p_count => x_msg_count

3188: WHEN OTHERS THEN
3189: ROLLBACK;
3190: x_retcode := 1;
3191: x_errbuf := x_msg_data;
3192: fnd_msg_pub.count_and_get(p_count => x_msg_count
3193: ,p_data => x_msg_data
3194: ,p_encoded => fnd_api.g_false
3195: );
3196: ozf_utility_pvt.write_conc_log (x_errbuf);