[Home] [Help]
PACKAGE: APPS.GHR_EVENTS_PKG
Source
1 Package ghr_events_pkg AUTHID CURRENT_USER as
2 /* $Header: ghrwseve.pkh 115.1 99/10/18 00:35:50 porting ship $ */
3 --
4 -- -----------------------------------------------------------------------------
5 -- |-------------------------------< GHR_EVENTS_PKG >--------------------------|
6 -- -----------------------------------------------------------------------------
7 -- {Start of Comments}
8 --
9 -- Description:
10 -- This procedure contains the code associated to the form GHRWSEVE.
11 -- Procedure get_next_event_id will return the next value from sequence ghr_events_s.
12 -- Procedure delete_check will return a boolean TRUE if the event_id can be deleted.
13 --
14 --
15 -- Pre Conditions:
16 --
17 --
18 -- In Arguments:
19 -- p_event_id passes the ghr_events.event_id (delete_check)
20 --
21 --
22 -- OUT Arguments:
23 -- get_next_event_id out is ghr_events_s.nextval
24 -- delete_ok out is boolean TRUE = OK to delete, FALSE = Stop Delete
25 --
26 --
27 -- Post Success:
28 --
29 --
30 -- Post Failure:
31 --
32 --
33 -- Developer Implementation Notes:
34 --
35 --
36 -- {End of Comments}
37 -- -----------------------------------------------------------------------------
38 FUNCTION get_next_event_id
39 RETURN NUMBER;
40 --
41 --
42 FUNCTION delete_ok
43 (p_event_id IN ghr_events.event_id%TYPE)
44 RETURN BOOLEAN;
45 --
46 --
47 end ghr_events_pkg;