DBA Data[Home] [Help]

APPS.HZ_IMP_ADDRESS_VAL_PKG dependencies on WF_EVENT_T

Line 70: -- 3) Get returned validated xml doc, raise another wf event to parse

66: --
67: -- This function rule will do the following
68: -- 1) Get the generated xml doc by ecx_standard.generate
69: -- 2) Pass the xml doc to HZ_LOCATION_SERVICES_PUB.submit_addrval_doc
70: -- 3) Get returned validated xml doc, raise another wf event to parse
71: -- the validated addresses.
72: ------------------------------------------------------------------------
73: function outboundxml_rule(
74: p_subscription_guid in raw,

Line 75: p_event in out nocopy wf_event_t

71: -- the validated addresses.
72: ------------------------------------------------------------------------
73: function outboundxml_rule(
74: p_subscription_guid in raw,
75: p_event in out nocopy wf_event_t
76: ) return varchar2;
77:
78: -----------------------------------------------------------------------
79: -- Folowing Rule Function will be called from event subscription,

Line 87: p_event in out nocopy wf_event_t

83: -- This function rule will process the inbound xml doc and update
84: -- the hz_imp_addresses_int table with validated address components.
85: ------------------------------------------------------------------------
86: FUNCTION inboundxml_rule(p_subscription_guid IN RAW,
87: p_event in out nocopy wf_event_t
88: ) RETURN VARCHAR2;
89: end;