DBA Data[Home] [Help]

PACKAGE: APPS.WSH_SC_DEL_LINES_PVT

Source


1 PACKAGE WSH_SC_DEL_LINES_PVT AUTHID CURRENT_USER as
2 /* $Header: WSHSDLNS.pls 115.0 99/07/16 08:21:20 porting ship $ */
3 --
4 -- Package
5 --   WSH_SC_DEL_LINES_PVT
6 -- Purpose
7 --   Will contains delivery lines server side routines specific to
8 -- Ship Confirm.
9 -- History
10 --   17-OCT-96  WLEE  		Created
11 --
12 
13   -- routine to unassign the delivery line from the delivery
14   -- parameter pld_id is picking_line_detail_id
15   -- Please note the routine will make a commit so that in case
16   -- it need to call transaction manager to do demand/reservation
17   -- transfer, the transaction manager can see the change
18   FUNCTION unassign_delivery_line( pld_id		IN NUMBER,
19 				   original_detail_id	IN NUMBER,
20 				   del_id		IN NUMBER,
21 				   so_reservations	IN VARCHAR2)
22   RETURN BOOLEAN;
23 
24   -- copy from package SHP_SC_TXN_PKG for inserting transaction ID
25   FUNCTION Trx_Id(
26 			X_Mode		    IN     VARCHAR2,
27 			X_Pk_Hdr_Id 	    IN     NUMBER,
28 			X_Pk_Line_Id	    IN     NUMBER,
29 			X_Order_Category    IN     VARCHAR2
30                        )
31   RETURN NUMBER;
32 
33 END WSH_SC_DEL_LINES_PVT;