DBA Data[Home] [Help]

PACKAGE: APPS.CS_INTERACTION_UTL

Source


1 PACKAGE CS_Interaction_UTL AUTHID CURRENT_USER AS
2 /* $Header: csucis.pls 115.0 99/07/16 09:02:57 porting s $ */
3 
4 ------------------------------------------------------------------------------
5 --  Procedure	: Validate_Parent_Interaction
6 --  Description	: Validate that the parent interaction is a valid interaction
7 --		  within the given operating unit
8 --  Parameters  :
9 --	p_api_name		IN	VARCHAR2(30)	Required
10 --		Name of the calling API (used for messages)
11 --	p_parameter_name	IN	VARCHAR2(30)	Required
12 --		Name of the parameter in the calling API
13 --		(e.g. 'p_parent_interaction_id')
14 --	p_parent_interaction_id	IN	NUMBER		Required
15 --		Value of the customer number to be converted
16 --	p_org_id		IN	NUMBER		Optional
17 --		Operating Unit ID
18 --	x_return_status		OUT	VARCHAR2(1)
19 --		FND_API.G_RET_STS_SUCCESS	=> interaction is valid
20 --		FND_API.G_RET_STS_ERROR		=> interaction is invalid
21 ------------------------------------------------------------------------------
22 
23 PROCEDURE Validate_Parent_Interaction
24   ( p_api_name			IN	VARCHAR2,
25     p_parameter_name		IN	VARCHAR2,
26     p_parent_interaction_id	IN	NUMBER,
27     p_org_id			IN	NUMBER DEFAULT NULL,
28     x_return_status		OUT	VARCHAR2 );
29 
30 END CS_Interaction_UTL;