DBA Data[Home] [Help]

APPS.CSD_BULK_RECEIVE_PVT dependencies on FND_MSG_PUB

Line 1735: FND_MSG_PUB.add_exc_msg(p_pkg_name => G_PKG_NAME ,

1731: WHEN OTHERS THEN
1732: -- Add Unexpected Error to Message List, here SQLERRM is used for
1733: -- getting the error
1734:
1735: FND_MSG_PUB.add_exc_msg(p_pkg_name => G_PKG_NAME ,
1736: p_procedure_name => l_procedure_name );
1737:
1738: -- Get the count of the Messages from the message list, if the count is 1
1739: -- get the message as well

Line 1741: FND_MSG_PUB.count_and_get( p_encoded => FND_API.G_FALSE,

1737:
1738: -- Get the count of the Messages from the message list, if the count is 1
1739: -- get the message as well
1740:
1741: FND_MSG_PUB.count_and_get( p_encoded => FND_API.G_FALSE,
1742: p_count => l_msg_count,
1743: p_data => l_msg_data);
1744:
1745: IF l_msg_count = 1 THEN

Line 1756: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );

1752: -- message list, retrieve the messages and write it to the log file
1753:
1754: FOR l_msg_ctr IN 1..l_msg_count
1755: LOOP
1756: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );
1757: fnd_file.put_line( fnd_file.log, l_msg_data);
1758: END LOOP;
1759:
1760: END IF;