DBA Data[Home] [Help]

PACKAGE: APPS.CTO_CUSTOM_PURCHASE_PRICE_PK

Source


1 package CTO_CUSTOM_PURCHASE_PRICE_PK AUTHID CURRENT_USER as
2 /* $Header: CTOCUPPS.pls 115.0 2002/03/26 21:22:41 pkm ship        $ */
3 
4 
5 /*---------------------------------------------------------------------------+
6     This function tries to get the price list for the given model based ion the
7     configurations selected in the oe_order_lines. The price list can be
8     Org dependent. So this fucntion will take organization_id in the in parameteres.
9     Note:By the time this function is called the config item is not yet created.
10     So all the reference needs to go with the model item and the options selected
11     in the sales order. The list price needs to be calculated per unit.
12 +----------------------------------------------------------------------------*/
13 
14 function Get_purchase_Price(
15         p_item_id           in      Number,
16 	p_vendor_id         in      Number,
17 	p_vendor_site_id    in      Number)
18 Return boolean;
19 
20 end CTO_CUSTOM_PURCHASE_PRICE_PK;