DBA Data[Home] [Help]

PACKAGE: APPS.XLA_ACCT_CLASS_ASSGNS_F_PKG

Source


1 PACKAGE xla_acct_class_assgns_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbaca.pkh 120.0 2005/05/24 21:47:14 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_acct_class_assgns                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_acct_class_assgns                  |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    Generated from XLAUTB.                                             |
16 |                                                                       |
17 +======================================================================*/
18 
19 PROCEDURE insert_row
20   (x_rowid                            IN OUT NOCOPY VARCHAR2
21   ,x_program_code                     IN VARCHAR2
22   ,x_program_owner_code               IN VARCHAR2
23   ,x_assignment_code                  IN VARCHAR2
24   ,x_assignment_owner_code            IN VARCHAR2
25   ,x_accounting_class_code            IN VARCHAR2
26   ,x_creation_date                    IN DATE
27   ,x_created_by                       IN NUMBER
28   ,x_last_update_date                 IN DATE
29   ,x_last_updated_by                  IN NUMBER
30   ,x_last_update_login                IN NUMBER);
31 
32 PROCEDURE lock_row
33   (x_rowid                            IN OUT NOCOPY VARCHAR2
34   ,x_program_code                     IN VARCHAR2
35   ,x_program_owner_code               IN VARCHAR2
36   ,x_assignment_code                  IN VARCHAR2
37   ,x_assignment_owner_code            IN VARCHAR2
38   ,x_accounting_class_code            IN VARCHAR2);
39 
40 PROCEDURE delete_row
41   (x_program_code                     IN VARCHAR2
42   ,x_program_owner_code               IN VARCHAR2
43   ,x_assignment_code                  IN VARCHAR2
44   ,x_assignment_owner_code            IN VARCHAR2
45   ,x_accounting_class_code            IN VARCHAR2);
46 
47 PROCEDURE load_row
48 (p_program_code                     IN VARCHAR2
49 ,p_program_owner_code               IN VARCHAR2
50 ,p_assignment_code                  IN VARCHAR2
51 ,p_assignment_owner_code            IN VARCHAR2
52 ,p_accounting_class_code            IN VARCHAR2
53 ,p_owner                            IN VARCHAR2
54 ,p_last_update_date                 IN VARCHAR2);
55 
56 END xla_acct_class_assgns_f_pkg;