DBA Data[Home] [Help]

PACKAGE: APPS.CTO_CUSTOM_LIST_PRICE_PK

Source


1 package CTO_CUSTOM_LIST_PRICE_PK AUTHID CURRENT_USER as
2 /* $Header: CTOCULPS.pls 115.3 2002/05/08 11:47:56 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_list_Price(
15 	pModelLineId        in      number,                                  -- Model Line Id in oe_order_lines_all
16         pInventory_item_id  in      Number,
17         pOrganization_id    in      Number)
18 Return Number;
19 
20 end CTO_CUSTOM_LIST_PRICE_PK;