DBA Data[Home] [Help]

PACKAGE: APPS.CCT_TELESALESROUTING_PUB

Source


1 PACKAGE CCT_TeleSalesRouting_PUB  as
2 /* $Header: ccttswfs.pls 120.0 2005/06/02 10:16:42 appldev noship $ */
3 
4 
5 
6 
7 /*------------------------------------------------------------------------
8    TeleSales Routing Workflow Activities
9 *------------------------------------------------------------------------*/
10 
11 /* -----------------------------------------------------------------------
12   Activity Name : WF_TeleSalesAgentForParty_FIL
13   To filter the agents by Party ID
14 	Prerequisites : The Customer initialization phase(CCT_CUSTOMER_INIT)
15     must be completed before using this filter
16 	IN
17      itemtype  - item type
18 	 itemkey   - item key
19       actid     - process activity instance id
20 	 funmode   - execution mode
21 	OUT
22 	 No output
23 	ITEM ATTRIBUTES REFERENCED
24 	  PARTYID    - the customer ID
25 	  MEDIAITEMID    - the MediaItem ID
26 *-----------------------------------------------------------------------*/
27 
28 procedure WF_TeleSalesAgentForParty_FIL (
29 	itemtype   	in varchar2
30 	, itemkey  	in varchar2
31 	, actid    	in number
32 	, funmode 	in varchar2
33 	, resultout 	in out nocopy varchar2) ;
34 
35 
36 /* -----------------------------------------------------------------------
37   Activity Name : WF_SalesAgentForSourceCode_FIL
38   To filter the agents by Source Code
39 	Prerequisite : Source Code must exist
40 	IN
41      itemtype  - item type
42 	 itemkey   - item key
43       actid     - process activity instance id
44 	 funmode   - execution mode
45 	OUT
46 	 No output
47 	ITEM ATTRIBUTES REFERENCED
48 	  SOURCECODE    - the Source Code
49 	  MEDIAITEMID    - the MediaItem ID
50 *-----------------------------------------------------------------------*/
51 
52 procedure WF_SalesAgentForSourceCode_FIL (
53 	itemtype   	in varchar2
54 	, itemkey  	in varchar2
55 	, actid    	in number
56 	, funmode 	in varchar2
57 	, resultout 	in out nocopy varchar2) ;
58 
59 
60 END CCT_TeleSalesRouting_PUB;