DBA Data[Home] [Help]

PACKAGE: APPS.FA_GAINLOSS_MIS_PKG

Source


1 PACKAGE FA_GAINLOSS_MIS_PKG AUTHID CURRENT_USER AS
2 /* $Header: fagmiss.pls 120.3 2009/03/26 21:46:10 bridgway ship $*/
3 
4 /*============================================================================
5 |  NAME         faggfy                                                       |
6 |                                                                            |
7 |  FUNCTION     It returns the fiscal year, prorate_calendar, prorate_periods|
8 |               per_year through the input parameter 'xdate"                 |
9 |                                                                            |
10 |  HISTORY      1/12/89         R Rumanang      Created                      |
11 |               08/09/90        M Chan          Modified for MPL 8           |
12 |               01/08/97        S Behura        Rewrote into PL/SQL          |
13 |===========================================================================*/
14 
15 FUNCTION faggfy(xdate in date, p_cal in out nocopy varchar2,
16                 pro_month in out nocopy number, fiscalyr in out number,
17                 fiscal_year_name in out nocopy varchar2, p_log_level_rec        IN     FA_API_TYPES.log_level_rec_type) RETURN BOOLEAN;
18 
19 /*===========================================================================
20 |  NAME         fagpdi                                                      |
21 |                                                                           |
22 |  FUNCTION     Return period information based on the deprn_calendar and   |
23 |               prorate_calendar                                            |
24 |                                                                           |
25 |  HISTORY      01/12/89        R Rumanang      Created                     |
26 |               06/23/89        R Rumanang      Standarized                 |
27 |               08/21/90        M Chan          return p_pds_per_year       |
28 |               04/04/91        M Chan          restructure the function    |
29 |               01/09/97        S Behura        Rewrote in PL/SQL           |
30 |===========================================================================*/
31 
32 Function fagpdi(book_type in varchar2, pds_per_year_ptr in out nocopy number,
33                 period_type in out nocopy varchar2, cpdname in varchar2,
34                 cpdnum in out nocopy number, ret_p_date in out date,
35                 ret_pd in out nocopy number, p_pds_per_year_ptr in out number,
36                 fiscal_year_name in out nocopy varchar2, p_log_level_rec        IN     FA_API_TYPES.log_level_rec_type) Return BOOLEAN;
37 
38 /*===========================================================================
39 |  NAME         faggbi                                                      |
40 |                                                                           |
41 |  FUNCTION     Returns book information based on a retirement-id           |
42 |                                                                           |
43 |  HISTORY      1/12/89         R Rumanang      Created                     |
44 |               6/23/89         R Rumanang      Standarized                 |
45 |               7/11/89         R Rumanang      Fixed a bug in getting      |
46 |                                               prorate date. There maybe   |
47 |                                               possible to have 2 rows     |
48 |                                               for calendar type year.     |
49 |               8/8/90          M Chan          Add prorate calendar        |
50 |               04/02/91        M Chan          Rewrite the routine         |
51 |               01/09/97        S Behura        Rewrote in PL/SQL           |
52 |===========================================================================*/
53 
54 FUNCTION faggbi(bk in out nocopy fa_ret_types.book_struct,
55                 ret in out nocopy fa_ret_types.ret_struct, p_log_level_rec        IN     FA_API_TYPES.log_level_rec_type) Return BOOLEAN;
56 
57 END FA_GAINLOSS_MIS_PKG;