DBA Data[Home] [Help]

APPS.ECX_RULE dependencies on WF_EVENT_T

Line 7: p_event in out nocopy wf_event_t

3: null_trigger_id exception;
4: function outbound_rule
5: (
6: p_subscription_guid in raw,
7: p_event in out nocopy wf_event_t
8: ) return varchar2;
9:
10: --
11: -- Inbound_Rule (PUBLIC)

Line 24: p_event in out nocopy wf_event_t

20:
21: function inbound_rule
22: (
23: p_subscription_guid in raw,
24: p_event in out nocopy wf_event_t
25: )
26: return varchar2;
27:
28: -- Inbound_Rule2 (PUBLIC)

Line 38: p_event in out nocopy wf_event_t) return varchar2;

34: --
35: -- Another inbound_rule function
36:
37: function inbound_rule2 (p_subscription_guid in raw,
38: p_event in out nocopy wf_event_t) return varchar2;
39:
40:
41: function ReceiveTPMessage
42: (

Line 44: p_event in out nocopy wf_event_t

40:
41: function ReceiveTPMessage
42: (
43: p_subscription_guid in raw,
44: p_event in out nocopy wf_event_t
45: )
46: return varchar2;
47:
48: function CreateTPMessage (

Line 50: p_event in out nocopy wf_event_t

46: return varchar2;
47:
48: function CreateTPMessage (
49: p_subscription_guid in raw,
50: p_event in out nocopy wf_event_t
51: ) return varchar2;
52:
53: function isTPEnabled (
54: p_transaction_type in varchar2,

Line 65: p_event in out nocopy wf_event_t

61: return boolean;
62:
63: function TPPreProcessing (
64: p_subscription_guid in raw,
65: p_event in out nocopy wf_event_t
66: ) return varchar2;
67:
68:
69: end ecx_rule;