DBA Data[Home] [Help]

PACKAGE BODY: APPS.ENG_PARAMETER_ENGCYCLE

Source


1 PACKAGE BODY ENG_PARAMETER_ENGCYCLE as
2 /* $Header: engecycb.pls 120.2 2011/08/02 22:11:45 sreharih ship $ */
3 
4 
5 
6 /*
7  * Before_Parameter_ENGCYCLE
8  *
9  *   This function is called by Parameter_FormView_ENGCYCLE
10  *   to perform initial setups.  It should not be invoked
11  *   directly.
12  */
13 
14 PROCEDURE Before_Parameter_ENGCYCLE IS
15 
16 
17 BEGIN
18  NULL;
19 END Before_Parameter_ENGCYCLE;
20 
21 
22 /*
23  * After_Parameter_ENGCYCLE
24  *
25  *   This function is called by Parameter_ActionView_ENGCYCLE
26  *   to perform validations.  It should not be invoked
27  *   directly.
28  */
29 
30 PROCEDURE After_Parameter_ENGCYCLE IS
31 BEGIN
32     NULL;
33 END After_Parameter_ENGCYCLE;
34 
35 PROCEDURE Build_Parameter_Form IS
36 BEGIN
37     NULL;
38 END Build_Parameter_Form;
39 
40 
41 /*
42  * Parameter_ActionView_ENGCYCLE
43  *
44  *   This function is invoked when the user clicks
45  *   the OK button in the HTML page generated by
46  *   Parameter_FormView_ENGCYCLE.  It will validate
47  *   the input parameters and launch the ECO Cycle Time
48  *   report.
49  */
50 
51 PROCEDURE Parameter_ActionView_ENGCYCLE(
52     P_ORGANIZATION_ID                       NUMBER,
53     P_ORGANIZATION_NAME                     VARCHAR2 default null,
54     P_FROM_DATE                             VARCHAR2,
55     P_TO_DATE                               VARCHAR2,
56     P_VIEW_BY                               NUMBER) IS
57 
58 BEGIN
59   null;
60 END Parameter_ActionView_ENGCYCLE;
61 
62 
63 
64 /*
65  * Parameter_FormView_ENGCYCLE
66  *
67  *   This function is invoked via a form function
68  *   and is the entry point into this package.
69  *   It creates the HTML parameter page used by
70  *   the BIS ECO Cycle Time report.
71  */
72 
73 PROCEDURE Parameter_FormView_ENGCYCLE IS
74 BEGIN
75  NULL;
76 END Parameter_FormView_ENGCYCLE;
77 
78 END ENG_PARAMETER_ENGCYCLE;