DBA Data[Home] [Help]

APPS.INV_MGD_MVT_PO_MDTR dependencies on FND_FILE

Line 1527: FND_FILE.put_line(FND_FILE.log, 'x_movement_transaction.order_line_id 1 is : '||x_movement_transaction.order_line_id);

1523:
1524: --SO order uom maynot be same as receipt qty uom,thus when calculate document
1525: --line ext value, we need to consider uom conversion
1526: /*bug 8435314 Check for config Item*/
1527: FND_FILE.put_line(FND_FILE.log, 'x_movement_transaction.order_line_id 1 is : '||x_movement_transaction.order_line_id);
1528: Open l_rma_config;
1529: Fetch l_rma_config into l_item_type_code;
1530: Close l_rma_config;
1531: --Get document unit price for CTO item

Line 1532: FND_FILE.put_line(FND_FILE.log, 'The Item is : '||X_movement_transaction.inventory_item_id || ' '||l_item_type_code);

1528: Open l_rma_config;
1529: Fetch l_rma_config into l_item_type_code;
1530: Close l_rma_config;
1531: --Get document unit price for CTO item
1532: FND_FILE.put_line(FND_FILE.log, 'The Item is : '||X_movement_transaction.inventory_item_id || ' '||l_item_type_code);
1533: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 1 is : '||l_unit_price);
1534: IF l_item_type_code = 'CONFIG'
1535: THEN
1536: --Call BOM procedure to get unit selling price

Line 1533: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 1 is : '||l_unit_price);

1529: Fetch l_rma_config into l_item_type_code;
1530: Close l_rma_config;
1531: --Get document unit price for CTO item
1532: FND_FILE.put_line(FND_FILE.log, 'The Item is : '||X_movement_transaction.inventory_item_id || ' '||l_item_type_code);
1533: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 1 is : '||l_unit_price);
1534: IF l_item_type_code = 'CONFIG'
1535: THEN
1536: --Call BOM procedure to get unit selling price
1537: FND_FILE.put_line(FND_FILE.log, 'l_So_line_Id 1 is : '||l_So_line_Id);

Line 1537: FND_FILE.put_line(FND_FILE.log, 'l_So_line_Id 1 is : '||l_So_line_Id);

1533: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 1 is : '||l_unit_price);
1534: IF l_item_type_code = 'CONFIG'
1535: THEN
1536: --Call BOM procedure to get unit selling price
1537: FND_FILE.put_line(FND_FILE.log, 'l_So_line_Id 1 is : '||l_So_line_Id);
1538: CTO_PUBLIC_UTILITY_PK.Get_Selling_Price
1539: ( p_config_line_id => l_So_line_Id
1540: , x_unit_selling_price => l_unit_price
1541: , x_qty_selling_price => l_qty_selling_price

Line 1546: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 2 is : '||l_unit_price);

1542: , x_currency_code => l_currency_code
1543: , x_return_status => l_return_status
1544: , x_error_code => l_error_code
1545: );
1546: FND_FILE.put_line(FND_FILE.log, 'l_unit_price 2 is : '||l_unit_price);
1547: END IF;
1548: /*End bug 8435314 */
1549: IF x_movement_transaction.transaction_uom_code <> l_order_uom
1550: THEN