DBA Data[Home] [Help]

PACKAGE: APPS.XLA_DESCRIPTIONS_F_PKG

Source


1 PACKAGE xla_descriptions_f_pkg AS
2 /* $Header: xlathdes.pkh 120.16 2005/05/05 23:05:41 wychan ship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_descriptions                                                   |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_descriptions                          |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    Generated from XLAUTB.                                             |
16 |                                                                       |
17 +======================================================================*/
18 
19 
20 
21 PROCEDURE insert_row
22   (x_rowid                            IN OUT NOCOPY VARCHAR2
23   ,x_application_id                   IN NUMBER
24   ,x_amb_context_code                 IN VARCHAR2
25   ,x_description_type_code            IN VARCHAR2
26   ,x_description_code                 IN VARCHAR2
27   ,x_enabled_flag                     IN VARCHAR2
28   ,x_transaction_coa_id               IN NUMBER
29   ,x_name                             IN VARCHAR2
30   ,x_description                      IN VARCHAR2
31   ,x_creation_date                    IN DATE
32   ,x_created_by                       IN NUMBER
33   ,x_last_update_date                 IN DATE
34   ,x_last_updated_by                  IN NUMBER
35   ,x_last_update_login                IN NUMBER);
36 
37 PROCEDURE lock_row
38   (x_application_id                   IN NUMBER
39   ,x_amb_context_code                 IN VARCHAR2
40   ,x_description_type_code            IN VARCHAR2
41   ,x_description_code                 IN VARCHAR2
42   ,x_enabled_flag                     IN VARCHAR2
43   ,x_transaction_coa_id               IN NUMBER
44   ,x_name                             IN VARCHAR2
45   ,x_description                      IN VARCHAR2);
46 
47 PROCEDURE update_row
48  (x_application_id                   IN NUMBER
49  ,x_amb_context_code                 IN VARCHAR2
50  ,x_description_type_code            IN VARCHAR2
51  ,x_description_code                 IN VARCHAR2
52  ,x_enabled_flag                     IN VARCHAR2
53  ,x_transaction_coa_id               IN NUMBER
54  ,x_name                             IN VARCHAR2
55  ,x_description                      IN VARCHAR2
56  ,x_last_update_date                 IN DATE
57  ,x_last_updated_by                  IN NUMBER
58  ,x_last_update_login                IN NUMBER);
59 
60 PROCEDURE delete_row
61   (x_application_id                   IN NUMBER
62   ,x_amb_context_code                 IN VARCHAR2
63   ,x_description_type_code            IN VARCHAR2
64   ,x_description_code                 IN VARCHAR2);
65 
66 PROCEDURE add_language;
67 
68 PROCEDURE translate_row
69   (p_application_short_name      IN VARCHAR2
70   ,p_amb_context_code            IN VARCHAR2
71   ,p_description_type_code       IN VARCHAR2
72   ,p_description_code            IN VARCHAR2
73   ,p_name                        IN VARCHAR2
74   ,p_description                 IN VARCHAR2
75   ,p_owner                       IN VARCHAR2
76   ,p_last_update_date            IN VARCHAR2
77   ,p_custom_mode                 IN VARCHAR2);
78 
79 END xla_descriptions_f_pkg;