DBA Data[Home] [Help]

PACKAGE: APPS.XLA_AAD_UPLOAD_PVT

Source


1 PACKAGE xla_aad_upload_pvt AS
2 /* $Header: xlaalupl.pkh 120.3 2005/09/10 00:07:15 wychan noship $ */
3 
4 -------------------------------------------------------------------------------
5 -- declaring global constants
6 -------------------------------------------------------------------------------
7 -------------------------------------------------------------------------------
8 -- Public API
9 -------------------------------------------------------------------------------
10 
11 --=============================================================================
12 --
13 -- Name: upload
14 -- Description: This API upload the AADs and its component from the data file
15 --              to the staging area of the AMB context
16 --
17 --=============================================================================
18 PROCEDURE upload
19 (p_api_version           IN NUMBER
20 ,x_return_status         IN OUT NOCOPY VARCHAR2
21 ,p_application_id        IN INTEGER
22 ,p_source_pathname       IN VARCHAR2
23 ,p_amb_context_code      IN VARCHAR2
24 ,x_upload_status         IN OUT NOCOPY VARCHAR2);
25 
26 --=============================================================================
27 --
28 -- Name: post_upload
29 -- Description: This API is called only if FNDLOAD is not run as part of the
30 --              report
31 --
32 --=============================================================================
33 FUNCTION post_upload
34 (p_application_id        IN INTEGER
35 ,p_amb_context_code      IN VARCHAR2
36 ,p_staging_context_code  IN VARCHAR2)
37 RETURN VARCHAR2;
38 
39 END xla_aad_upload_pvt;