DBA Data[Home] [Help]

APPS.HZ_MAP_PARTY_PUB dependencies on FND_MSG_PUB

Line 1315: FND_MSG_PUB.initialize;

1311: END IF;
1312:
1313: --Initialize message list if p_init_msg_list is set to TRUE.
1314: IF FND_API.to_Boolean(p_init_msg_list) THEN
1315: FND_MSG_PUB.initialize;
1316: END IF;
1317:
1318: --Initialize API return status to success.
1319: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1750: FND_MSG_PUB.Count_And_Get(

1746: store_error(
1747: p_status => 'E1',
1748: p_party_interface_id => l_interface_rec.party_interface_id);
1749:
1750: FND_MSG_PUB.Count_And_Get(
1751: p_encoded => FND_API.G_FALSE,
1752: p_count => x_msg_count,
1753: p_data => x_msg_data);
1754:

Line 1771: FND_MSG_PUB.Count_And_Get(

1767: store_error(
1768: p_status => 'E1',
1769: p_party_interface_id => l_interface_rec.party_interface_id);
1770:
1771: FND_MSG_PUB.Count_And_Get(
1772: p_encoded => FND_API.G_FALSE,
1773: p_count => x_msg_count,
1774: p_data => x_msg_data);
1775:

Line 1785: FND_MSG_PUB.ADD;

1781: arp_util.debug('HZ_MAP_PARTY_PUB.MAP: OTHERS EXCEPTION');
1782:
1783: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
1784: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
1785: FND_MSG_PUB.ADD;
1786:
1787: do_update_request_log(
1788: l_interface_rec.request_log_id,
1789: l_original_party_id,

Line 1796: FND_MSG_PUB.Count_And_Get(

1792: store_error(
1793: p_status => 'E1',
1794: p_party_interface_id => l_interface_rec.party_interface_id);
1795:
1796: FND_MSG_PUB.Count_And_Get(
1797: p_encoded => FND_API.G_FALSE,
1798: p_count => x_msg_count,
1799: p_data => x_msg_data);
1800:

Line 1821: FND_MSG_PUB.ADD;

1817: -- Bug 3107162
1818:
1819: IF l_any_rectification_in_batch THEN
1820: FND_MESSAGE.SET_NAME('AR','HZ_DNB_INVALID_NULL');
1821: FND_MSG_PUB.ADD;
1822: END IF;
1823:
1824: --Standard call to get message count and if count is 1, get message info.
1825: FND_MSG_PUB.Count_And_Get(

Line 1825: FND_MSG_PUB.Count_And_Get(

1821: FND_MSG_PUB.ADD;
1822: END IF;
1823:
1824: --Standard call to get message count and if count is 1, get message info.
1825: FND_MSG_PUB.Count_And_Get(
1826: p_encoded => FND_API.G_FALSE,
1827: p_count => x_msg_count,
1828: p_data => x_msg_data);
1829: arp_util.debug('HZ_MAP_PARTY_PUB.MAP (-)');

Line 6037: FND_MSG_PUB.ADD;

6033: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6034:
6035: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
6036: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
6037: FND_MSG_PUB.ADD;
6038:
6039: do_update_request_log(
6040: l_interface_rec.request_log_id,
6041: l_interface_rec.party_id,

Line 6658: FND_MSG_PUB.RESET;

6654: WHERE party_interface_id = p_party_interface_id;
6655:
6656: --reset the message table index used in reading messages to point to the top of the message table.
6657:
6658: FND_MSG_PUB.RESET;
6659:
6660: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
6661: -- SELECT hz_party_interface_errors_s.nextval INTO l_interface_error_id from dual;
6662:

Line 6660: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP

6656: --reset the message table index used in reading messages to point to the top of the message table.
6657:
6658: FND_MSG_PUB.RESET;
6659:
6660: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
6661: -- SELECT hz_party_interface_errors_s.nextval INTO l_interface_error_id from dual;
6662:
6663: l_message_text := FND_MSG_PUB.Get(
6664: p_encoded => FND_API.G_FALSE );

Line 6663: l_message_text := FND_MSG_PUB.Get(

6659:
6660: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
6661: -- SELECT hz_party_interface_errors_s.nextval INTO l_interface_error_id from dual;
6662:
6663: l_message_text := FND_MSG_PUB.Get(
6664: p_encoded => FND_API.G_FALSE );
6665:
6666: INSERT INTO hz_party_interface_errors (
6667: interface_error_id,

Line 6775: FND_MSG_PUB.RESET;

6771: errbuf := FND_MESSAGE.GET || ' ' || SQLERRM;
6772: retcode := 2;
6773: END IF;
6774: --reset the message table index used in reading messages to point to the top of the message table.
6775: FND_MSG_PUB.RESET;
6776:
6777: --write error message into log file
6778: FOR l_count IN 1..l_x_msg_count LOOP
6779: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,

Line 6779: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,

6775: FND_MSG_PUB.RESET;
6776:
6777: --write error message into log file
6778: FOR l_count IN 1..l_x_msg_count LOOP
6779: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,
6780: FND_API.G_FALSE);
6781: FND_FILE.PUT_LINE( FND_FILE.LOG,
6782: TO_CHAR(l_count) || ' : ' || l_msg_data );
6783: END LOOP;

Line 6877: FND_MSG_PUB.Count_And_Get(

6873: WHEN FND_API.G_EXC_ERROR THEN
6874:
6875: ROLLBACK TO create_lookup;
6876: x_return_status := FND_API.G_RET_STS_ERROR;
6877: FND_MSG_PUB.Count_And_Get(
6878: p_encoded => FND_API.G_FALSE,
6879: p_count => x_msg_count,
6880: p_data => x_msg_data);
6881:

Line 6886: FND_MSG_PUB.Count_And_Get(

6882: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
6883:
6884: ROLLBACK TO create_lookup ;
6885: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6886: FND_MSG_PUB.Count_And_Get(
6887: p_encoded => FND_API.G_FALSE,
6888: p_count => x_msg_count,
6889: p_data => x_msg_data);
6890:

Line 6897: FND_MSG_PUB.ADD;

6893: ROLLBACK TO create_lookup;
6894: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6895: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
6896: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
6897: FND_MSG_PUB.ADD;
6898: FND_MSG_PUB.Count_And_Get(
6899: p_encoded => FND_API.G_FALSE,
6900: p_count => x_msg_count,
6901: p_data => x_msg_data);

Line 6898: FND_MSG_PUB.Count_And_Get(

6894: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6895: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
6896: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
6897: FND_MSG_PUB.ADD;
6898: FND_MSG_PUB.Count_And_Get(
6899: p_encoded => FND_API.G_FALSE,
6900: p_count => x_msg_count,
6901: p_data => x_msg_data);
6902:

Line 7245: FND_MSG_PUB.ADD;

7241: WHEN OTHERS THEN
7242: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7243: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
7244: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
7245: FND_MSG_PUB.ADD;
7246: END create_dynamic_lookups;
7247:
7248: END HZ_MAP_PARTY_PUB;
7249: