DBA Data[Home] [Help]

APPS.WSH_SHIPMENT_REQUEST_PKG dependencies on FND_FILE

Line 700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);

696: END IF;
697:
698: -- To Print in Concurrent Request Output File
699: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);
701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);

Line 701: FND_FILE.put_line(FND_FILE.output, '');

697:
698: -- To Print in Concurrent Request Output File
699: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);
701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);

Line 702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');

698: -- To Print in Concurrent Request Output File
699: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);
701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);
706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);

Line 703: FND_FILE.put_line(FND_FILE.output,'===================================');

699: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);
701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);
706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);
707: END IF;

Line 704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);

700: FND_FILE.put_line(FND_FILE.output, 'Time taken by OE_ORDER_GRP.Process_Order API alone in secs => ' || g_po_total_time);
701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);
706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);
707: END IF;
708: --

Line 705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);

701: FND_FILE.put_line(FND_FILE.output, '');
702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);
706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);
707: END IF;
708: --
709:

Line 706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);

702: FND_FILE.put_line(FND_FILE.output, 'Summary:-');
703: FND_FILE.put_line(FND_FILE.output,'===================================');
704: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests selected for processing => ' || l_total);
705: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests processed successfully => ' || l_success);
706: FND_FILE.put_line(FND_FILE.output, 'No. of Shipment Requests errored during processing => ' || l_errors);
707: END IF;
708: --
709:
710: --

Line 1001: FND_FILE.put_line(FND_FILE.output, '**** Processing document ' || l_transaction_rec.document_number

997: --
998:
999: -- To Print in Concurrent Request Output File
1000: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
1001: FND_FILE.put_line(FND_FILE.output, '**** Processing document ' || l_transaction_rec.document_number
1002: || ' with revision ' || l_transaction_rec.document_revision
1003: || ', action type ' || l_transaction_rec.action_type || ' ****' );
1004: END IF;
1005: --

Line 2317: FND_FILE.put_line(FND_FILE.output, ' Process Shipment Request failed to process document number: ' || l_transaction_rec.document_number);

2313: IF l_temp_status in ( 'INVALID', 'INVALID_HEADER' ) THEN --{
2314: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;
2315: -- To Print in Concurrent Request Output File
2316: IF FND_GLOBAL.Conc_Request_Id > 0 THEN
2317: FND_FILE.put_line(FND_FILE.output, ' Process Shipment Request failed to process document number: ' || l_transaction_rec.document_number);
2318: END IF;
2319: --
2320: --Rollback the transaction
2321: IF l_debug_on THEN