DBA Data[Home] [Help]

APPS.PA_PWP_NOTIFICATION dependencies on WF_EVENT

Line 41: -- p_event WF_EVENT_T YES Event Details -

37: -- applying a receipt. -
38: -- Parameters Type Required Description and Purpose-
39: -- --------------------------- ------ -------- ------------------------
40: -- p_subscription_guid RAW YES Subscription details -
41: -- p_event WF_EVENT_T YES Event Details -
42: --(Refer ARU file wftype2s.sql) -
43: -------------------------------------------------------------------------------
44: --
45: FUNCTION Receive_BE(p_subscription_guid In RAW

Line 46: ,p_event IN OUT NOCOPY WF_EVENT_T) RETURN VARCHAR2

42: --(Refer ARU file wftype2s.sql) -
43: -------------------------------------------------------------------------------
44: --
45: FUNCTION Receive_BE(p_subscription_guid In RAW
46: ,p_event IN OUT NOCOPY WF_EVENT_T) RETURN VARCHAR2
47: IS
48: l_org_id NUMBER;
49: l_user_id NUMBER;
50: l_resp_id NUMBER;

Line 97: WF_EVENT.setErrorInfo(p_event, 'ERROR');

93:
94: EXCEPTION
95: WHEN OTHERS THEN
96: WF_CORE.CONTEXT('PA_PWP_NOTIFICATION', 'RECEIVE_BE', p_event.getEventName(), p_subscription_guid);
97: WF_EVENT.setErrorInfo(p_event, 'ERROR');
98: RETURN 'ERROR';
99:
100: END Receive_BE;
101: