DBA Data[Home] [Help]

APPS.GMF_GET_TRANSFER_PRICE_PUB dependencies on MTL_QP_PRICE

Line 213: -- For INTORD we will use mtl_qp_price.get_transfer_price.

209: -- Will be used to determine which transfer_price routines to call for
210: -- advanced pricing.
211: --
212: -- For INTORG and REQ, THIS package will be used.
213: -- For INTORD we will use mtl_qp_price.get_transfer_price.
214: --
215: --===================================================================
216: g_xfer_source := p_transfer_source; /* INTORG, INTORD, REQ */
217:

Line 1058: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: Calling MTL_QP_PRICE.get_transfer_price' ||

1054:
1055: INV_IC_ORDER_PUB.G_LINE.from_organization_id := g_from_organization_id;
1056: INV_IC_ORDER_PUB.G_LINE.to_organization_id := g_to_organization_id;
1057:
1058: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: Calling MTL_QP_PRICE.get_transfer_price' ||
1059: ' with From Orgn: ' || g_from_organization_id ||
1060: ' To Orgn: ' || g_to_organization_id ||
1061: ' for order line id: ' || g_transaction_id ||
1062: ' itemID: ' || g_inventory_item_id);

Line 1064: x_transfer_price := MTL_QP_PRICE.get_transfer_price(

1060: ' To Orgn: ' || g_to_organization_id ||
1061: ' for order line id: ' || g_transaction_id ||
1062: ' itemID: ' || g_inventory_item_id);
1063:
1064: x_transfer_price := MTL_QP_PRICE.get_transfer_price(
1065: p_transaction_id => NULL,
1066: p_sell_ou_id => g_from_ou,
1067: p_ship_ou_id => g_to_ou,
1068: p_order_line_id => g_transaction_id,

Line 1086: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: MTL_QP_PRICE.get_transfer_price error ' );

1082: );
1083:
1084: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1085: IF (l_debug = 1) THEN
1086: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: MTL_QP_PRICE.get_transfer_price error ' );
1087: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: Error ='|| x_msg_data );
1088: END IF;
1089: RAISE FND_API.G_EXC_ERROR;
1090: END IF;

Line 1093: 'Transfer Price from MTL_QP_PRICE.get_transfer_price: ' || x_transfer_price);

1089: RAISE FND_API.G_EXC_ERROR;
1090: END IF;
1091:
1092: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: ' ||
1093: 'Transfer Price from MTL_QP_PRICE.get_transfer_price: ' || x_transfer_price);
1094:
1095: ELSIF g_xfer_source in ('INTORG', 'INTREQ')
1096: THEN
1097: --