DBA Data[Home] [Help]

APPS.WF_EVENT_FUNCTIONS_PKG dependencies on WF_CORE

Line 8: local_system_guid raw(16) := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

4: ------------------------------------------------------------------------------
5: /*
6: ** PRIVATE global variable
7: */
8: local_system_guid raw(16) := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
9: ------------------------------------------------------------------------------
10: /*
11: ** GENERATE - Wrapper around event system packages generate procedure
12: ** to make compliant with generic generate message api

Line 106: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'GENERATE', p_event_name,

102: return (msg);
103:
104: exception
105: when others then
106: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'GENERATE', p_event_name,
107: p_event_key,
108: substr(dtd,1,100));
109: raise;
110: end;

Line 210: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'RECEIVE', p_event.event_name,

206: return(l_result);
207:
208: exception
209: when others then
210: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'RECEIVE', p_event.event_name,
211: p_subscription_guid);
212: wf_event.setErrorInfo(p_event,'ERROR');
213: return('ERROR');
214: end;

Line 291: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SEND', p_EventName,

287: end if;
288:
289: exception
290: when others then
291: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SEND', p_EventName,
292: p_EventKey,
293: 'ERROR'); raise;
294: end;
295: ------------------------------------------------------------------------------

Line 354: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'Parameters', substr(p_string,1,100),

350: return(l_parameters);
351:
352: exception
353: when others then
354: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'Parameters', substr(p_string,1,100),
355: p_numvalues,p_separator,
356: 'ERROR'); raise;
357: end;
358: ------------------------------------------------------------------------------

Line 421: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'ADDCORRELATION', p_event.event_name,

417: return ('SUCCESS');
418:
419: exception
420: when others then
421: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'ADDCORRELATION', p_event.event_name,
422: p_event.event_key,
423: 'ERROR'); raise;
424: return('ERROR');
425: end;

Line 482: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SUBSCRIPTIONPARAMETERS',

478: return (l_value);
479:
480: exception
481: when others then
482: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SUBSCRIPTIONPARAMETERS',
483: 'ERROR'); raise;
484:
485: end;
486:

Line 590: l_subParamsIND := WF_CORE.HashKey(l_SubParam);

586:
587: -- We will hash the subscription parameter and cache it
588:
589: l_SubParam := l_parameters(l_NumSubParams);
590: l_subParamsIND := WF_CORE.HashKey(l_SubParam);
591: l_NumSubParams := l_NumSubParams - 1;
592:
593: -- Here we check to see if we have already seen this subscription
594: -- parameter. If so, skip to the next. If not, cache it and check

Line 617: l_evtParamsIND := WF_CORE.HashKey(l_evtParam);

613: l_evtParam := p_event.parameter_list(l_NumEvtParams).getName||
614: '=' ||p_event.parameter_list(l_NumEvtParams).getValue;
615:
616: -- Hash value for the event name value pair
617: l_evtParamsIND := WF_CORE.HashKey(l_evtParam);
618:
619: l_NumEvtParams := l_NumEvtParams-1;
620:
621: -- Check to see if the event parameter has already been cached.

Line 669: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SubParamInEvent',

665: end if;
666:
667: exception
668: when others then
669: wf_core.context('WF_EVENT_FUNCTIONS_PKG', 'SubParamInEvent',
670: p_event.event_name);
671: raise;
672:
673: end;