DBA Data[Home] [Help]

PACKAGE: APPS.EGO_ITEM_AML_GRP

Source


1 PACKAGE EGO_ITEM_AML_GRP AUTHID CURRENT_USER AS
2 /* $Header: EGOGAMLS.pls 120.0 2005/06/28 01:57:34 srajapar noship $ */
3 
4 ---------------------------------------------------------------------------
5 -- Start of comments
6 -- API name  : Populate_Intf_With_Proddata
7 -- Type      : Public
8 -- Pre-reqs  : None
9 -- FUNCTION  : To populate the interface with the production data
10 --
11 -- Parameters:
12 --     IN    :
13 --        p_api_version           IN   NUMBER
14 --              The version of the API being called
15 --
16 --        p_commit                IN   VARCHAR2
17 --              Determines whether to commit the data or not
18 --              FND_API.G_TRUE allows you to commit data
19 --              on all other values, the data is not committed.
20 --
21 --        p_data_set_id           IN   NUMBER --  mandatory parameter
22 --              The job number
23 --
24 --        p_pf_to_process         IN   NUMBER --  mandatory parameter
25 --              Determines which lines need to populated with production data
26 --
27 --        p_pf_after_population   IN  NUMBER
28 --              Determines the process flag of the lines that were modified
29 --
30 --     OUT    :
31 --             x_return_status          OUT NOCOPY VARCHAR2
32 --             x_msg_count              OUT NOCOPY NUMBER
33 --             x_msg_data               OUT NOCOPY VARCHAR2
34 --
35 --  Version:		Current version 1.0
36 -- ----------------------------------------------------------------------
37 
38 Procedure Populate_Intf_With_Proddata (
39     p_api_version            IN  NUMBER
40    ,p_commit                 IN  VARCHAR2
41    ,p_data_set_id            IN  NUMBER
42    ,p_pf_to_process          IN  NUMBER
43    ,p_pf_after_population    IN  NUMBER
44    ,x_return_status         OUT  NOCOPY VARCHAR2
45    ,x_msg_count             OUT  NOCOPY NUMBER
46    ,x_msg_data              OUT  NOCOPY VARCHAR2
47    );
48 
49 END EGO_ITEM_AML_GRP;
50