DBA Data[Home] [Help]

APPS.PSP_ADJ_DRIVER dependencies on FND_MSG_PUB

Line 534: fnd_msg_pub.initialize;

530: orig_sumline_rec temp_orig_sumline_rec;
531: BEGIN
532:
533: g_error_api_path := '';
534: fnd_msg_pub.initialize;
535: errbuf := '';
536: g_run_id := p_run_id;
537:
538: psp_general.get_currency_precision(p_currency_code, g_precision, g_ext_precision); -- Introduced for bug fix 2916848

Line 1306: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,

1302: retcode := 1;
1303:
1304: WHEN OTHERS THEN
1305: g_error_api_path := 'LOAD_TABLE:'||g_error_api_path;
1306: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
1307: p_encoded => FND_API.G_FALSE,
1308: p_data => l_msg_data,
1309: p_msg_index_out => l_msg_count);
1310: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 1408: fnd_msg_pub.initialize;

1404:
1405: BEGIN
1406:
1407: g_error_api_path := '';
1408: fnd_msg_pub.initialize;
1409: errbuf := '';
1410: open app_dates_c;
1411: fetch app_dates_c into
1412: l_person_id,

Line 1454: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,

1450:
1451: EXCEPTION
1452: WHEN OTHERS THEN
1453: g_error_api_path := 'GET_APPROVAL_HEADER:'||g_error_api_path;
1454: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
1455: p_encoded => FND_API.G_FALSE,
1456: p_data => l_msg_data,
1457: p_msg_index_out => l_msg_count);
1458: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 1515: fnd_msg_pub.initialize;

1511:
1512: BEGIN
1513:
1514: g_error_api_path := '';
1515: fnd_msg_pub.initialize;
1516: errbuf := '';
1517: g_run_id := p_run_id;
1518: if l_dff_grouping_option = 'Y' then
1519: -- added for DA-ENH

Line 1991: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,

1987: retcode := 1;
1988:
1989: WHEN OTHERS THEN
1990: g_error_api_path := 'LOAD_TABLE:'||g_error_api_path;
1991: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
1992: p_encoded => FND_API.G_FALSE,
1993: p_data => l_msg_data,
1994: p_msg_index_out => l_msg_count);
1995: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 2258: fnd_msg_pub.initialize;

2254: l_msg_data VARCHAR2(2000);
2255:
2256: begin
2257: g_error_api_path := '';
2258: fnd_msg_pub.initialize;
2259: errbuf := '';
2260: update psp_adjustment_control_table
2261: set comments = p_comments,
2262: approver_id = FND_GLOBAL.USER_ID, -- 1087529

Line 2277: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,

2273:
2274: EXCEPTION
2275: WHEN OTHERS THEN
2276: g_error_api_path := 'UPDATE_ADJUSTMENT_CONTROL:'||g_error_api_path;
2277: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
2278: p_encoded => FND_API.G_FALSE,
2279: p_data => l_msg_data,
2280: p_msg_index_out => l_msg_count);
2281: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 3114: fnd_msg_pub.initialize;

3110:
3111: hr_utility.trace('Procedure IN Parameters Ends ');
3112:
3113: g_error_api_path := '';
3114: fnd_msg_pub.initialize;
3115: errbuf := '';
3116: retcode := 0;
3117: counter := 1;
3118:

Line 4035: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,

4031: delete from psp_temp_orig_sumlines;
4032: delete from psp_temp_dest_sumlines;
4033: End of comment for bug fix 4507892 *****/
4034: g_error_api_path := 'GENERATE_LINES:'||g_error_api_path||sqlerrm;
4035: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
4036: p_encoded => FND_API.G_FALSE,
4037: p_data => l_msg_data,
4038: p_msg_index_out => l_msg_count);
4039: errbuf := errbuf || l_msg_data || fnd_global.local_chr(10) || g_error_api_path;