DBA Data[Home] [Help]

PACKAGE: APPS.WF_INITIATE

Source


1 package WF_INITIATE AUTHID CURRENT_USER as
2 /* $Header: wfinits.pls 115.11 2002/11/11 05:34:53 rosthoma ship $ */
3 
4 -- complex name#type identifiers from the web page
5 type name_array is table of varchar2(320) index by binary_integer;
6 -- values from the web page.
7 type value_array is table of varchar2(2000) index by binary_integer;
8 
9 
10 -- display all itemtypes in the database
11 procedure ItemType;
12 
13 -- create input form for all data
14 -- required to run the process
15 procedure Process(
16   ItemType in varchar2 default 'WFDEMO');
17 
18 -- SubmitWorkflow
19 --   Submit the workflow
20 -- IN
21 procedure SubmitWorkflow(
22   itemtype      in varchar2 default null,
23   itemkey       in varchar2 default null,
24   userkey       in varchar2 default null,
25   process       in varchar2 default null,
26   Owner  	in varchar2 default null,
27   display_Owner in varchar2 default null,
28   h_fnames      in Name_Array,
29   h_fvalues     in Value_Array,
30   h_fdocnames   in Value_Array,
31   h_counter     in varchar2);
32 
33 
34 
35 end WF_INITIATE;