DBA Data[Home] [Help]

PACKAGE: APPS.IGS_EN_GEN_013

Source


1 PACKAGE IGS_EN_GEN_013 AUTHID CURRENT_USER AS
2 /* $Header: IGSEN13S.pls 115.5 2002/11/28 23:53:45 nsidana ship $ */
3 
4 -- Modification By : jbegum
5 -- Modification    : Removed the following 3 functions:
6 --                   Enrp_Val_Sca_Fs , Enrp_Val_Sua_Excld , Enrp_Val_Sua_Pre
7 --                   The functions  Enrp_Val_Sca_Fs , Enrp_Val_Sua_Excld were not being called from anywhere .
8 --                   Also identical functions were present in the packages of IGSEN61B.pls and IGSEN68B.pls .
9 --	 	     Hence these two functions were removed
10 --                   The function Enrp_Val_Sua_Pre was being called from the package in IGSEN09B.pls.But the
11 --                   exact replica of it was found in IGSEN68B.pls.Hence it was removed and the call to
12 --		     this function from IGSEN09B.pls was replaced with the call to its replica in IGSEN68B.pls
13 
14 
15 Function Enrp_Upd_Sci_Ua(
16   p_person_id IN NUMBER ,
17   p_course_cd IN VARCHAR2 ,
18   p_start_dt IN DATE ,
19   p_end_dt IN DATE ,
20   p_message_name out NOCOPY Varchar2 )
21 RETURN boolean;
22 
23 Function Enrp_Upd_Susa_End_Dt(
24   p_person_id IN NUMBER ,
25   p_course_cd IN VARCHAR2 ,
26   p_unit_set_cd IN VARCHAR2 ,
27   p_sequence_number IN NUMBER ,
28   p_end_dt IN DATE ,
29   p_voluntary_end_ind IN VARCHAR2 DEFAULT 'N',
30   p_authorised_person_id IN NUMBER ,
31   p_authorised_on IN DATE ,
32   p_message_name out NOCOPY Varchar2 )
33 RETURN BOOLEAN;
34 
35 
36 Function Enrp_Upd_Susa_Sci(
37   p_person_id IN NUMBER ,
38   p_course_cd IN VARCHAR2 ,
39   p_unit_set_cd IN VARCHAR2 ,
40   p_sequence_number IN NUMBER ,
41   p_student_confirmed_ind IN VARCHAR2 DEFAULT 'N',
42   p_message_name out NOCOPY Varchar2 )
43 RETURN BOOLEAN;
44 
45 END IGS_EN_GEN_013;