DBA Data[Home] [Help]

PACKAGE BODY: APPS.IGS_PR_USER_CLASS_STD

Source


1 PACKAGE BODY igs_pr_user_class_std
2 /* $Header: IGSPR39B.pls 120.0 2006/04/29 02:16:28 swaghmar noship $ */
3 AS
4  -------------------------------------------------------------------------------------------
5 --Creation:
6 --User Hook procedure to allow users to use their own logic to derive the Class Standing.
7 --If there is no Institution specific Class Standing logic then get_customized_class_std
8 --should remain empty.
9 --Change History:
10 --Who         When            What
11 -- swaghmar   20-Apr-2006     Created for bug# 5171158
12 -------------------------------------------------------------------------------------------
13    FUNCTION get_customized_class_std (
14       p_person_id                 IN   NUMBER,
15       p_course_cd                 IN   VARCHAR2,
16       p_predictive_ind            IN   VARCHAR2 DEFAULT 'N',
17       p_effective_dt              IN   DATE,
18       p_load_cal_type             IN   VARCHAR2,
19       p_load_ci_sequence_number   IN   NUMBER,
20       p_init_msg_list             IN   VARCHAR2 DEFAULT fnd_api.g_false
21    )RETURN VARCHAR2   IS
22    BEGIN
23 	RETURN 'NULL'; -- Should be the class standing derived by the customized method
24    END get_customized_class_std;
25 
26 END igs_pr_user_class_std;