DBA Data[Home] [Help]

PACKAGE: APPS.EGO_DOM_WS_INTERFACE_PUB

Source


1 package EGO_DOM_WS_INTERFACE_PUB AS
2 /*$Header: EGOPITFS.pls 120.0 2005/07/11 23:02:46 dedatta noship $ */
3 
4 ----------------------------------------------------------------------------
5 -- 1. Add_OFO_Group_Member
6 ----------------------------------------------------------------------------
7 PROCEDURE Add_OFO_Group_Member (
8    p_api_version	IN	NUMBER,
9    p_init_msg_list	IN	VARCHAR2,
10    p_commit		IN	VARCHAR2,
11    p_group_id      	IN	NUMBER,
12    p_member_id      	IN	NUMBER,
13    x_return_status	OUT	NOCOPY VARCHAR2,
14    x_msg_count		OUT	NOCOPY NUMBER,
15    x_msg_data		OUT	NOCOPY VARCHAR2
16    );
17    ------------------------------------------------------------------------
18     -- Start OF comments
19     -- API name  : Add_OFO_Group_Member
20     -- TYPE      : Public
21     -- Pre-reqs  : None
22     -- FUNCTION  : Add a member to the corresponding OFO Group.
23     --
24     --
25     -- Parameters:
26     --     IN    : p_api_version		IN  NUMBER	(required)
27     --			API Version of this procedure
28     --             p_init_msg_level	IN  VARCHAR2	(optional)
29     --                  DEFAULT = FND_API.G_FALSE
30     --                  Indicates whether the message stack needs to be cleared
31     --             p_commit		IN  VARCHAR2	(optional)
32     --                  DEFAULT = FND_API.G_FALSE
33     --                  Indicates whether the data should be committed
34     --             p_group_id		IN  NUMBER	(required)
35     --			Group to which the member is being added
36     --			Eg., A Group
37     --             p_member_id	IN  VARCHAR2	(required)
38     --			Member which is to be added
39     --			Eg., PERSON
40     --
41     --     OUT   : x_return_status	OUT  NUMBER
42     --			Result of all the operations
43     --                    FND_API.G_RET_STS_SUCCESS if success
44     --                    FND_API.G_RET_STS_ERROR if error
45     --                    FND_API.G_RET_STS_UNEXP_ERROR if unexpected error
46     --             x_msg_count		OUT  NUMBER
47     --			number of messages in the message list
48     --             x_msg_data		OUT  VARCHAR2
49     --			  if number of messages is 1, then this parameter
50     --			contains the message itself
51     --
52     -- Called From:
53     --    ego_party_pub.add_group_member
54     --
55     -- Version: Current Version 1.0
56     -- Previous Version :  None
57     -- Notes  :
58     --
59     -- END OF comments
60    ------------------------------------------------------------------------
61 
62 
63 END EGO_DOM_WS_INTERFACE_PUB;