DBA Data[Home] [Help]

PACKAGE: APPS.XLA_AAD_HDR_ACCT_ATTRS_F_PKG

Source


1 PACKAGE xla_aad_hdr_acct_attrs_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbhaa.pkh 120.0 2004/05/27 20:58:42 dcshah noship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_aad_hdr_acct_attrs_f_pkg                                       |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_aad_hdr_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_product_rule_type_code           IN VARCHAR2
24   ,x_product_rule_code                IN VARCHAR2
25   ,x_event_class_code                 IN VARCHAR2
26   ,x_event_type_code                  IN VARCHAR2
27   ,x_accounting_attribute_code        IN VARCHAR2
28   ,x_source_application_id            IN NUMBER
29   ,x_source_type_code                 IN VARCHAR2
30   ,x_source_code                      IN VARCHAR2
31   ,x_event_class_default_flag         IN VARCHAR2
32   ,x_creation_date                    IN DATE
33   ,x_created_by                       IN NUMBER
34   ,x_last_update_date                 IN DATE
35   ,x_last_updated_by                  IN NUMBER
36   ,x_last_update_login                IN NUMBER);
37 
38 PROCEDURE lock_row
39   (x_rowid                            IN OUT NOCOPY VARCHAR2
40   ,x_application_id                   IN NUMBER
41   ,x_amb_context_code                 IN VARCHAR2
42   ,x_product_rule_type_code           IN VARCHAR2
43   ,x_product_rule_code                IN VARCHAR2
44   ,x_event_class_code                 IN VARCHAR2
45   ,x_event_type_code                  IN VARCHAR2
46   ,x_accounting_attribute_code        IN VARCHAR2
47   ,x_source_application_id            IN NUMBER
48   ,x_source_type_code                 IN VARCHAR2
49   ,x_source_code                      IN VARCHAR2
50   ,x_event_class_default_flag         IN VARCHAR2);
51 
52 PROCEDURE update_row
53   (x_rowid                            IN OUT NOCOPY VARCHAR2
54   ,x_application_id                   IN NUMBER
55   ,x_amb_context_code                 IN VARCHAR2
56   ,x_product_rule_type_code           IN VARCHAR2
57   ,x_product_rule_code                IN VARCHAR2
58   ,x_event_class_code                 IN VARCHAR2
59   ,x_event_type_code                  IN VARCHAR2
60   ,x_accounting_attribute_code        IN VARCHAR2
61   ,x_source_application_id            IN NUMBER
62   ,x_source_type_code                 IN VARCHAR2
63   ,x_source_code                      IN VARCHAR2
64   ,x_event_class_default_flag         IN VARCHAR2
65   ,x_last_update_date                 IN DATE
66   ,x_last_updated_by                  IN NUMBER
67   ,x_last_update_login                IN NUMBER);
68 
69 PROCEDURE delete_row
70   (x_application_id                   IN NUMBER
71   ,x_amb_context_code                 IN VARCHAR2
72   ,x_product_rule_type_code           IN VARCHAR2
73   ,x_product_rule_code                IN VARCHAR2
74   ,x_event_class_code                 IN VARCHAR2
75   ,x_event_type_code                  IN VARCHAR2
76   ,x_accounting_attribute_code        IN VARCHAR2);
77 
78 END xla_aad_hdr_acct_attrs_f_pkg;