DBA Data[Home] [Help]

APPS.CSF_DEBRIEF_UPDATE_PKG dependencies on FND_MSG_PUB

Line 1084: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1080: l_processed_flag := 'COMPLETED W/ERRORS';
1081: if l_msg_count > 0 then
1082: FOR counter IN REVERSE 1..l_msg_count
1083: LOOP
1084: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1085: FND_FILE.put_line(FND_FILE.log,l_msg_data);
1086: end loop;
1087: end if;
1088: l_charges_interface_status := 'FAILED';

Line 1202: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1198: l_processed_flag := 'COMPLETED W/ERRORS';
1199: if l_msg_count > 0 then --1
1200: FOR counter IN REVERSE 1..l_msg_count
1201: LOOP
1202: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1203: fnd_file.put_line(fnd_file.log,l_msg_data);
1204: log('main','error1:'||l_msg_data);
1205: end loop;
1206: end if; --1

Line 1353: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1349: l_processed_flag := 'COMPLETED W/ERRORS';
1350: if l_msg_count > 0 then
1351: FOR counter IN REVERSE 1..l_msg_count
1352: LOOP
1353: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1354: l_position := instr(l_msg_data, 'ERROR_EXPLANATION');
1355: l_msg_data := substr(l_msg_data, l_position);
1356: fnd_file.put_line(fnd_file.log,l_msg_data);
1357: log('main','error'||l_msg_data);

Line 1484: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1480: retcode := 1;
1481: l_processed_flag := 'COMPLETED W/ERRORS';
1482: if l_msg_count > 0 then
1483: FOR counter IN REVERSE 1..l_msg_count LOOP
1484: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1485: l_position := instr(l_msg_data, 'ERROR_EXPLANATION');
1486: l_msg_data := substr(l_msg_data, l_position);
1487: fnd_file.put_line(fnd_file.log,l_msg_data);
1488: log('main','l_msg_data:'||l_msg_data);

Line 1590: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1586: retcode := 1;
1587:
1588: if l_msg_count > 0 then
1589: FOR counter IN REVERSE 1..l_msg_count LOOP
1590: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1591: fnd_file.put_line(fnd_file.log,l_msg_data);
1592: log('main','error2:'||l_msg_data);
1593: end loop;
1594: end if;

Line 1700: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);

1696: retcode := 1;
1697:
1698: if l_msg_count > 0 then
1699: FOR counter IN REVERSE 1..l_msg_count LOOP
1700: fnd_msg_pub.get(counter,FND_API.G_FALSE,l_msg_data,l1);
1701: fnd_file.put_line(fnd_file.log,l_msg_data);
1702: log('main','error3:'||l_msg_data);
1703: end loop;
1704: end if;

Line 1721: FND_MSG_PUB.ADD;

1717: log('main','l_return_status:'||l_return_status||' l_record_lock:'||l_record_lock);
1718: If l_return_status = FND_API.G_RET_STS_ERROR and l_record_lock = 'Y' THEN
1719: FND_MESSAGE.Set_Name('CSF','CSF_DEBRIEF_CONC_PROG_RECLOCK');
1720: FND_MESSAGE.Set_Token('DEBRIEF_NUMBER',l_debrief_number);
1721: FND_MSG_PUB.ADD;
1722: l_msg_data := FND_MSG_PUB.Get(p_msg_index => fnd_msg_pub.G_LAST,
1723: p_encoded => FND_API.G_FALSE);
1724: fnd_file.put_line(fnd_file.log, l_msg_data);
1725: l_conc_result := fnd_concurrent.set_completion_status('WARNING','Warning');

Line 1722: l_msg_data := FND_MSG_PUB.Get(p_msg_index => fnd_msg_pub.G_LAST,

1718: If l_return_status = FND_API.G_RET_STS_ERROR and l_record_lock = 'Y' THEN
1719: FND_MESSAGE.Set_Name('CSF','CSF_DEBRIEF_CONC_PROG_RECLOCK');
1720: FND_MESSAGE.Set_Token('DEBRIEF_NUMBER',l_debrief_number);
1721: FND_MSG_PUB.ADD;
1722: l_msg_data := FND_MSG_PUB.Get(p_msg_index => fnd_msg_pub.G_LAST,
1723: p_encoded => FND_API.G_FALSE);
1724: fnd_file.put_line(fnd_file.log, l_msg_data);
1725: l_conc_result := fnd_concurrent.set_completion_status('WARNING','Warning');
1726: exit;

Line 1741: fnd_msg_pub.add;

1737:
1738: exception
1739: when e_no_header_id then
1740: fnd_message.set_name('CSF', 'CSF_DEBRIEF_MISSING_HEADER_ID');
1741: fnd_msg_pub.add;
1742: fnd_msg_pub.get(1,FND_API.G_FALSE,l_msg_data,l1);
1743: fnd_file.put_line(fnd_file.log,l_msg_data);
1744: log('main','error4:'||l_msg_data);
1745: retcode := 2;

Line 1742: fnd_msg_pub.get(1,FND_API.G_FALSE,l_msg_data,l1);

1738: exception
1739: when e_no_header_id then
1740: fnd_message.set_name('CSF', 'CSF_DEBRIEF_MISSING_HEADER_ID');
1741: fnd_msg_pub.add;
1742: fnd_msg_pub.get(1,FND_API.G_FALSE,l_msg_data,l1);
1743: fnd_file.put_line(fnd_file.log,l_msg_data);
1744: log('main','error4:'||l_msg_data);
1745: retcode := 2;
1746: errbuf := l_msg_data;

Line 2015: fnd_msg_pub.add;

2011: end if;
2012: exception when others then
2013: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
2014: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
2015: fnd_msg_pub.add;
2016: x_return_status := fnd_api.g_ret_sts_unexp_error;
2017: END DEBRIEF_STATUS_CHECK ;
2018:
2019: End Csf_Debrief_Update_pkg;