DBA Data[Home] [Help]

PACKAGE: APPS.INV_LABEL_PUB

Source


1 PACKAGE INV_LABEL_PUB AUTHID CURRENT_USER AS
2 /* $Header: INVPLABS.pls 120.1 2005/06/20 23:24:18 appldev ship $ */
3 
4 -- Table type definition for an array of transaction_id reocrds and input parameters
5 TYPE transaction_id_rec_type IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
6 
7 txn_id_null_rec transaction_id_rec_type;
8 
9 PROCEDURE print_label
10 (
11 	x_return_status 	OUT NOCOPY VARCHAR2     -- NOCOPY added as a part of Bug# 4380449
12 ,	x_msg_count		OUT NOCOPY NUMBER       -- NOCOPY added as a part of Bug# 4380449
13 ,	x_msg_data		OUT NOCOPY VARCHAR2     -- NOCOPY added as a part of Bug# 4380449
14 ,	x_label_status		OUT NOCOPY VARCHAR2     -- NOCOPY added as a part of Bug# 4380449
15 ,	p_api_version   	IN  NUMBER := 1.0
16 ,	p_init_msg_list		IN  VARCHAR2 := fnd_api.g_false
17 ,	p_commit	      	IN  VARCHAR2 := fnd_api.g_false
18 ,	p_business_flow_code	IN  NUMBER DEFAULT NULL
19 ,	p_transaction_id	IN  INV_LABEL_PUB.transaction_id_rec_type default INV_LABEL_PUB.txn_id_null_rec
20 ,       p_transaction_identifier IN NUMBER DEFAULT NULL
21 );
22 
23 END INV_LABEL_PUB;