DBA Data[Home] [Help]

APPS.UMX_REGISTER_USER_PVT dependencies on WF_EVENT_T

Line 21: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

17: -- IN
18: -- the signature follows Workflow business events standards
19: -- p_subscription_guid - Run/Cancel/Timeout
20: -- IN/OUT
21: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
22: -- subscriber of the event
23: --
24:
25:

Line 27: p_event in out NOCOPY WF_EVENT_T

23: --
24:
25:
26: function create_person_party(p_subscription_guid in raw,
27: p_event in out NOCOPY WF_EVENT_T
28: ) return varchar2;
29:
30: --
31: -- Procedure

Line 43: --Procedure RegisterIndividualUser(p_event in out NOCOPY WF_EVENT_T);

39: -- command - Run/Cancel/Timeout
40: -- OUT
41: -- resultout - result of the process based on which the next step is followed
42:
43: --Procedure RegisterIndividualUser(p_event in out NOCOPY WF_EVENT_T);
44:
45: --
46: -- Procedure
47: -- check_approval_defined

Line 58: --Procedure RegisterBusinessUser(p_event in out NOCOPY WF_EVENT_T);

54: -- command - Run/Cancel/Timeout
55: -- OUT
56: -- resultout - result of the process based on which the next step is followed
57:
58: --Procedure RegisterBusinessUser(p_event in out NOCOPY WF_EVENT_T);
59:
60:
61: G_CREATED_BY_MODULE VARCHAR2(3) := 'UMX';
62:

Line 96: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

92: -- IN
93: -- the signature follows Workflow business events standards
94: -- p_subscription_guid - Run/Cancel/Timeout
95: -- IN/OUT
96: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
97: -- subscriber of the event
98: --
99:
100:

Line 104: p_event in out NOCOPY WF_EVENT_T)

100:
101:
102:
103: function Register_Individual_user(p_subscription_guid in raw,
104: p_event in out NOCOPY WF_EVENT_T)
105: return varchar2;
106:
107: function Register_Business_user(p_subscription_guid in raw,
108: p_event in out NOCOPY WF_EVENT_T)

Line 108: p_event in out NOCOPY WF_EVENT_T)

104: p_event in out NOCOPY WF_EVENT_T)
105: return varchar2;
106:
107: function Register_Business_user(p_subscription_guid in raw,
108: p_event in out NOCOPY WF_EVENT_T)
109: return varchar2;
110:
111: --
112: -- Function