DBA Data[Home] [Help]

PACKAGE: APPS.MSD_STRIPE_CUSTOM

Source


1 package msd_stripe_custom AUTHID CURRENT_USER as
2 /* $Header: msdstrcs.pls 115.0 2003/10/29 02:01:58 pinamati noship $ */
3 
4     --
5     -- Public procedure
6     --
7 
8     -- Parameters :
9     -- (1) errbuf : Standard error logging variable.
10     -- (2) retcode : Standard error status variable.
11     -- (3) p_demand_plan_id : Id of Demand Plan.
12     -- (4) p_event : Possible values include
13     --
14     --                    PRE-PROCESSING
15     --                    This event occurs before stripe
16     --                    processing begins. If called
17     --                    with this event and
18     --                    if procedure returns p_status
19     --                    with PROCESSED, program will
20     --                    not continue and assume all
21     --                    striping has taken place.
22     --
23     --                    POST-PROCESSING
24     --                    This event occurs after stripe
25     --                    processing has taken place. The value of
26     --                    status is insignificant at this point.
27     --                    This is useful for User Defined Dims.
28     --
29     -- (5) p_status : Possible value include
30     --
31     --                     PROCESSED
32     --                     If this value is passed
33     --                     to program at PRE-PROCESSING
34     --                     stage, then DP standard
35     --                     level value striping will
36     --                     not take place.
37 
38 
39     Procedure custom_populate( errbuf out nocopy varchar2,
40                                retcode out nocopy varchar2,
41                                p_demand_plan_id in number,
42                                p_event in varchar2,
43                                p_status out nocopy varchar2,
44 			       p_param1 in varchar2,
45 			       p_param2 in varchar2,
46 			       p_param3 in varchar2,
47 			       p_param4 in varchar2,
48 			       p_param5 in varchar2);
49 
50 End;