DBA Data[Home] [Help]

PACKAGE: APPS.XLA_MAPPING_SETS_F_PKG

Source


1 PACKAGE xla_mapping_sets_f_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlathmps.pkh 120.22 2005/05/05 23:08:31 wychan ship $ */
3 /*======================================================================+
4 |             Copyright (c) 2001-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_mapping_sets                                                   |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Forms PL/SQL Wrapper for xla_mapping_sets                          |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    Generated from XLAUTB.                                             |
16 |                                                                       |
17 +======================================================================*/
18 
19 
20 
21 PROCEDURE insert_row
22   (x_rowid                            IN OUT NOCOPY VARCHAR2
23   ,x_mapping_set_code                 IN VARCHAR2
24   ,x_amb_context_code                 IN VARCHAR2
25   ,x_view_application_id              IN NUMBER
26   ,x_lookup_type                      IN VARCHAR2
27   ,x_accounting_coa_id                IN NUMBER
28   ,x_value_set_id                     IN NUMBER
29   ,x_flexfield_assign_mode_code       IN VARCHAR2
30   ,x_flexfield_segment_code           IN VARCHAR2
31   ,x_enabled_flag                     IN VARCHAR2
32   ,x_flex_value_set_id                IN NUMBER
33   ,x_name                             IN VARCHAR2
34   ,x_description                      IN VARCHAR2
35   ,x_creation_date                    IN DATE
36   ,x_created_by                       IN NUMBER
37   ,x_last_update_date                 IN DATE
38   ,x_last_updated_by                  IN NUMBER
39   ,x_last_update_login                IN NUMBER);
40 
41 PROCEDURE lock_row
42   (x_mapping_set_code                 IN VARCHAR2
43   ,x_amb_context_code                 IN VARCHAR2
44   ,x_view_application_id              IN NUMBER
45   ,x_lookup_type                      IN VARCHAR2
46   ,x_accounting_coa_id                IN NUMBER
47   ,x_value_set_id                     IN NUMBER
48   ,x_flexfield_assign_mode_code       IN VARCHAR2
49   ,x_flexfield_segment_code           IN VARCHAR2
50   ,x_enabled_flag                     IN VARCHAR2
51   ,x_flex_value_set_id                IN NUMBER
52   ,x_name                             IN VARCHAR2
53   ,x_description                      IN VARCHAR2);
54 
55 PROCEDURE update_row
56  (x_mapping_set_code                 IN VARCHAR2
57  ,x_amb_context_code                 IN VARCHAR2
58  ,x_view_application_id              IN NUMBER
59  ,x_lookup_type                      IN VARCHAR2
60  ,x_accounting_coa_id                IN NUMBER
61  ,x_value_set_id                     IN NUMBER
62  ,x_flexfield_assign_mode_code       IN VARCHAR2
63  ,x_flexfield_segment_code           IN VARCHAR2
64  ,x_enabled_flag                     IN VARCHAR2
65  ,x_flex_value_set_id                IN NUMBER
66  ,x_name                             IN VARCHAR2
67  ,x_description                      IN VARCHAR2
68  ,x_last_update_date                 IN DATE
69  ,x_last_updated_by                  IN NUMBER
70  ,x_last_update_login                IN NUMBER);
71 
72 PROCEDURE delete_row
73   (x_mapping_set_code                 IN VARCHAR2
74   ,x_amb_context_code                 IN VARCHAR2);
75 
76 PROCEDURE add_language;
77 
78 PROCEDURE translate_row
79   (p_amb_context_code       IN VARCHAR2
80   ,p_mapping_set_code       IN VARCHAR2
81   ,p_name                   IN VARCHAR2
82   ,p_description            IN VARCHAR2
83   ,p_owner                  IN VARCHAR2
84   ,p_last_update_date       IN VARCHAR2
85   ,p_custom_mode            IN VARCHAR2);
86 
87 END xla_mapping_sets_f_pkg;