DBA Data[Home] [Help]

PACKAGE: APPS.HZ_EXTRACT_ORG_CONT_BO_PVT

Source


1 PACKAGE HZ_EXTRACT_ORG_CONT_BO_PVT AUTHID CURRENT_USER AS
2 /*$Header: ARHEOCVS.pls 120.1 2005/07/13 21:25:15 awu noship $ */
3 /*
4  * This package contains the private APIs for org contact information.
5  * @rep:scope private
6  * @rep:product HZ
7  * @rep:display name org contact
8  * @rep:category BUSINESS_ENTITY HZ_ORG_CONTACTS
9  * @rep:lifecycle active
10  * @rep:doccd 115hztig.pdf Get APIs
11  */
12 
13   --------------------------------------
14   --
15   -- PROCEDURE get_org_contact_bos
16   --
17   -- DESCRIPTION
18   --     Get org contact information.
19   --
20   -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
21   --
22   -- ARGUMENTS
23   --   IN:
24   --     p_init_msg_list      Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.
25   --       p_organization_id       Org Contact Org id.
26   --
27   --   OUT:
28   --     x_org contact_objs  Table of org contact objects.
29   --     x_return_status      Return status after the call. The status can
30   --                          be fnd_api.g_ret_sts_success (success),
31   --                          fnd_api.g_ret_sts_error (error),
32   --                          FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
33   --     x_msg_count          Number of messages in message stack.
34   --     x_msg_data           Message text if x_msg_count is 1.
35   --
36   -- NOTES
37   --
38   -- MODIFICATION HISTORY
39   --
40   --
41   --   15-June-2005   AWU                Created.
42   --
43 
44 
45 
46  PROCEDURE get_org_contact_bos(
47     p_init_msg_list       IN            VARCHAR2 := fnd_api.g_false,
48     p_organization_id     IN            NUMBER,
49     p_org_contact_id	  IN            NUMBER := NULL,
50     p_action_type	  IN VARCHAR2 := NULL,
51     x_org_contact_objs    OUT NOCOPY    HZ_ORG_CONTACT_BO_TBL,
52     x_return_status       OUT NOCOPY    VARCHAR2,
53     x_msg_count           OUT NOCOPY    NUMBER,
54     x_msg_data            OUT NOCOPY    VARCHAR2
55   );
56 
57 
58 END HZ_EXTRACT_ORG_CONT_BO_PVT;