DBA Data[Home] [Help]

PACKAGE: APPS.JA_IN_XLA_UTILS_PKG

Source


1 PACKAGE ja_in_xla_utils_pkg AUTHID CURRENT_USER AS
2 /* $Header: ja_in_xla_utils.pls 120.1 2010/12/24 06:49:57 xlv noship $ */
3 
4 
5 /********************************************************************************************************
6  FILENAME      :  ja_in_xla_utils.pls
7 
8  Created By    : Walton
9 
10  Created Date  : 07-Apr-2010
11 
12  Bug           : 9311844
13 
14  Purpose       :  Check whether OFI source and category be used or not.
15 
16  Called from   : XLACORE.pll
17 
18  --------------------------------------------------------------------------------------------------------
19  CHANGE HISTORY:
20  --------------------------------------------------------------------------------------------------------
21  S.No      Date          Author and Details
22  --------------------------------------------------------------------------------------------------------
23  1.        2010/04/07   Walton Liu
24                         Bug No : 9311844
25                         Description : The file is changed for ER GL drilldown
26                         Fix Details : http://files.oraclecorp.com/content/MySharedFolders/R12.1.3/TDD/TDD_1213_FIN_JAI_GL_Drilldown.doc
27                         Doc Impact  : YES
28                         Dependencies: YES, refer to Technical Design
29 
30 ***************************************************************************************************************/
31 
32 --==========================================================================
33 --  FUNCTION NAME:
34 --
35 --    if_OFI_drilldown                      Public
36 --
37 --  DESCRIPTION:
38 --
39 --    This function is used to Enable/Disable drilldown buttion
40 --    according OFI journal source and journal categories.
41 --
42 --  PARAMETERS:
43 --      In:  pn_je_source           Identifier of journal source
44 --           pn_je_category         Identifier of journal category
45 --
46 --
47 --  DESIGN REFERENCES:
48 --    FDD_R12_1_4_GL_Drilldown_V0.4.docx
49 --
50 --  CHANGE HISTORY:
51 --
52 --           09-Mar-2010   Jia Li   created
53 --==========================================================================
54 FUNCTION if_OFI_drilldown (
55    pn_je_source           VARCHAR2
56  , pn_je_category         VARCHAR2
57  ) RETURN BOOLEAN;
58 
59 
60 
61 END ja_in_xla_utils_pkg;