DBA Data[Home] [Help]

PACKAGE: APPS.IGS_FI_PRC_STDNT_DPSTS

Source


1 PACKAGE igs_fi_prc_stdnt_dpsts AUTHID CURRENT_USER AS
2 /* $Header: IGSFI77S.pls 115.1 2002/12/16 14:49:32 vchappid noship $ */
3 
4 /******************************************************************
5 Created By        : Vinay Chappidi
6 Date Created By   : 05-DEC-2002
7 Purpose           : This package contains the specification for the
8                     Process Deposits concurrent request. This process
9                     has an out come of either Transferring the Deposit
10                     to the Student Account as a Payment or Forfeit the
11                     Deposit or take no action on the Deposit transaction.
12 
13                     Function check_acad_load_adm_rel is defined in the
14                     specification as it has been used in a select statement
15 
16 Known limitations,
17 enhancements,
18 remarks            :
19 Change History
20 Who      When          What
21 ******************************************************************/
22   PROCEDURE prc_stdnt_deposit ( errbuf           OUT NOCOPY  VARCHAR2,
23                                retcode           OUT NOCOPY  NUMBER,
24                                p_c_credit_class              VARCHAR2,
25                                p_n_person_id_grp             NUMBER,
26                                p_n_person_id                 NUMBER,
27                                p_n_credit_type_id            NUMBER,
28                                p_c_term_cal_inst             VARCHAR2,
29                                p_d_gl_date                   VARCHAR2,
30                                p_c_test_mode                 VARCHAR2
31                                ) ;
32 
33   FUNCTION check_acad_load_adm_rel(p_c_load_cal_type         VARCHAR2,
34                                    p_n_load_ci_seq_num       NUMBER,
35                                    p_c_acad_cal_type         VARCHAR2,
36                                    p_n_acad_ci_seq_num       NUMBER,
37                                    p_c_adm_cal_type          VARCHAR2,
38                                    p_n_adm_ci_seq_num        NUMBER) RETURN VARCHAR2;
39 
40 END igs_fi_prc_stdnt_dpsts;