DBA Data[Home] [Help]

PACKAGE: APPS.CS_LIST_PRICE_PKG

Source


1 package cs_list_price_pkg AUTHID CURRENT_USER as
2 /* $Header: csxlists.pls 115.0 99/07/16 09:08:29 porting ship $ */
3 
4 	PROCEDURE  call_fetch_list_price (
5 	p_inventory_item_id		IN 	NUMBER,
6  	p_price_list_id		IN 	NUMBER,
7  	p_unit_code			IN 	VARCHAR2,
8  	p_service_duration		IN 	NUMBER,
9  	p_item_Type_code		IN 	VARCHAR2 ,
10  	p_pricing_attribute1	IN 	VARCHAR2 ,
11  	p_pricing_attribute2	IN 	VARCHAR2 ,
12  	p_pricing_attribute3	IN 	VARCHAR2 ,
13  	p_pricing_attribute4	IN 	VARCHAR2 ,
14  	p_pricing_attribute5	IN 	VARCHAR2 ,
15  	p_pricing_attribute6	IN 	VARCHAR2 ,
16  	p_pricing_attribute7	IN 	VARCHAR2 ,
17  	p_pricing_attribute8	IN 	VARCHAR2 ,
18  	p_pricing_attribute9	IN 	VARCHAR2 ,
19  	p_pricing_attribute10	IN 	VARCHAR2 ,
20  	p_pricing_attribute11	IN 	VARCHAR2 ,
21  	p_pricing_attribute12	IN 	VARCHAR2 ,
22  	p_pricing_attribute13	IN 	VARCHAR2 ,
23  	p_pricing_attribute14	IN 	VARCHAR2 ,
24  	p_pricing_attribute15	IN 	VARCHAR2 ,
25 	p_base_price			IN 	NUMBER ,
26 	p_price_list_id_out		OUT 	NUMBER ,
27 	p_prc_method_code_out	OUT 	VARCHAR2 ,
28 	p_list_price			OUT 	NUMBER ,
29 	p_list_percent			OUT 	NUMBER ,
30 	p_rounding_factor		OUT 	NUMBER ,
31 	p_error_flag			OUT VARCHAR2,
32 	p_error_message		OUT VARCHAR2);
33 
34 END cs_list_price_pkg;