DBA Data[Home] [Help]

PACKAGE BODY: APPS.XTR_FPSDB_P

Source


1 PACKAGE BODY XTR_FPSDB_P as
2 /* $Header: xtrfpsdb.pls 120.1 2005/06/29 07:57:37 badiredd ship $ */
3 ----------------------------------------------------------------------------------------------------------------
4 --  Procedure to Extrapolate the FWDS from the reval rates WITHOUT referring to a
5 --  specific yield curve
6 PROCEDURE EXTRAPOLATE_FWDS(l_company     IN VARCHAR2,
7                            l_period_from IN DATE,
8                            l_period_to   IN DATE,
9                            l_ccy         IN VARCHAR2,
10                            l_ccyb	     IN VARCHAR2,
11                            l_days        IN NUMBER,
12                            l_fwds        IN OUT NOCOPY NUMBER) is
13 begin
14 --Comment added by Ilavenil on 08/29/2001.
15 --The procedure body had a cursor which selected reval_rate column
16 --from xtr_revaluation_rates.  This is an onsoleted column.  Moreover, the
17 --procedure is not being called in any form, report, trigger, library, package.
18 --So removing it totally.
19 null;
20 end EXTRAPOLATE_FWDS;
21 end XTR_FPSDB_P;