DBA Data[Home] [Help]

APPS.WSH_CONTAINER_GRP dependencies on STANDARD

Line 26: -- 13) other standard parameters

22: -- 9) num_digits - precision for number of digits
23: -- 10) quantity - number of containers
24: -- 11) container_name - container name if creating 1 container
25: -- 12) table of container ids - out table of ids
26: -- 13) other standard parameters
27: --
28: -- Description: This procedure takes in a container item id or container item
29: -- name and other necessary parameters to create one or more containers and
30: -- creates the required containers. It returns a table of container instance

Line 31: -- ids (delivery detail ids) along with the standard out parameters.

27: --
28: -- Description: This procedure takes in a container item id or container item
29: -- name and other necessary parameters to create one or more containers and
30: -- creates the required containers. It returns a table of container instance
31: -- ids (delivery detail ids) along with the standard out parameters.
32: ------------------------------------------------------------------------------
33:
34: PROCEDURE Create_Containers (
35: -- Standard parameters

Line 35: -- Standard parameters

31: -- ids (delivery detail ids) along with the standard out parameters.
32: ------------------------------------------------------------------------------
33:
34: PROCEDURE Create_Containers (
35: -- Standard parameters
36: p_api_version IN NUMBER,
37: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
38: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
39: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

Line 69: -- 2) other standard parameters

65: -- Procedure: Update_Container
66: --
67: -- Parameters: 1) container_rec - container record of type
68: -- wsh_delivery_details_grp.changedattributerectype
69: -- 2) other standard parameters
70: --
71: -- Description: This procedure takes in a record of container attributes that
72: -- contains the name and delivery detail id of container to update the
73: -- container record in WSH_DELIVERY_DETAILS with the attributes input in the

Line 79: -- Standard parameters

75: -- calls the wsh_delivery_details_grp.update_shipping_attributes public API.
76: ------------------------------------------------------------------------------
77:
78: PROCEDURE Update_Container (
79: -- Standard parameters
80: p_api_version IN NUMBER,
81: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
82: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
83: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

Line 109: -- 6) other standard parameters

105: -- containers that are created during the autopacking
106: -- 5) pack cont flag - a 'Y' or 'N' value to determine whether to
107: -- to autopack the detail containers that are created into
108: -- parent containers.
109: -- 6) other standard parameters
110: --
111: -- Description: This procedure takes in a table of ids of either delivery lines
112: -- or container or deliveries and autopacks the lines/containers/deliveries
113: -- into detail containers. The grouping id table is used only if the input

Line 128: -- Standard parameters

124: -- delivery detail ids.
125: ------------------------------------------------------------------------------
126:
127: PROCEDURE Auto_Pack (
128: -- Standard parameters
129: p_api_version IN NUMBER,
130: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
131: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
132: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,

Line 166: -- 9) other standard parameters

162: -- 7) delivery_name - name of delivery that container is being
163: -- assigned to.
164: -- 8) action_code - action code 'Pack', 'Assign', 'Unpack' or
165: -- 'Unassign' to specify what action to perform.
166: -- 9) other standard parameters
167: --
168: -- Description: This procedure takes in a table of delivery detail ids and
169: -- name and/or delivery detail id of container to pack. If the action code is
170: -- is assign then delivery id and delivery name must be specified. The API

Line 183: -- Standard parameters

179: ------------------------------------------------------------------------------
180:
181:
182: PROCEDURE Container_Actions (
183: -- Standard parameters
184: p_api_version IN NUMBER,
185: p_init_msg_list IN VARCHAR2 DEFAULT FND_API.G_FALSE,
186: p_commit IN VARCHAR2 DEFAULT FND_API.G_FALSE,
187: p_validation_level IN NUMBER DEFAULT FND_API.G_VALID_LEVEL_FULL,