DBA Data[Home] [Help]

PACKAGE: APPS.MSC_SET_DEMAND_PRIORITY

Source


1 PACKAGE MSC_SET_DEMAND_PRIORITY AUTHID CURRENT_USER AS
2 /* $Header: MSCDMPRS.pls 120.0 2005/05/25 19:59:54 appldev noship $ */
3    FUNCTION MSC_DEMAND_PRIORITY(
4         arg_plan_id   IN   NUMBER )	 RETURN NUMBER;
5 
6    FUNCTION GET_INTERPLANT_DEMAND_PRIORITY(
7 		arg_plan_id IN NUMBER,
8 		arg_trans_id IN NUMBER) RETURN NUMBER;
9 
10 	LOWEST_PRIORITY INTEGER := 100000;
11 
12 	  PRAGMA RESTRICT_REFERENCES (get_interplant_demand_priority, WNDS,WNPS);
13 
14 
15 END MSC_SET_DEMAND_PRIORITY;
16