DBA Data[Home] [Help]

PACKAGE: APPS.JTF_IH_PVT

Source


1 PACKAGE JTF_IH_PVT AUTHID CURRENT_USER AS
2 /* $Header: JTFIHPVS.pls 115.7 2000/01/24 14:58:47 pkm ship     $ */
3 -- Start of comments
4 --  Procedure   : Create_Interaction_m
5 --  Type        : Public API
6 --  Usage       : Creates a customer interaction record in the table
7 --                JTF_IH_INTERACTIONS and related activity(ies), media item
8 --                and related media item life cycle segment
9 --  Pre-reqs    : None
10 --
11 --
12 --  Standard OUT Parameters:
13 --      x_return_status                 OUT     VARCHAR2(1)
14 --      x_msg_count                     OUT     NUMBER
15 --      x_msg_data                      OUT     VARCHAR2(2000)
16 --
17 --  Interaction IN Parameters:
18 --      p_resp_appl_id                  IN      NUMBER          Optional(1)
19 --              Application identifier
20 --              Default = FND_GLOBAL.RESP_APPL_ID or NULL
21 --      p_resp_id                       IN      NUMBER          Optional(1)
22 --              Responsibility identifier
23 --              Default = FND_GLOBAL.RESP_ID or NULL
24 --      p_user_id                       IN      NUMBER          Optional
25 --              Corresponds to the column USER_ID in the table FND_USER, and
26 --              identifies the Oracle Applications user
27 --              Default = FND_GLOBAL.USER_ID
28 --      p_login_id                      IN      NUMBER          Optional
29 --              Corresponds to the column LOGIN_ID in the table FND_LOGINS,
30 --              and identifies the login session
31 --              Default = FND_GLOBAL.LOGIN_ID or NULL
32 --      p_interaction_rec IN jtf_ih_pub.interaction_rec_type
33 --      p_activities IN jtf_ih_pub.activity_table_type
34 --			p_media					IN	jtf_ih_pub.media_rec_type,
35 --			p_mlcs					IN	jtf_ih_pub.mlcs_table_type
36 --
37 --	Version	:	Initial version	1.0
38 --
39 --	Notes       :
40 --	(1)  The application ID, responsibility ID, and user ID determine which
41 --       profile values are used as default.
42 --	(2) You must pass in segment IDs for none or all descriptive flexfield
43 --       columns that might be used in the descriptive flexfield.
44 --
45 -- End of comments
46 PROCEDURE Create_Interaction_m
47 (
48 	p_resp_appl_id		IN	NUMBER	DEFAULT NULL,
49 	p_resp_id					IN	NUMBER	DEFAULT NULL,
50 	p_user_id					IN	NUMBER,
51 	p_login_id				IN	NUMBER	DEFAULT NULL,
52 	x_return_status		OUT	VARCHAR2,
53 	x_msg_count				OUT	NUMBER,
54 	x_msg_data				OUT	VARCHAR2,
55 	p_interaction_rec	IN	jtf_ih_pub.interaction_rec_type,
56 	p_activities			IN	jtf_ih_pub.activity_tbl_type,
57 	p_media					IN	jtf_ih_pub.media_rec_type,
58 	p_mlcs					IN	jtf_ih_pub.mlcs_tbl_type
59 );
60 END JTF_IH_PVT;