DBA Data[Home] [Help]

PACKAGE: APPS.AMS_CAMP_SCHEDULE_VUHK

Source


1 PACKAGE AMS_Camp_Schedule_VUHK AUTHID CURRENT_USER AS
2 /* $Header: amsischs.pls 115.4 2002/11/16 00:41:36 dbiswas ship $ */
3 
4 
5 -----------------------------------------------------------
6 -- PROCEDURE
7 --    create_schedule_pre
8 --
9 -- PURPOSE
10 --    Vertical industry pre-processing for create_schedule.
11 ------------------------------------------------------------
12 PROCEDURE create_schedule_pre(
13    x_sch_rec       IN OUT NOCOPY AMS_Camp_Schedule_PUB.schedule_rec_type,
14    x_return_status  OUT NOCOPY VARCHAR2
15 );
16 
17 
18 -----------------------------------------------------------
19 -- PROCEDURE
20 --    create_schedule_post
21 --
22 -- PURPOSE
23 --    Vertical industry post-processing for create_schedule.
24 ------------------------------------------------------------
25 PROCEDURE create_schedule_post(
26    p_sch_rec       IN  AMS_Camp_Schedule_PUB.schedule_rec_type,
27    p_sch_id        IN  NUMBER,
28    x_return_status  OUT NOCOPY VARCHAR2
29 );
30 
31 
32 -----------------------------------------------------------
33 -- PROCEDURE
34 --    delete_schedule_pre
35 --
36 -- PURPOSE
37 --    Vertical industry pre-processing for delete_schedule.
38 ------------------------------------------------------------
39 PROCEDURE delete_schedule_pre(
40    x_sch_id        IN OUT NOCOPY NUMBER,
41    x_object_version IN OUT NOCOPY NUMBER,
42    x_return_status  OUT NOCOPY    VARCHAR2
43 );
44 
45 
46 -----------------------------------------------------------
47 -- PROCEDURE
48 --    delete_schedule_post
49 --
50 -- PURPOSE
51 --    Vertical industry post-processing for delete_schedule.
52 ------------------------------------------------------------
53 PROCEDURE delete_schedule_post(
54    p_sch_id        IN  NUMBER,
55    p_object_version IN  NUMBER,
56    x_return_status  OUT NOCOPY VARCHAR2
57 );
58 
59 
60 -----------------------------------------------------------
61 -- PROCEDURE
62 --    lock_schedule_pre
63 --
64 -- PURPOSE
65 --    Vertical industry pre-processing for lock_schedule.
66 ------------------------------------------------------------
67 PROCEDURE lock_schedule_pre(
68    x_sch_id        IN OUT NOCOPY NUMBER,
69    x_object_version IN OUT NOCOPY NUMBER,
70    x_return_status  OUT NOCOPY    VARCHAR2
71 );
72 
73 
74 -----------------------------------------------------------
75 -- PROCEDURE
76 --    lock_schedule_post
77 --
78 -- PURPOSE
79 --    Vertical industry post-processing for lock_schedule.
80 ------------------------------------------------------------
81 PROCEDURE lock_schedule_post(
82    p_sch_id        IN  NUMBER,
83    p_object_version IN  NUMBER,
84    x_return_status  OUT NOCOPY VARCHAR2
85 );
86 
87 
88 -----------------------------------------------------------
89 -- PROCEDURE
90 --    update_schedule_pre
91 --
92 -- PURPOSE
93 --    Vertical industry pre-processing for update_schedule.
94 ------------------------------------------------------------
95 PROCEDURE update_schedule_pre(
96    x_sch_rec       IN OUT NOCOPY AMS_Camp_Schedule_PUB.schedule_rec_type,
97    x_return_status  OUT NOCOPY    VARCHAR2
98 );
99 
100 
101 -----------------------------------------------------------
102 -- PROCEDURE
103 --    update_schedule_post
104 --
105 -- PURPOSE
106 --    Vertical industry post-processing for update_schedule.
107 ------------------------------------------------------------
108 PROCEDURE update_schedule_post(
109    p_sch_rec       IN  AMS_Camp_Schedule_PUB.schedule_rec_type,
110    x_return_status  OUT NOCOPY VARCHAR2
111 );
112 
113 
114 -----------------------------------------------------------
115 -- PROCEDURE
116 --    validate_schedule_pre
117 --
118 -- PURPOSE
119 --    Vertical industry pre-processing for validate_schedule.
120 ------------------------------------------------------------
121 PROCEDURE validate_schedule_pre(
122    x_sch_rec       IN OUT NOCOPY AMS_Camp_Schedule_PUB.schedule_rec_type,
123    x_return_status  OUT NOCOPY    VARCHAR2
124 );
125 
126 
127 -----------------------------------------------------------
128 -- PROCEDURE
129 --    validate_schedule_post
130 --
131 -- PURPOSE
132 --    Vertical industry post-processing for validate_schedule.
133 ------------------------------------------------------------
134 PROCEDURE validate_schedule_post(
135    p_sch_rec       IN  AMS_Camp_Schedule_PUB.schedule_rec_type,
136    x_return_status  OUT NOCOPY VARCHAR2
137 );
138 
139 
140 END AMS_Camp_Schedule_VUHK;