DBA Data[Home] [Help]

PACKAGE: APPS.WF_BES_FUNCS

Source


1 package wf_bes_funcs AUTHID CURRENT_USER as
2 /* $Header: WFBESFNS.pls 120.0 2005/09/02 12:46:44 mputhiya noship $ */
3 
4 TYPE varchar_array is VARRAY(50) OF varchar2(128);
5 
6 --
7 -- Procedure
8 --   GenerateStatic
9 --
10 -- Purpose
11 --    The procedure generates the static function calls
12 --
13 -- Returns:
14 --
15 --
16 Procedure GenerateStatic (retcode  out nocopy varchar2,
17                           errbuf   out nocopy varchar2,
18                      	  p_object_type in varchar2,
19 			  p_key    in varchar2);
20 
21 --
22 -- Procedure
23 --   StaticGenerateRule
24 --
25 -- Purpose
26 --    This procedure generates the static generate and rule functions
27 --    based on the correlation id
28 --
29 --
30 Procedure StaticGenerateRule(p_correlation_ids in varchar_array);
31 
32 --
33 -- Procedure
34 --   StaticQH
35 --
36 -- Purpose
37 --    The procedure generates the static enque/dequeue function calls
38 --
39 --
40 Procedure StaticQH(p_agent_names in varchar_array);
41 
42 
43 END WF_BES_FUNCS;