DBA Data[Home] [Help]

PACKAGE: APPS.CAC_VIEW_UTIL_PUB

Source


1 PACKAGE CAC_VIEW_UTIL_PUB AUTHID CURRENT_USER as
2 /* $Header: cacputls.pls 120.2 2006/06/30 10:40:43 sbarat noship $ */
3 /*#
4  * This package is a public utility for Calendar views.
5  * @rep:scope internal
6  * @rep:product CAC
7  * @rep:lifecycle active
8  * @rep:displayname Public Calendar View Util
9  * @rep:compatibility S
10  * @rep:category BUSINESS_ENTITY CAC_APPOINTMENT
11  */
12 
13 /**
14  * This function returns the list of attendees.
15  * The attendee names are delimited by comma.
16  * @param p_task_id task id
17  * @return The list of attendees
18  * @rep:displayname Get Attendees
19  * @rep:lifecycle active
20  * @rep:compatibility S
21  */
22 FUNCTION get_attendees(p_task_id IN NUMBER)
23 RETURN VARCHAR2;
24 
25 /**
26  * This function returns the concatednated information
27  * of items related to the given task id.
28  * @param p_task_id task id
29  * @return The related items
30  * @rep:displayname Get Related Items
31  * @rep:lifecycle active
32  * @rep:compatibility S
33  */
34 FUNCTION get_related_items (p_task_id IN NUMBER)
35 RETURN VARCHAR2;
36 
37 /**
38  * This function returns the concatednated information
39  * of location related to the given task id.
40  * @param p_task_id task id
41  * @return The location
42  * @rep:displayname Get Locations
43  * @rep:lifecycle active
44  * @rep:compatibility S
45  */
46 FUNCTION get_locations(p_task_id IN NUMBER)
47 RETURN VARCHAR2;
48 
49 END CAC_VIEW_UTIL_PUB;