DBA Data[Home] [Help]

PACKAGE: APPS.ECE_INVENTORY

Source


1 PACKAGE ECE_INVENTORY AUTHID CURRENT_USER AS
2 -- $Header: ECEINVYS.pls 115.0 99/07/17 05:19:16 porting ship $
3 
4 PROCEDURE GET_ITEM_NUMBER (
5 	i_item_id 		IN 	NUMBER,
6 	i_org_id		IN	NUMBER,
7 	o_item_number 		OUT 	VARCHAR2,
8 	o_attribute_category 	OUT 	VARCHAR2,
9 	o_attribute_1		OUT	VARCHAR2,
10 	o_attribute_2		OUT	VARCHAR2,
11 	o_attribute_3		OUT	VARCHAR2,
12 	o_attribute_4		OUT	VARCHAR2,
13 	o_attribute_5		OUT	VARCHAR2,
14 	o_attribute_6		OUT	VARCHAR2,
15 	o_attribute_7		OUT	VARCHAR2,
16 	o_attribute_8		OUT	VARCHAR2,
17 	o_attribute_9		OUT	VARCHAR2,
18 	o_attribute_10		OUT	VARCHAR2,
19 	o_attribute_11		OUT	VARCHAR2,
20 	o_attribute_12		OUT	VARCHAR2,
21 	o_attribute_13		OUT	VARCHAR2,
22 	o_attribute_14		OUT	VARCHAR2,
23 	o_attribute_15		OUT	VARCHAR2);
24 
25 PROCEDURE GET_ITEM_LOCATION (
26 	i_inventory_location_id	IN 	NUMBER,
27 	i_organization_id	IN	NUMBER,
28 	o_location 		OUT 	VARCHAR2);
29 
30 END ECE_INVENTORY;