DBA Data[Home] [Help]

PACKAGE: APPS.XLA_ENTITY_TYPES_PKG

Source


1 PACKAGE xla_entity_types_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlaamdee.pkh 120.3 2004/11/20 01:10:12 wychan ship $ */
3 /*======================================================================+
4 |             Copyright (c) 1995-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_entity_types_pkg                                               |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    XLA Entity Types Package                                           |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    01-May-01 Dimple Shah    Created                                   |
16 |                                                                       |
17 +======================================================================*/
18 
19 /*======================================================================+
20 |                                                                       |
21 | Public Function                                                       |
22 |                                                                       |
23 | event_classes_exist                                                   |
24 |                                                                       |
25 | Returns true if event classes exist for the entity                    |
26 |                                                                       |
27 +======================================================================*/
28 FUNCTION event_classes_exist
29   (p_event                            IN VARCHAR2
30   ,p_application_id                   IN NUMBER
31   ,p_entity_code                      IN VARCHAR2)
32 RETURN BOOLEAN;
33 
34 /*======================================================================+
35 |                                                                       |
36 | Public Procedure                                                      |
37 |                                                                       |
38 | delete_entity_details                                                 |
39 |                                                                       |
40 | Deletes all details of the entity                                     |
41 |                                                                       |
42 +======================================================================*/
43 
44 PROCEDURE delete_entity_details
45   (p_application_id                   IN NUMBER
46   ,p_entity_code                      IN VARCHAR2);
47 
48 /*======================================================================+
49 |                                                                       |
50 | Public Function                                                       |
51 |                                                                       |
52 | uncompile_definitions                                                 |
53 |                                                                       |
54 | Returns true if all the product rules for the entity are uncompiled   |
55 |                                                                       |
56 +======================================================================*/
57 
58 FUNCTION uncompile_definitions
59   (p_application_id                  IN NUMBER
60   ,p_entity_code                     IN VARCHAR2
61   ,x_product_rule_name               IN OUT NOCOPY VARCHAR2
62   ,x_product_rule_type               IN OUT NOCOPY VARCHAR2
63   ,x_event_class_name                IN OUT NOCOPY VARCHAR2
64   ,x_event_type_name                 IN OUT NOCOPY VARCHAR2
65   ,x_locking_status_flag             IN OUT NOCOPY VARCHAR2)
66 RETURN BOOLEAN;
67 
68 END xla_entity_types_pkg;