DBA Data[Home] [Help]

PACKAGE: APPS.XLA_ACCTG_METHOD_RULES_F_PKG

Source


1 PACKAGE xla_acctg_method_rules_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbsap.pkh 120.5 2003/03/18 00:38:49 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_acctg_method_rules_f_pkg                                       |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_acctg_method_rules                    |
13 |                                                                       |
14 | HISTORY                                                               |
15 |   Manually created                                                    |
16 |                                                                       |
17 +======================================================================*/
18 
19 PROCEDURE insert_row
20   (x_rowid                            IN OUT NOCOPY VARCHAR2
21   ,x_acctg_method_rule_id             IN OUT NOCOPY NUMBER
22   ,x_amb_context_code                 IN VARCHAR2
23   ,x_accounting_method_type_code      IN VARCHAR2
24   ,x_accounting_method_code           IN VARCHAR2
25   ,x_application_id                   IN NUMBER
26   ,x_product_rule_type_code           IN VARCHAR2
27   ,x_product_rule_code                IN VARCHAR2
28   ,x_start_date_active                IN DATE
29   ,x_end_date_active                  IN DATE
30   ,x_creation_date                    IN DATE
31   ,x_created_by                       IN NUMBER
32   ,x_last_update_date                 IN DATE
33   ,x_last_updated_by                  IN NUMBER
34   ,x_last_update_login                IN NUMBER);
35 
36 PROCEDURE lock_row
37   (x_rowid                            IN OUT NOCOPY VARCHAR2
38   ,x_acctg_method_rule_id             IN NUMBER
39   ,x_amb_context_code                 IN VARCHAR2
40   ,x_accounting_method_type_code      IN VARCHAR2
41   ,x_accounting_method_code           IN VARCHAR2
42   ,x_application_id                   IN NUMBER
43   ,x_product_rule_type_code           IN VARCHAR2
44   ,x_product_rule_code                IN VARCHAR2
45   ,x_start_date_active                IN DATE
46   ,x_end_date_active                  IN DATE);
47 
48 PROCEDURE update_row
49   (x_rowid                            IN OUT NOCOPY VARCHAR2
50   ,x_acctg_method_rule_id             IN NUMBER
51   ,x_amb_context_code                 IN VARCHAR2
52   ,x_accounting_method_type_code      IN VARCHAR2
53   ,x_accounting_method_code           IN VARCHAR2
54   ,x_application_id                   IN NUMBER
55   ,x_product_rule_type_code           IN VARCHAR2
56   ,x_product_rule_code                IN VARCHAR2
57   ,x_start_date_active                IN DATE
58   ,x_end_date_active                  IN DATE
59   ,x_last_update_date                 IN DATE
60   ,x_last_updated_by                  IN NUMBER
61   ,x_last_update_login                IN NUMBER);
62 
63 PROCEDURE delete_row
64   (x_acctg_method_rule_id             IN NUMBER);
65 
66 END xla_acctg_method_rules_f_pkg;