DBA Data[Home] [Help]

PACKAGE: APPS.XLA_LINE_DEFINITIONS_F_PVT

Source


1 PACKAGE xla_line_definitions_f_pvt AS
2 /* $Header: xlathjld.pkh 120.2 2005/08/17 20:43:38 dcshah ship $ */
3 
4 PROCEDURE insert_row
5   (x_rowid                            IN OUT NOCOPY VARCHAR2
6   ,x_application_id                   IN NUMBER
7   ,x_amb_context_code                 IN VARCHAR2
8   ,x_event_class_code                 IN VARCHAR2
9   ,x_event_type_code                  IN VARCHAR2
10   ,x_line_definition_owner_code       IN VARCHAR2
11   ,x_line_definition_code             IN VARCHAR2
12   ,x_validation_status_code           IN VARCHAR2
13   ,x_enabled_flag                     IN VARCHAR2
14   ,x_budgetary_control_flag           IN VARCHAR2
15   ,x_transaction_coa_id               IN NUMBER
16   ,x_accounting_coa_id                IN NUMBER
17   ,x_name                             IN VARCHAR2
18   ,x_description                      IN VARCHAR2
19   ,x_creation_date                    IN DATE
20   ,x_created_by                       IN NUMBER
21   ,x_last_update_date                 IN DATE
22   ,x_last_updated_by                  IN NUMBER
23   ,x_last_update_login                IN NUMBER);
24 
25 PROCEDURE lock_row
26   (x_application_id                   IN NUMBER
27   ,x_amb_context_code                 IN VARCHAR2
28   ,x_event_class_code                 IN VARCHAR2
29   ,x_event_type_code                  IN VARCHAR2
30   ,x_line_definition_owner_code       IN VARCHAR2
31   ,x_line_definition_code             IN VARCHAR2
32   ,x_validation_status_code           IN VARCHAR2
33   ,x_enabled_flag                     IN VARCHAR2
34   ,x_budgetary_control_flag           IN VARCHAR2
35   ,x_transaction_coa_id               IN NUMBER
36   ,x_accounting_coa_id                IN NUMBER
37   ,x_name                             IN VARCHAR2
38   ,x_description                      IN VARCHAR2);
39 
40 PROCEDURE update_row
41  (x_application_id                   IN NUMBER
42  ,x_amb_context_code                 IN VARCHAR2
43  ,x_event_class_code                 IN VARCHAR2
44  ,x_event_type_code                  IN VARCHAR2
45  ,x_line_definition_owner_code       IN VARCHAR2
46  ,x_line_definition_code             IN VARCHAR2
47  ,x_validation_status_code           IN VARCHAR2
48  ,x_enabled_flag                     IN VARCHAR2
49  ,x_budgetary_control_flag           IN VARCHAR2
50  ,x_transaction_coa_id               IN NUMBER
51  ,x_accounting_coa_id                IN NUMBER
52  ,x_name                             IN VARCHAR2
53  ,x_description                      IN VARCHAR2
54  ,x_last_update_date                 IN DATE
55  ,x_last_updated_by                  IN NUMBER
56  ,x_last_update_login                IN NUMBER);
57 
58 PROCEDURE delete_row
59   (x_application_id                   IN NUMBER
60   ,x_amb_context_code                 IN VARCHAR2
61   ,x_event_class_code                 IN VARCHAR2
62   ,x_event_type_code                  IN VARCHAR2
63   ,x_line_definition_owner_code       IN VARCHAR2
64   ,x_line_definition_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_event_class_code                 IN VARCHAR2
72   ,p_event_type_code                  IN VARCHAR2
73   ,p_line_definition_owner_code       IN VARCHAR2
74   ,p_line_definition_code             IN VARCHAR2
75   ,p_name                             IN VARCHAR2
76   ,p_description                      IN VARCHAR2
77   ,p_owner                            IN VARCHAR2
78   ,p_last_update_date                 IN VARCHAR2
79   ,p_custom_mode                      IN VARCHAR2);
80 
81 END xla_line_definitions_f_pvt;