DBA Data[Home] [Help]

APPS.PSP_ADJ_DRIVER dependencies on FND_MSG_PUB

Line 540: fnd_msg_pub.initialize;

536: orig_sumline_rec temp_orig_sumline_rec;
537: BEGIN
538:
539: g_error_api_path := '';
540: fnd_msg_pub.initialize;
541: errbuf := '';
542: g_run_id := p_run_id;
543:
544: psp_general.get_currency_precision(p_currency_code, g_precision, g_ext_precision); -- Introduced for bug fix 2916848

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

1308: retcode := 1;
1309:
1310: WHEN OTHERS THEN
1311: g_error_api_path := 'LOAD_TABLE:'||g_error_api_path;
1312: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
1313: p_encoded => FND_API.G_FALSE,
1314: p_data => l_msg_data,
1315: p_msg_index_out => l_msg_count);
1316: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 1417: fnd_msg_pub.initialize;

1413:
1414: BEGIN
1415:
1416: g_error_api_path := '';
1417: fnd_msg_pub.initialize;
1418: errbuf := '';
1419: open app_dates_c;
1420: fetch app_dates_c into
1421: l_person_id,

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

1459:
1460: EXCEPTION
1461: WHEN OTHERS THEN
1462: g_error_api_path := 'GET_APPROVAL_HEADER:'||g_error_api_path;
1463: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
1464: p_encoded => FND_API.G_FALSE,
1465: p_data => l_msg_data,
1466: p_msg_index_out => l_msg_count);
1467: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 1524: fnd_msg_pub.initialize;

1520:
1521: BEGIN
1522:
1523: g_error_api_path := '';
1524: fnd_msg_pub.initialize;
1525: errbuf := '';
1526: g_run_id := p_run_id;
1527: if l_dff_grouping_option = 'Y' then
1528: -- added for DA-ENH

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

1996: retcode := 1;
1997:
1998: WHEN OTHERS THEN
1999: g_error_api_path := 'LOAD_TABLE:'||g_error_api_path;
2000: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
2001: p_encoded => FND_API.G_FALSE,
2002: p_data => l_msg_data,
2003: p_msg_index_out => l_msg_count);
2004: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 2267: fnd_msg_pub.initialize;

2263: l_msg_data VARCHAR2(2000);
2264:
2265: begin
2266: g_error_api_path := '';
2267: fnd_msg_pub.initialize;
2268: errbuf := '';
2269: update psp_adjustment_control_table
2270: set comments = p_comments,
2271: approver_id = FND_GLOBAL.USER_ID, -- 1087529

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

2282:
2283: EXCEPTION
2284: WHEN OTHERS THEN
2285: g_error_api_path := 'UPDATE_ADJUSTMENT_CONTROL:'||g_error_api_path;
2286: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
2287: p_encoded => FND_API.G_FALSE,
2288: p_data => l_msg_data,
2289: p_msg_index_out => l_msg_count);
2290: errbuf := l_msg_data || fnd_global.local_chr(10) || g_error_api_path;

Line 3123: fnd_msg_pub.initialize;

3119:
3120: hr_utility.trace('Procedure IN Parameters Ends ');
3121:
3122: g_error_api_path := '';
3123: fnd_msg_pub.initialize;
3124: errbuf := '';
3125: retcode := 0;
3126: counter := 1;
3127:

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

4040: delete from psp_temp_orig_sumlines;
4041: delete from psp_temp_dest_sumlines;
4042: End of comment for bug fix 4507892 *****/
4043: g_error_api_path := 'GENERATE_LINES:'||g_error_api_path||sqlerrm;
4044: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_FIRST,
4045: p_encoded => FND_API.G_FALSE,
4046: p_data => l_msg_data,
4047: p_msg_index_out => l_msg_count);
4048: errbuf := errbuf || l_msg_data || fnd_global.local_chr(10) || g_error_api_path;