DBA Data[Home] [Help]

APPS.CSD_WIP_JOB_PVT dependencies on FND_FILE

Line 1617: fnd_file.put_line(fnd_file.log, l_msg_data );

1613:
1614: IF (l_req_id = 0 ) THEN
1615:
1616: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_SUBMIT_FAILURE');
1617: fnd_file.put_line(fnd_file.log, l_msg_data );
1618:
1619: IF ( l_stat_level >= l_debug_level ) then
1620: FND_LOG.STRING( l_stat_level,
1621: l_mod_name||'requestfailure',

Line 1660: fnd_file.put_line(fnd_file.log, l_msg_data );

1656:
1657: IF NOT l_boolvar THEN
1658:
1659: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_WAIT_FAILURE');
1660: fnd_file.put_line(fnd_file.log, l_msg_data );
1661:
1662:
1663: IF ( l_stat_level >= l_debug_level ) then
1664: FND_LOG.STRING( l_stat_level,

Line 1717: fnd_file.put_line( fnd_file.log,l_msg_data);

1713: -- the concurrent request log file and raise exception to exit
1714:
1715: IF l_msg_count = 1 THEN
1716:
1717: fnd_file.put_line( fnd_file.log,l_msg_data);
1718:
1719: ELSIF l_msg_count > 1 THEN
1720:
1721: -- If the message count is greater than 1, loop through the

Line 1727: fnd_file.put_line( fnd_file.log, l_msg_data);

1723:
1724: FOR l_msg_ctr IN 1..l_msg_count
1725: LOOP
1726: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );
1727: fnd_file.put_line( fnd_file.log, l_msg_data);
1728: END LOOP;
1729:
1730: END IF;
1731:

Line 1831: fnd_file.put_line(fnd_file.log,l_msg_data );

1827: -- WIP Mass Load did not complete successfully, write error message to log file
1828: -- and raise exception to exit
1829:
1830: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_COMPLETION_FAILURE');
1831: fnd_file.put_line(fnd_file.log,l_msg_data );
1832:
1833: IF ( l_stat_level >= l_debug_level ) then
1834: FND_LOG.STRING( l_stat_level,
1835: l_mod_name||'completionfailure',

Line 1887: fnd_file.put_line( fnd_file.log, l_msg_data);

1883: p_data => l_msg_data);
1884:
1885: IF l_msg_count = 1 THEN
1886:
1887: fnd_file.put_line( fnd_file.log, l_msg_data);
1888:
1889: ELSIF l_msg_count > 1 THEN
1890:
1891: -- If the message count is greater than 1, loop through the

Line 1897: fnd_file.put_line( fnd_file.log, l_msg_data);

1893:
1894: FOR l_msg_ctr IN 1..l_msg_count
1895: LOOP
1896: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );
1897: fnd_file.put_line( fnd_file.log, l_msg_data);
1898: END LOOP;
1899:
1900: END IF;
1901: