DBA Data[Home] [Help]

PACKAGE: APPS.FV_FUNDS_AVAILABLE_PKG

Source


1 PACKAGE fv_funds_available_pkg AS
2  /* $Header: FVIFUNDS.pls 120.2 2002/11/11 20:03:52 ksriniva ship $ | */
3 --
4 -- Package
5 --   fv_funds_available_pkg
6 -- Purpose
7 --   To group all the routines for fv_funds_available_pkg.
8 --   This package is used for federal funds available inquiry form.
9 
10 PROCEDURE calc_funds(
11 	    x_acct_ff_low                       VARCHAR2,
12             x_acct_ff_high                      VARCHAR2,
13             x_rollup_type                       VARCHAR2,
14             x_treasury_symbol_id                NUMBER, --Modified to fix Bug 1575992
15             x_balance_seg_name                  VARCHAR2,
16             x_acct_seg_name                     VARCHAR2,
17             x_set_of_books_id                   NUMBER,
18             x_currency_code                     VARCHAR2,
19             x_period_name                       VARCHAR2,
20             x_total_budget                      IN OUT NOCOPY NUMBER,
21             x_commitments                       IN OUT NOCOPY NUMBER,
22             x_obligations                       IN OUT NOCOPY NUMBER,
23             x_expenditure                       IN OUT NOCOPY NUMBER,
24             x_total                             IN OUT NOCOPY NUMBER,
25             x_funds_available                   IN OUT NOCOPY NUMBER);
26 
27 
28 END fv_funds_available_pkg;