DBA Data[Home] [Help]

PACKAGE: APPS.AK_ON_OBJECTS_GRP

Source


1 package AK_ON_OBJECTS_GRP as
2 /* $Header: akdgons.pls 120.2 2005/09/15 22:26:38 tshort ship $ */
3 
4 -- Global constants holding the package and file names to be used by
5 -- messaging routines in the case of an unexpected error.
6 
7 G_PKG_NAME      CONSTANT    VARCHAR2(30) := 'AK_ON_OBJECTS_GRP';
8 
9 --
10 -- Procedure specs
11 --
12 --=======================================================
13 --  Procedure   UPLOAD
14 --
15 --  Usage       Group API for loading flows, objects, regions,
16 --              and attributes from a loader file to the database.
17 --              This API should be used for uploading all AK loader
18 --              files to a database.
19 --
20 --  Desc        This API calls the corresponding private API to read
21 --              the all flow, object, region, and attribute data
22 --              (including all the tables in these business objects)
23 --              from the loader file, and update them to the database.
24 --
25 --  Results     The API returns the standard p_return_status parameter
26 --              indicating one of the standard return statuses :
27 --                  * Unexpected error
28 --                  * Error
29 --                  * Success
30 --  Parameters
31 --
32 --  Version     Initial version number  =   1.0
33 --  History     Current version number  =   1.0
34 --=======================================================
35 procedure UPLOAD (
36   p_validation_level         IN      NUMBER := FND_API.G_VALID_LEVEL_FULL,
37   p_api_version_number       IN      NUMBER,
38   p_init_msg_tbl             IN      BOOLEAN := FALSE,
39   p_msg_count                OUT NOCOPY    NUMBER,
40   p_msg_data                 OUT NOCOPY    VARCHAR2,
41   p_return_status            OUT NOCOPY    VARCHAR2
42 );
43 
44 end AK_ON_OBJECTS_GRP;