DBA Data[Home] [Help]

PACKAGE: APPS.WSH_DPW_PICK_RELEASE

Source


1 PACKAGE WSH_DPW_PICK_RELEASE AUTHID CURRENT_USER AS
2 /* $Header: WSHDPPRS.pls 115.0 99/07/16 08:18:59 porting ship $ */
3 
4 
5   --
6   -- Name
7   --   FUNCTION Launch_Pick_Release
8   --
9   -- Purpose
10   --   This function launches Pick Release program from Departure
11   --   Planning Workbench Form
12   --   - It gets the default shipping parameters for Pick Release
13   --   - Creates a Pickinmg Batch
14   --   - Launches the Pick Release Concurrent Program
15   --   - Places error messages in FND message stack
16   --
17   -- Arguments
18   --   p_departure_id       - departure to release
19   --   p_delivery           - delivery to release
20   --   p_warehouse	    - warehouse to release from
21   --   p_request_id
22   --
23   -- Return Values
24   --   Request ID of concurrent program
25   --
26   --
27   -- Notes
28   --
29 
30   FUNCTION Launch_Pick_Release( p_departure_id IN  NUMBER,
31 				p_delivery_id  IN  NUMBER,
32 				p_warehouse_id IN  NUMBER) RETURN NUMBER;
33 
34 END WSH_DPW_PICK_RELEASE;