DBA Data[Home] [Help]

PACKAGE: APPS.FF_ARCHIVE_UTILS

Source


1 package ff_archive_utils AUTHID CURRENT_USER as
2 /* $Header: ffarcutl.pkh 115.1 2002/06/14 12:13:12 pkm ship        $ */
3 --
4 /*
5 /*
6    ******************************************************************
7    *                                                                *
8    *  Copyright (C) 1992 Oracle Corporation US Ltd.,                *
9    *                                                                *
10    *  All rights reserved.                                          *
11    *                                                                *
12    *  This material has been provided pursuant to an agreement      *
13    *  containing restrictions on its use.  The material is also     *
14    *  protected by copyright law.  No part of this material may     *
15    *  be copied or distributed, transmitted or transcribed, in      *
16    *  any form or by any means, electronic, mechanical, magnetic,   *
17    *  manual, or otherwise, or disclosed to third parties without   *
18    *  the express written permission of Oracle Corporation USA Ltd, *
19    *  USA.                                                          *
20    *                                                                *
21    ******************************************************************
22 
23    Change List
24    -----------
25    Date         Name        Vers   Bug No   Description
26    -----------  ----------  -----  -------  -----------------------------------
27    11-JUN-2002  pganguly    115.0            Created.
28 */
29 --
30 
31 function get_context_value(p_legislation_code in varchar2,
32                             p_context_name in varchar2,
33                             p_context_value in varchar2) return varchar2;
34 
35 function get_legislation_code(p_business_group_id in number)
36                               return varchar2;
37 
38 function us_jurisdiction_code(p_context_value in varchar2)
39                                return varchar2;
40 
41 
42 end ff_archive_utils;