DBA Data[Home] [Help]

PACKAGE: APPS.WSH_BOLS_UTIL_PKG

Source


1 PACKAGE WSH_BOLS_UTIL_PKG AUTHID CURRENT_USER AS
2 /* $Header: WSHBLUTS.pls 115.2 2002/11/12 01:15:49 nparikh ship $ */
3 
4 -- purpose: get the container contents information for master
5 --          container
6 -- parameters: p_master_container_id = wsh_delivery_detail_id
7 --             p_output_mode = 'WEB' or 'REPORT'
8 --             p_description_mode = 'D', 'F', or 'B'
9 --             p_organization_id (or warehouse id)
10 --             x_data_item_classification, for the container
11 --             x_container_contents, for the container
12 --             x_hazard_code, for the container
13 --             x_return_status
14 
15 
16 PROCEDURE get_master_container_contents
17   (p_master_container_id IN NUMBER,
18    p_output_mode IN VARCHAR2,
19    p_description_mode IN VARCHAR2,
20    p_organization_id IN NUMBER,
21    x_data_item_classification IN OUT NOCOPY  VARCHAR2,
22    x_container_contents IN OUT NOCOPY  VARCHAR2,
23    x_hazard_code IN OUT NOCOPY  VARCHAR2,
24    x_num_of_packages IN OUT NOCOPY  NUMBER,
25    x_return_status OUT NOCOPY  VARCHAR2
26    );
27 
28 
29 END WSH_BOLS_UTIL_PKG;