DBA Data[Home] [Help]

APPS.INV_TRANSACTION_FLOW_PUB dependencies on MTL_SYSTEM_ITEMS_B

Line 3937: QP_PRICING_ATTRIBUTES QPA, MTL_SYSTEM_ITEMS_B MSI

3933: /*Bug: 5054047 Modified the SQL*/
3934: SELECT SPLL.operand, substr(SPL.currency_code, 1, 15), msi.primary_uom_code
3935: INTO l_transfer_price, l_invoice_currency_code, l_primary_uom
3936: FROM QP_LIST_HEADERS_B SPL, QP_LIST_LINES SPLL,
3937: QP_PRICING_ATTRIBUTES QPA, MTL_SYSTEM_ITEMS_B MSI
3938: WHERE MSI.organization_id = l_organization_id
3939: AND MSI.inventory_item_id = p_inventory_item_id
3940: AND SPL.list_header_id = p_price_list_id
3941: AND SPLL.list_header_id = SPL.list_header_id

Line 4528: from mtl_system_items_b

4524: print_Debug('Get the base_item_id for the inventory_item_id ' || p_inventory_item_id, 'GET_TRANSFER_PRICE');
4525: BEGIN
4526: select nvl(base_item_id, 0)
4527: into l_base_item
4528: from mtl_system_items_b
4529: where inventory_item_id = p_inventory_item_id
4530: and organization_id = l_organization_id;
4531:
4532: EXCEPTION