DBA Data[Home] [Help]

PACKAGE: APPS.XLA_DESCRIPT_DETAILS_PKG

Source


1 PACKAGE xla_descript_details_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlaamdpd.pkh 120.1 2003/03/18 00:37:40 dcshah ship $ */
3 /*======================================================================+
4 |             Copyright (c) 1995-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_descript_details_pkg                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    XLA Description Priority_details package                           |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    01-May-01 Dimple Shah    Created                                   |
16 |                                                                       |
17 +======================================================================*/
18 
19 /*======================================================================+
20 |                                                                       |
21 | Public Procedure                                                      |
22 |                                                                       |
23 | delete_desc_prio_details                                              |
24 |                                                                       |
25 | Deletes all description details for the description priority          |
26 |                                                                       |
27 +======================================================================*/
28 
29 PROCEDURE delete_desc_prio_details
30   (p_description_prio_id              IN NUMBER);
31 
32 /*======================================================================+
33 |                                                                       |
34 | Public Function                                                       |
35 |                                                                       |
36 | display_desc_prio_details                                             |
37 |                                                                       |
38 | Returns the entire description detail for the priority                |
39 |                                                                       |
40 +======================================================================*/
41 
42 FUNCTION display_desc_prio_details
43   (p_description_prio_id              IN NUMBER
44   ,p_chart_of_accounts_id             IN NUMBER)
45 RETURN VARCHAR2;
46 
47 END xla_descript_details_pkg;