DBA Data[Home] [Help]

PACKAGE: APPS.XLA_TAB_PUB_PKG

Source


1 PACKAGE xla_tab_pub_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlatbpub.pkh 120.0 2004/06/01 13:44:33 aquaglia ship $ */
3 /*======================================================================+
4 |             Copyright (c) 1995-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_tab_pub_pkg                                                    |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    Transaction Account Builder Engine hook                            |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    18-FEB-04 A.Quaglia      Created                                   |
16 |                                                                       |
17 |                                                                       |
18 |                                                                       |
19 |                                                                       |
20 |                                                                       |
21 |                                                                       |
22 |                                                                       |
23 +======================================================================*/
24 
25 
26 /*======================================================================+
27 |                                                                       |
28 | Public Procedure                                                      |
29 |                                                                       |
30 | run                                                                   |
31 |                                                                       |
32 |   This program is static and is invoked by the Transaction Account    |
33 |   Builder package generated by SLA at Development time and            |
34 |   incorporated by Product Teams.                                      |
35 |   This program is just a wrapper and does not contain any             |
36 |   business logic as per the SLA Coding Standards.                     |
37 |   See xla_tab_pkg.run for the details about the procedure logic.      |
38 |                                                                       |
39 |   The OUT parameter x_return_status can have the following values:    |
40 |   FND_API.G_RET_STS_SUCCESS;                                          |
41 |   FND_API.G_RET_STS_ERROR;                                            |
42 |   FND_API.G_RET_STS_UNEXP_ERROR;                                      |
43 |   The other OUT parameters follow the FND API standard.               |
44 +======================================================================*/
45 PROCEDURE run
46           (
47             p_api_version                  IN         NUMBER
48            ,p_application_id               IN         NUMBER
49            ,p_account_definition_type_code IN         VARCHAR2
50            ,p_account_definition_code      IN         VARCHAR2
51            ,p_transaction_coa_id           IN         NUMBER
52            ,p_mode                         IN         VARCHAR2
53            ,x_return_status                OUT NOCOPY VARCHAR2
54            ,x_msg_count                    OUT NOCOPY NUMBER
55            ,x_msg_data                     OUT NOCOPY VARCHAR2
56           );
57 
58 END xla_tab_pub_pkg;