DBA Data[Home] [Help]

PACKAGE: APPS.XLA_EVENT_CLASS_PREDECS_F_PKG

Source


1 PACKAGE xla_event_class_predecs_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbecp.pkh 120.1 2005/04/20 20:19:50 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_event_class_predecs_f_pkg                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_event_class_predecs                        |
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_event_class_code                 IN VARCHAR2
23   ,x_prior_event_class_code           IN VARCHAR2
24   ,x_creation_date                    IN DATE
25   ,x_created_by                       IN NUMBER
26   ,x_last_update_date                 IN DATE
27   ,x_last_updated_by                  IN NUMBER
28   ,x_last_update_login                IN NUMBER);
29 
30 PROCEDURE delete_row
31   (x_application_id                   IN NUMBER
32   ,x_event_class_code                 IN VARCHAR2
33   ,x_prior_event_class_code           IN VARCHAR2);
34 
35 PROCEDURE lock_row
36   (x_rowid                            IN OUT NOCOPY VARCHAR2
37   ,x_application_id                   IN NUMBER
38   ,x_event_class_code                 IN VARCHAR2
39   ,x_prior_event_class_code           IN VARCHAR2);
40 
41 PROCEDURE load_row
42   (p_application_short_name           IN VARCHAR2
43   ,p_event_class_code                 IN VARCHAR2
44   ,p_prior_event_class_code           IN VARCHAR2
45   ,p_owner                            IN VARCHAR2
46   ,p_last_update_date                 IN VARCHAR2);
47 
48 END xla_event_class_predecs_f_pkg;