DBA Data[Home] [Help]

PACKAGE: APPS.IGS_FI_GEN_REFUNDS

Source


1 PACKAGE igs_fi_gen_refunds AUTHID CURRENT_USER AS
2 /* $Header: IGSFI68S.pls 115.3 2002/11/29 00:29:23 nsidana noship $ */
3   ------------------------------------------------------------------
4   --Known limitations/enhancements and/or remarks:
5   --
6   --Change History:
7   --Who         When            What
8 --  shtatiko	24-Sep-2002	Removed Subaccount_id from the signature of
9 --				get_fee_prd
10   ------------------------------------------------------------------
11 
12 FUNCTION check_fund_auth( p_person_id igs_fi_parties_v.person_id%TYPE) RETURN BOOLEAN;
13 
14 PROCEDURE get_fee_prd (p_fee_type               OUT NOCOPY       igs_fi_fee_type.fee_type%TYPE,
15                        p_fee_cal_type           IN OUT NOCOPY    igs_fi_f_typ_ca_inst.fee_cal_type%TYPE,
16                        p_fee_ci_sequence_number IN OUT NOCOPY    igs_fi_f_typ_ca_inst.fee_ci_sequence_number%TYPE,
17                        p_status                 OUT NOCOPY       BOOLEAN);
18 FUNCTION get_rfnd_hold (p_person_id igs_pe_person.person_id%TYPE) RETURN BOOLEAN;
19 
20 PROCEDURE get_borw_det (p_credit_id          igs_fi_credits.credit_id%TYPE,
21                         p_determination  OUT NOCOPY igs_lookups_view.lookup_code%TYPE,
22                         p_err_message    OUT NOCOPY fnd_new_messages.message_name%TYPE,
23                         p_status         OUT NOCOPY BOOLEAN);
24 
25 FUNCTION val_add_drop (p_fee_cal_type            igs_fi_f_typ_ca_inst.fee_cal_type%TYPE,
26                        p_fee_ci_sequence_number  igs_fi_f_typ_ca_inst.fee_ci_sequence_number%TYPE) RETURN BOOLEAN;
27 
28 PROCEDURE get_refund_acc ( p_dr_gl_ccid     OUT NOCOPY igs_fi_f_typ_ca_inst.rec_gl_ccid%TYPE,
29                            p_dr_account_cd  OUT NOCOPY igs_fi_f_typ_ca_inst.rec_account_cd%TYPE,
30                            p_cr_gl_ccid     OUT NOCOPY igs_fi_f_typ_ca_inst.rec_gl_ccid%TYPE,
31                            p_cr_account_cd  OUT NOCOPY igs_fi_f_typ_ca_inst.rec_account_cd%TYPE,
32                            p_err_message    OUT NOCOPY fnd_new_messages.message_name%TYPE,
33                            p_status         OUT NOCOPY BOOLEAN);
34 
35 
36 END igs_fi_gen_refunds;