DBA Data[Home] [Help]

TYPE BODY: APPS.WF_EVENT_SUBS_OBJ

Source


1 TYPE BODY WF_Event_Subs_Obj AS
2 
3   STATIC PROCEDURE initialize(p_event_subs_obj IN OUT NOCOPY WF_Event_Subs_Obj) is
4 
5   begin
6     p_event_subs_obj := WF_Event_Subs_Obj(null,       -- guid
7                                           null,       -- system_guid
8                                           null,       -- source_type
9                                           null,       -- source_agent_guid
10                                           0,          -- phase
11                                           null,       -- rule_data
12                                           null,       -- out_agent_guid
13                                           null,       -- to_agent_guid
14                                           0,          -- priority
15                                           null,       -- rule_function
16                                           null,       -- wf_process_type
17                                           null,       -- wf_process_name
18                                           null,       -- parameters
19                                           null,       -- expression
20                                           0,          -- invocation_id
21                                           null,       -- map_code
22                                           null,       -- standard_type
23                                           null,       -- standard_code
24                                           null,       -- on_error_code
25                                           null        -- action_code
26 					  );
27   end initialize;
28 
29 end;