DBA Data[Home] [Help]

PACKAGE: APPS.WSH_TPA_SELECTOR_PKG

Source


1 PACKAGE WSH_TPA_SELECTOR_PKG AUTHID CURRENT_USER AS
2 /* $Header: WSHTPSLS.pls 115.4 2002/11/12 01:56:36 nparikh ship $ */
3 
4 --
5 -- Procedure:	DeliveryTP
6 -- Parameters:	p_delivery_id		Delivery being processed
7 --		x_customer_number	Standard TPS function attributes
8 -- 		x_ship_to_ece_locn_code
9 --		x_inter_ship_to_ece_locn_code
10 --		x_bill_to_ece_locn_code
11 --		x_tp_group_code
12 --
13 
14 PROCEDURE DeliveryTP (
15 	p_delivery_id			IN	NUMBER,
16 	x_customer_number		OUT NOCOPY 	VARCHAR2,
17 	x_ship_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
18 	x_inter_ship_to_ece_locn_code	OUT NOCOPY 	VARCHAR2,
19 	x_bill_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
20 	x_tp_group_code			OUT NOCOPY 	VARCHAR2);
21 --<TPA_TPS>
22 
23 --
24 -- Procedure:	ContainerTP
25 -- Parameters:	p_container_instance_id	Container being processed
26 --		x_customer_number	Standard TPS function attributes
27 -- 		x_ship_to_ece_locn_code
28 --		x_inter_ship_to_ece_locn_code
29 --		x_bill_to_ece_locn_code
30 --		x_tp_group_code
31 --
32 
33 PROCEDURE ContainerTP (
34 	p_container_instance_id		IN	NUMBER,
35 	x_customer_number		OUT NOCOPY 	VARCHAR2,
36 	x_ship_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
37 	x_inter_ship_to_ece_locn_code	OUT NOCOPY 	VARCHAR2,
38 	x_bill_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
39 	x_tp_group_code			OUT NOCOPY 	VARCHAR2);
40 --<TPA_TPS>
41 
42 --
43 -- Procedure:	DeliveryDetailTP
44 -- Parameters:	p_delivery_detail_id	Delivery Detail being processed
45 --		x_customer_number	Standard TPS function attributes
46 -- 		x_ship_to_ece_locn_code
47 --		x_inter_ship_to_ece_locn_code
48 --		x_bill_to_ece_locn_code
49 --		x_tp_group_code
50 --
51 
52 PROCEDURE DeliveryDetailTP (
53 	p_delivery_detail_id		IN	NUMBER,
54 	x_customer_number		OUT NOCOPY 	VARCHAR2,
55 	x_ship_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
56 	x_inter_ship_to_ece_locn_code	OUT NOCOPY 	VARCHAR2,
57 	x_bill_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
58 	x_tp_group_code			OUT NOCOPY 	VARCHAR2);
59 --<TPA_TPS>
60 
61 --
62 -- Procedure:	FreightCostTP
63 -- Parameters:	p_delivery_id		Delivery being processed
64 --		p_container_instance_id Container being processed
65 --		x_customer_number	Standard TPS function attributes
66 -- 		x_ship_to_ece_locn_code
67 --		x_inter_ship_to_ece_locn_code
68 --		x_bill_to_ece_locn_code
69 --		x_tp_group_code
70 --
71 
72 PROCEDURE FreightCostTP (
73 	p_delivery_id			IN	NUMBER,
74 	p_container_instance_id	IN	NUMBER,
75 	x_customer_number		OUT NOCOPY 	VARCHAR2,
76 	x_ship_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
77 	x_inter_ship_to_ece_locn_code	OUT NOCOPY 	VARCHAR2,
78 	x_bill_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
79 	x_tp_group_code			OUT NOCOPY 	VARCHAR2);
80 --<TPA_TPS>
81 
82 
83 --
84 -- Procedure:	DefaultTP
85 -- Parameters:	p_entity_id		entity id being processed
86 --		p_entity_type		entity type being processed. right now
87 --					it supports only 'DELIVERY'
88 --		x_customer_number	Standard TPS function attributes
89 -- 		x_ship_to_ece_locn_code
90 --		x_inter_ship_to_ece_locn_code
91 --		x_bill_to_ece_locn_code
92 --		x_tp_group_code
93 --
94 
95 PROCEDURE DefaultTP (
96 	p_entity_id			IN	NUMBER,
97 	p_entity_type			IN 	VARCHAR2,
98 	x_customer_number		OUT NOCOPY 	VARCHAR2,
99 	x_ship_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
100 	x_inter_ship_to_ece_locn_code	OUT NOCOPY 	VARCHAR2,
101 	x_bill_to_ece_locn_code		OUT NOCOPY 	VARCHAR2,
102 	x_tp_group_code			OUT NOCOPY 	VARCHAR2);
103 --<TPA_TPS>
104 
105 
106 END WSH_TPA_SELECTOR_PKG;