DBA Data[Home] [Help]

APPS.GMF_GET_TRANSFER_PRICE_PUB dependencies on MTL_QP_PRICE

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

233: -- Will be used to determine which transfer_price routines to call for
234: -- advanced pricing.
235: --
236: -- For INTORG and REQ, THIS package will be used.
237: -- For INTORD we will use mtl_qp_price.get_transfer_price.
238: --
239: --===================================================================
240: g_xfer_source := p_transfer_source; /* INTORG, INTORD, REQ */
241:

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

1138:
1139: INV_IC_ORDER_PUB.G_LINE.from_organization_id := g_from_organization_id;
1140: INV_IC_ORDER_PUB.G_LINE.to_organization_id := g_to_organization_id;
1141:
1142: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: Calling MTL_QP_PRICE.get_transfer_price' ||
1143: ' with From Orgn: ' || g_from_organization_id ||
1144: ' To Orgn: ' || g_to_organization_id ||
1145: ' for order line id: ' || g_transaction_id ||
1146: ' itemID: ' || g_inventory_item_id);

Line 1148: x_transfer_price := MTL_QP_PRICE.get_transfer_price(

1144: ' To Orgn: ' || g_to_organization_id ||
1145: ' for order line id: ' || g_transaction_id ||
1146: ' itemID: ' || g_inventory_item_id);
1147:
1148: x_transfer_price := MTL_QP_PRICE.get_transfer_price(
1149: p_transaction_id => NULL,
1150: p_sell_ou_id => g_from_ou,
1151: p_ship_ou_id => g_to_ou,
1152: p_order_line_id => g_transaction_id,

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

1166: );
1167:
1168: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1169: IF (l_debug = 1) THEN
1170: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: MTL_QP_PRICE.get_transfer_price error ' );
1171: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: Error ='|| x_msg_data );
1172: END IF;
1173: RAISE FND_API.G_EXC_ERROR;
1174: END IF;

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

1173: RAISE FND_API.G_EXC_ERROR;
1174: END IF;
1175:
1176: print_debug('GMF_get_transfer_price_PUB.get_xfer_price_qp: ' ||
1177: 'Transfer Price from MTL_QP_PRICE.get_transfer_price: ' || x_transfer_price);
1178:
1179: ELSIF g_xfer_source in ('INTORG', 'INTREQ')
1180: THEN
1181: --