DBA Data[Home] [Help]

PACKAGE: APPS.ENG_PARAMETER_ENGCYCLE

Source


1 PACKAGE ENG_PARAMETER_ENGCYCLE AUTHID CURRENT_USER AS
2 /* $Header: engecycs.pls 115.4 2002/11/22 10:42:19 akumar ship $ */
3 
4 /*
5  * Parameter_FormView_ENGCYCLE
6  *
7  *   This function is invoked via a form function
8  *   and is the entry point into this package.
9  *   It creates the HTML parameter page used by
10  *   the BIS ECO Cycle Time report.
11  */
12 PROCEDURE Parameter_FormView_ENGCYCLE;
13 
14 
15 /*
16  * Parameter_ActionView_ENGCYCLE
17  *
18  *   This function is invoked when the user clicks
19  *   the OK button in the HTML page generated by
20  *   Parameter_FormView_ENGCYCLE.  It will validate
21  *   the input parameters and launch the BIS
22  *   ECO Cycle Time report.
23  */
24 PROCEDURE Parameter_ActionView_ENGCYCLE
25 (
26   P_ORGANIZATION_ID                       NUMBER,
27   P_ORGANIZATION_NAME			  VARCHAR2 default null,
28   P_FROM_DATE                             VARCHAR2 default null,
29   P_TO_DATE                               VARCHAR2 default null,
30   P_VIEW_BY                               NUMBER
31 );
32 
33 
34 /*
35  * Before_Parameter_ENGCYCLE
36  *
37  *   This function is called by Parameter_FormView_ENGCYCLE
38  *   to perform initial setups.  It should not be invoked
39  *   directly.
40  */
41 PROCEDURE Before_Parameter_ENGCYCLE;
42 
43 
44 /*
45  * After_Parameter_ENGCYCLE
46  *
47  *   This function is called by Parameter_ActionView_ENGCYCLE
48  *   to perform validations.  It should not be invoked
49  *   directly.
50  */
51 PROCEDURE After_Parameter_ENGCYCLE;
52 
53 
54 
55 END ENG_PARAMETER_ENGCYCLE;