DBA Data[Home] [Help]

APPS.IGF_AP_SS_PKG dependencies on FND_MSG_PUB

Line 1191: FND_MSG_PUB.initialize;

1187: BEGIN
1188:
1189: SAVEPOINT SP_ISIR;
1190:
1191: FND_MSG_PUB.initialize;
1192: x_return_status := FND_API.G_RET_STS_SUCCESS;
1193:
1194: -- Fetch the modified ISIR details (Internal ISIR Record)
1195: OPEN c_isir_detials( p_mod_isir_id);

Line 1271: fnd_msg_pub.count_and_get(

1267:
1268: --Compare the Correction ISIR Created now with the Payment ISIR
1269: igf_aw_gen_002.compare_isirs(l_payment_isir_id, p_mod_isir_id, p_cal_type, p_sequence_number,p_corr_status);
1270:
1271: fnd_msg_pub.count_and_get(
1272: p_encoded => fnd_api.g_false,
1273: p_count => x_msg_count,
1274: p_data => x_msg_data
1275: );

Line 1297: fnd_msg_pub.count_and_get(

1293: WHEN OTHERS THEN
1294:
1295: ROLLBACK TO SP_ISIR;
1296: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1297: fnd_msg_pub.count_and_get(
1298: p_encoded => fnd_api.g_false,
1299: p_count => x_msg_count,
1300: p_data => x_msg_data
1301: );

Line 1347: FND_MSG_PUB.initialize;

1343: BEGIN
1344:
1345: SAVEPOINT SP_ISIR;
1346:
1347: FND_MSG_PUB.initialize;
1348: x_return_status := FND_API.G_RET_STS_SUCCESS;
1349:
1350: -- Fetch the modified ISIR details
1351: OPEN c_isir_detials( p_mod_isir_id);

Line 1363: fnd_msg_pub.add;

1359:
1360: --Do not proceed further if transaction number >99
1361: IF l_trans > 99 THEN
1362: fnd_message.set_name('IGF','IGF_AP_SIM_ISIR_MAX');
1363: fnd_msg_pub.add;
1364: x_return_status := fnd_api.g_ret_sts_error;
1365:
1366: ELSE
1367:

Line 1378: fnd_msg_pub.count_and_get(

1374: update_isir( isir_detials_rec, p_mod_isir_id, isir_detials_rec.row_id);
1375:
1376: END IF;
1377:
1378: fnd_msg_pub.count_and_get(
1379: p_encoded => fnd_api.g_false,
1380: p_count => x_msg_count,
1381: p_data => x_msg_data
1382: );

Line 1389: fnd_msg_pub.count_and_get(

1385: WHEN OTHERS THEN
1386:
1387: ROLLBACK TO SP_ISIR;
1388: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1389: fnd_msg_pub.count_and_get(
1390: p_encoded => fnd_api.g_false,
1391: p_count => x_msg_count,
1392: p_data => x_msg_data
1393: );

Line 1451: FND_MSG_PUB.initialize;

1447: -- l_get_ver_data_rec cur_get_ver_data%ROWTYPE;
1448:
1449: BEGIN
1450:
1451: FND_MSG_PUB.initialize;
1452: x_return_status := FND_API.G_RET_STS_SUCCESS;
1453:
1454: SAVEPOINT SP_ISIR;
1455:

Line 1818: FOR i IN 1..fnd_msg_pub.count_msg LOOP

1814: ) ;
1815: END IF; -- End of Return status 'S'/'W'
1816:
1817: IF x_return_status = 'W' THEN
1818: FOR i IN 1..fnd_msg_pub.count_msg LOOP
1819: l_msg_str := l_msg_str ||' '|| to_char(i) ||'. '|| fnd_msg_pub.get(i,'F');
1820: END LOOP;
1821:
1822:

Line 1819: l_msg_str := l_msg_str ||' '|| to_char(i) ||'. '|| fnd_msg_pub.get(i,'F');

1815: END IF; -- End of Return status 'S'/'W'
1816:
1817: IF x_return_status = 'W' THEN
1818: FOR i IN 1..fnd_msg_pub.count_msg LOOP
1819: l_msg_str := l_msg_str ||' '|| to_char(i) ||'. '|| fnd_msg_pub.get(i,'F');
1820: END LOOP;
1821:
1822:
1823: -- Append the last Message

Line 1834: fnd_msg_pub.count_and_get(

1830: END IF;
1831:
1832: ELSE
1833:
1834: fnd_msg_pub.count_and_get(
1835: p_encoded => fnd_api.g_false,
1836: p_count => x_msg_count,
1837: p_data => l_msg_str
1838: );

Line 1859: fnd_msg_pub.count_and_get(

1855: IF FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
1856: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'igf.plsql.igf_ap_ss_pkg.compute_efc.exception:FND_API.G_EXC_ERROR',SQLERRM);
1857: END IF;
1858: x_return_status := FND_API.G_RET_STS_ERROR;
1859: fnd_msg_pub.count_and_get(
1860: p_count => x_msg_count,
1861: p_data => x_msg_data
1862: );
1863:

Line 1870: fnd_msg_pub.count_and_get(

1866: IF FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
1867: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'igf.plsql.igf_ap_ss_pkg.compute_efc.exception:FND_API.G_EXC_UNEXPECTED_ERROR',SQLERRM);
1868: END IF;
1869: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1870: fnd_msg_pub.count_and_get(
1871: p_count => x_msg_count,
1872: p_data => x_msg_data
1873: );
1874:

Line 1881: fnd_msg_pub.count_and_get(

1877: IF FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
1878: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'igf.plsql.igf_ap_ss_pkg.compute_efc.exception:OTHERS',SQLERRM);
1879: END IF;
1880: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1881: fnd_msg_pub.count_and_get(
1882: p_encoded => fnd_api.g_false,
1883: p_count => x_msg_count,
1884: p_data => x_msg_data
1885: );