DBA Data[Home] [Help]

PACKAGE: APPS.XLA_EVT_CLASS_ACCT_ATTRS_F_PKG

Source


1 PACKAGE xla_evt_class_acct_attrs_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbaaa.pkh 120.1 2004/09/28 22:07:02 wychan noship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_evt_class_acct_attrs                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_evt_class_acct_attrs                  |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    Generated from XLAUTB.                                             |
16 |                                                                       |
17 +======================================================================*/
18 
19 PROCEDURE insert_row
20   (x_rowid                            IN OUT NOCOPY VARCHAR2
21   ,x_application_id                   IN NUMBER
22   ,x_event_class_code                 IN VARCHAR2
23   ,x_accounting_attribute_code        IN VARCHAR2
24   ,x_source_application_id            IN NUMBER
25   ,x_source_type_code                 IN VARCHAR2
26   ,x_source_code                      IN VARCHAR2
27   ,x_assignment_owner_code            IN VARCHAR2
28   ,x_default_flag                     IN VARCHAR2
29   ,x_creation_date                    IN DATE
30   ,x_created_by                       IN NUMBER
31   ,x_last_update_date                 IN DATE
32   ,x_last_updated_by                  IN NUMBER
33   ,x_last_update_login                IN NUMBER);
34 
35 PROCEDURE lock_row
36   (x_rowid                            IN OUT NOCOPY VARCHAR2
37   ,x_application_id                   IN NUMBER
38   ,x_event_class_code                 IN VARCHAR2
39   ,x_accounting_attribute_code        IN VARCHAR2
40   ,x_source_application_id            IN NUMBER
41   ,x_source_type_code                 IN VARCHAR2
42   ,x_source_code                      IN VARCHAR2
43   ,x_assignment_owner_code            IN VARCHAR2
44   ,x_default_flag                     IN VARCHAR2);
45 
46 PROCEDURE update_row
47   (x_rowid                            IN OUT NOCOPY VARCHAR2
48   ,x_application_id                   IN NUMBER
49   ,x_event_class_code                 IN VARCHAR2
50   ,x_accounting_attribute_code        IN VARCHAR2
51   ,x_source_application_id            IN NUMBER
52   ,x_source_type_code                 IN VARCHAR2
53   ,x_source_code                      IN VARCHAR2
54   ,x_assignment_owner_code            IN VARCHAR2
55   ,x_default_flag                     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_event_class_code                 IN VARCHAR2
63   ,x_accounting_attribute_code        IN VARCHAR2
64   ,x_source_application_id            IN NUMBER
65   ,x_source_type_code                 IN VARCHAR2
66   ,x_source_code                      IN VARCHAR2);
67 
68 PROCEDURE load_row
69 (p_application_short_name           IN VARCHAR2
70 ,p_event_class_code                 IN VARCHAR2
71 ,p_accounting_attribute_code        IN VARCHAR2
72 ,p_source_app_short_name            IN VARCHAR2
73 ,p_source_type_code                 IN VARCHAR2
74 ,p_source_code                      IN VARCHAR2
75 ,p_assignment_owner_code            IN VARCHAR2
76 ,p_default_flag                     IN VARCHAR2
77 ,p_owner                            IN VARCHAR2
78 ,p_last_update_date                 IN VARCHAR2);
79 
80 END xla_evt_class_acct_attrs_f_pkg;