DBA Data[Home] [Help]

APPS.CSD_WIP_JOB_PVT dependencies on FND_FILE

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

1522:
1523: IF (l_req_id = 0 ) THEN
1524:
1525: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_SUBMIT_FAILURE');
1526: fnd_file.put_line(fnd_file.log, l_msg_data );
1527:
1528: IF ( l_stat_level >= l_debug_level ) then
1529: FND_LOG.STRING( l_stat_level,
1530: l_mod_name||'requestfailure',

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

1565:
1566: IF NOT l_boolvar THEN
1567:
1568: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_WAIT_FAILURE');
1569: fnd_file.put_line(fnd_file.log, l_msg_data );
1570:
1571:
1572: IF ( l_stat_level >= l_debug_level ) then
1573: FND_LOG.STRING( l_stat_level,

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

1622: -- the concurrent request log file and raise exception to exit
1623:
1624: IF l_msg_count = 1 THEN
1625:
1626: fnd_file.put_line( fnd_file.log,l_msg_data);
1627:
1628: ELSIF l_msg_count > 1 THEN
1629:
1630: -- If the message count is greater than 1, loop through the

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

1632:
1633: FOR l_msg_ctr IN 1..l_msg_count
1634: LOOP
1635: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );
1636: fnd_file.put_line( fnd_file.log, l_msg_data);
1637: END LOOP;
1638:
1639: END IF;
1640:

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

1661: -- WIP Mass Load did not complete successfully, write error message to log file
1662: -- and raise exception to exit
1663:
1664: l_msg_data := FND_MESSAGE.GET_STRING('CSD','CSD_WICMLP_COMPLETION_FAILURE');
1665: fnd_file.put_line(fnd_file.log,l_msg_data );
1666:
1667: IF ( l_stat_level >= l_debug_level ) then
1668: FND_LOG.STRING( l_stat_level,
1669: l_mod_name||'completionfailure',

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

1717: p_data => l_msg_data);
1718:
1719: IF l_msg_count = 1 THEN
1720:
1721: fnd_file.put_line( fnd_file.log, l_msg_data);
1722:
1723: ELSIF l_msg_count > 1 THEN
1724:
1725: -- If the message count is greater than 1, loop through the

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

1727:
1728: FOR l_msg_ctr IN 1..l_msg_count
1729: LOOP
1730: l_msg_data := fnd_msg_pub.get(l_msg_ctr, FND_API.G_FALSE );
1731: fnd_file.put_line( fnd_file.log, l_msg_data);
1732: END LOOP;
1733:
1734: END IF;
1735: