DBA Data[Home] [Help]

PACKAGE: APPS.XLA_LINE_DEFN_AC_ASSGNS_F_PVT

Source


1 PACKAGE xla_line_defn_ac_assgns_f_pvt AS
2 /* $Header: xlathlac.pkh 120.0 2004/11/04 01:38:30 wychan noship $ */
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_accounting_line_type_code        IN VARCHAR2
13   ,x_accounting_line_code             IN VARCHAR2
14   ,x_analy_criterion_type_code        IN VARCHAR2
15   ,x_analy_criterion_code             IN VARCHAR2
16   ,x_creation_date                    IN DATE
17   ,x_created_by                       IN NUMBER
18   ,x_last_update_date                 IN DATE
19   ,x_last_updated_by                  IN NUMBER
20   ,x_last_update_login                IN NUMBER);
21 
22 PROCEDURE lock_row
23   (x_application_id                   IN NUMBER
24   ,x_amb_context_code                 IN VARCHAR2
25   ,x_event_class_code                 IN VARCHAR2
26   ,x_event_type_code                  IN VARCHAR2
27   ,x_line_definition_owner_code       IN VARCHAR2
28   ,x_line_definition_code             IN VARCHAR2
29   ,x_accounting_line_type_code        IN VARCHAR2
30   ,x_accounting_line_code             IN VARCHAR2
31   ,x_analy_criterion_type_code        IN VARCHAR2
32   ,x_analy_criterion_code             IN VARCHAR2);
33 
34 PROCEDURE delete_row
35   (x_application_id                   IN NUMBER
36   ,x_amb_context_code                 IN VARCHAR2
37   ,x_event_class_code                 IN VARCHAR2
38   ,x_event_type_code                  IN VARCHAR2
39   ,x_line_definition_owner_code       IN VARCHAR2
40   ,x_line_definition_code             IN VARCHAR2
41   ,x_accounting_line_type_code        IN VARCHAR2
42   ,x_accounting_line_code             IN VARCHAR2
43   ,x_analy_criterion_type_code        IN VARCHAR2
44   ,x_analy_criterion_code             IN VARCHAR2);
45 
46 END xla_line_defn_ac_assgns_f_pvt;