DBA Data[Home] [Help]

PACKAGE: APPS.MRP_SCATP_PVT

Source


1 PACKAGE MRP_SCATP_PVT AUTHID CURRENT_USER AS
2     /* $Header: MRPVATPS.pls 115.0 99/07/16 12:41:27 porting ship $ */
3 
4     FUNCTION get_default_ship_method (p_from_location_id IN NUMBER, p_to_location_id IN NUMBER)
5 		return VARCHAR2;
6 
7     FUNCTION get_default_intransit_time (p_from_location_id IN NUMBER, p_to_location_id IN NUMBER)
8 		 return NUMBER;
9 
10 	FUNCTION get_ship_method(p_from_org_id IN NUMBER, p_to_org_id IN NUMBER,
11 							 p_source_ship_method IN VARCHAR2,
12 							 p_receipt_org_id IN NUMBER)
13 							 return VARCHAR2;
14 
15 	FUNCTION get_intransit_time(p_from_org_id IN NUMBER, p_to_org_id IN NUMBER,
16 								 p_source_ship_method IN VARCHAR2,
17 							     p_receipt_org_id IN NUMBER)
18 								 return NUMBER;
19 
20 	PRAGMA RESTRICT_REFERENCES (get_default_ship_method, WNDS,WNPS);
21 	PRAGMA RESTRICT_REFERENCES (get_default_intransit_time, WNDS,WNPS);
22 	PRAGMA RESTRICT_REFERENCES (get_ship_method, WNDS,WNPS);
23 	PRAGMA RESTRICT_REFERENCES (get_intransit_time, WNDS,WNPS);
24 
25 END MRP_SCATP_PVT;