DBA Data[Home] [Help]

PACKAGE: APPS.FUN_SYSTEM_OPTIONS_PKG

Source


1 PACKAGE FUN_SYSTEM_OPTIONS_PKG   AUTHID CURRENT_USER AS
2 /* $Header: funsysutils.pls 120.6 2004/01/07 00:26:10 aslai noship $*/
3 
4 /*-----------------------------------------------------
5  * FUNCTION get_min_trx_amt
6  * ----------------------------------------------------
7  *  Get the minimum transaction amount and
8  *  the corresponding currency.  Returns F if
9  *  the minimum amount is not defined.
10  * ---------------------------------------------------*/
11 function get_min_trx_amt(l_min_amt OUT NOCOPY NUMBER,
12                          l_min_curr_code OUT NOCOPY VARCHAR2)
13 return boolean;
14 
15 /*-----------------------------------------------------
16  * FUNCTION is_apar_batch
17 
18  * ----------------------------------------------------
19  * Test whether AP/AR transfer is batched.
20  * ---------------------------------------------------*/
21 
22 function is_apar_batch return boolean;
23 
24  /*-----------------------------------------------------
25  * FUNCTION is_gl_batch
26  * ----------------------------------------------------
27  * Test whether GL transfer is batched.
28  * ---------------------------------------------------*/
29 
30  function is_gl_batch return boolean;
31 
32 
33 /*-----------------------------------------------------
34  * FUNCTION is_manual_numbering
35 
36  * ----------------------------------------------------
37  * Test whether numbering options is manual
38  * ---------------------------------------------------*/
39 
40 function is_manual_numbering  return boolean;
41 
42 /*-----------------------------------------------------
43  * FUNCTION get_allow_reject
44  * ----------------------------------------------------
45  * Test whether the recipients can reject.
46  * ---------------------------------------------------*/
47 
48 function get_allow_reject return boolean;
49 
50  /*-----------------------------------------------------
51  * FUNCTION get_default_currency
52  * ----------------------------------------------------
53  * Get the default currency.
54  * Return the currency code.
55  * ---------------------------------------------------*/
56 
57 function get_default_currency return varchar2;
58 
59 /*-----------------------------------------------------
60  * FUNCTION get_exchg_rate_type
61  * ----------------------------------------------------
62  * Get the default exchange rate type.
63  * Return the conversion type.
64  * ---------------------------------------------------*/
65 function get_exchg_rate_type return varchar2;
66 
67 
68 END fun_system_options_pkg;