DBA Data[Home] [Help]

PACKAGE: APPS.IBC_UTILITIES_GRP

Source


1 PACKAGE IBC_UTILITIES_GRP AUTHID CURRENT_USER as
2 /* $Header: ibcgutls.pls 115.1 2003/08/04 20:57:49 enunez noship $ */
3 
4 
5 -- --------------------------------------------------------------
6 -- Get_Rendition_File_Id
7 --
8 -- Valid content item id or citem version id must be given.  If
9 -- version id is given, the rendition returned will be for that
10 -- particular version.  If version id is not given and valid
11 -- content item id is given, the rendition returned will be for
12 -- the live version.
13 --
14 -- --------------------------------------------------------------
15 PROCEDURE Get_Rendition_File_Id (
16  	p_api_version			  IN NUMBER    DEFAULT 1.0,
17   p_init_msg_list	  IN VARCHAR2  DEFAULT FND_API.g_false,
18   p_content_item_id IN NUMBER    DEFAULT NULL,
19  	p_citem_ver_id		  IN	NUMBER    DEFAULT NULL,
20   p_language        IN VARCHAR2  DEFAULT NULL,
21   p_mime_type       IN VARCHAR2,
22  	x_file_id      			OUT	NOCOPY NUMBER,
23  	x_return_status			OUT NOCOPY VARCHAR2,
24   x_msg_count			    OUT NOCOPY NUMBER,
25   x_msg_data			     OUT NOCOPY VARCHAR2
26 );
27 
28 -- --------------------------------------------------------------
29 -- Get_accessible_content_items
30 --
31 -- --------------------------------------------------------------
32 PROCEDURE Get_Accessible_Content_Items (
33  	p_api_version			    IN NUMBER   DEFAULT 1.0,
34   p_init_msg_list	    IN VARCHAR2 DEFAULT FND_API.g_false,
35   p_user_id           IN NUMBER   DEFAULT NULL,
36   p_language          IN VARCHAR2 DEFAULT NULL,
37   p_permission_code   IN VARCHAR2,
38   p_directory_node_id IN NUMBER   DEFAULT NULL,
39   p_path_pattern      IN VARCHAR2 DEFAULT NULL,
40   p_include_subdirs   IN VARCHAR2 DEFAULT FND_API.g_false,
41   x_citem_ids         OUT NOCOPY JTF_NUMBER_TABLE,
42   x_citem_names       OUT NOCOPY JTF_VARCHAR2_TABLE_100,
43  	x_return_status			  OUT NOCOPY VARCHAR2,
44   x_msg_count			      OUT NOCOPY NUMBER,
45   x_msg_data			       OUT NOCOPY VARCHAR2
46 );
47 
48 -- --------------------------------------------------------------
49 -- Get_citem_stylesheets
50 --
51 -- --------------------------------------------------------------
52 PROCEDURE Get_citem_Stylesheets (
53  	p_api_version			  IN NUMBER    DEFAULT 1.0,
54   p_init_msg_list	  IN VARCHAR2  DEFAULT FND_API.g_false,
55   p_content_item_id IN NUMBER,
56   p_language        IN VARCHAR2  DEFAULT NULL,
57   x_citem_ids       OUT NOCOPY JTF_NUMBER_TABLE,
58   x_citem_names     OUT NOCOPY JTF_VARCHAR2_TABLE_100,
59  	x_return_status			OUT NOCOPY VARCHAR2,
60   x_msg_count			    OUT NOCOPY NUMBER,
61   x_msg_data			     OUT NOCOPY VARCHAR2
62 );
63 
64 
65 
66 END IBC_UTILITIES_GRP;