DBA Data[Home] [Help]

PACKAGE: APPS.XLA_JLT_ACCT_ATTRS_F_PKG

Source


1 PACKAGE xla_jlt_acct_attrs_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbass.pkh 120.6 2004/05/27 20:32:21 dcshah ship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_jlt_acct_attrs_f_pkg                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_jlt_acct_attrs                        |
13 |                                                                       |
14 | HISTORY                                                               |
15 |   Manually created                                                    |
16 |                                                                       |
17 +======================================================================*/
18 
19 PROCEDURE insert_row
20   (x_rowid                            IN OUT NOCOPY VARCHAR2
21   ,x_application_id                   IN NUMBER
22   ,x_amb_context_code                 IN VARCHAR2
23   ,x_event_class_code                 IN VARCHAR2
24   ,x_accounting_line_type_code        IN VARCHAR2
25   ,x_accounting_line_code             IN VARCHAR2
26   ,x_accounting_attribute_code        IN VARCHAR2
27   ,x_source_application_id            IN NUMBER
28   ,x_source_type_code                 IN VARCHAR2
29   ,x_source_code                      IN VARCHAR2
30   ,x_event_class_default_flag         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_rowid                            IN OUT NOCOPY VARCHAR2
39   ,x_application_id                   IN NUMBER
40   ,x_amb_context_code                 IN VARCHAR2
41   ,x_event_class_code                 IN VARCHAR2
42   ,x_accounting_line_type_code        IN VARCHAR2
43   ,x_accounting_line_code             IN VARCHAR2
44   ,x_accounting_attribute_code        IN VARCHAR2
45   ,x_source_application_id            IN NUMBER
46   ,x_source_type_code                 IN VARCHAR2
47   ,x_source_code                      IN VARCHAR2
48   ,x_event_class_default_flag         IN VARCHAR2);
49 
50 PROCEDURE update_row
51   (x_rowid                            IN OUT NOCOPY VARCHAR2
52   ,x_application_id                   IN NUMBER
53   ,x_amb_context_code                 IN VARCHAR2
54   ,x_event_class_code                 IN VARCHAR2
55   ,x_accounting_line_type_code        IN VARCHAR2
56   ,x_accounting_line_code             IN VARCHAR2
57   ,x_accounting_attribute_code        IN VARCHAR2
58   ,x_source_application_id            IN NUMBER
59   ,x_source_type_code                 IN VARCHAR2
60   ,x_source_code                      IN VARCHAR2
61   ,x_event_class_default_flag         IN VARCHAR2
62   ,x_last_update_date                 IN DATE
63   ,x_last_updated_by                  IN NUMBER
64   ,x_last_update_login                IN NUMBER);
65 
66 PROCEDURE delete_row
67   (x_application_id                   IN NUMBER
68   ,x_amb_context_code                 IN VARCHAR2
69   ,x_event_class_code                 IN VARCHAR2
70   ,x_accounting_line_type_code        IN VARCHAR2
71   ,x_accounting_line_code             IN VARCHAR2
72   ,x_accounting_attribute_code        IN VARCHAR2);
73 
74 END xla_jlt_acct_attrs_f_pkg;