DBA Data[Home] [Help]

APPS.FND_PROFILE dependencies on WF_EVENT

Line 858: ** RULE FUNCTIONS FOR WF EVENT

854:
855: else
856:
857: /* Bug 5209533: FND_GLOBAL.INITIALIZE RAISES APP-FND-02500 EXECUTING
858: ** RULE FUNCTIONS FOR WF EVENT
859: ** Setting PROFILE_OPTION_EXISTS = TRUE explicitly IF the condition is
860: ** not satisfied. This guarantees that the profile gets evaluated if
861: ** PROFILE_OPTION_EXISTS is not FALSE, e.g. NULL;
862: */

Line 1487: ** RULE FUNCTIONS FOR WF EVENT

1483: end if;
1484: else
1485:
1486: /* Bug 5209533: FND_GLOBAL.INITIALIZE RAISES APP-FND-02500 EXECUTING
1487: ** RULE FUNCTIONS FOR WF EVENT
1488: ** Setting PROFILE_OPTION_EXISTS = TRUE explicitly IF the condition is
1489: ** not satisfied. This guarantees that the profile gets evaluated if
1490: ** PROFILE_OPTION_EXISTS is not FALSE, e.g. NULL;
1491: */

Line 2984: ** INVALIDATE_CACHE - Call WF_EVENT.RAISE to invalidate the cache entry

2980: end GET;
2981:
2982:
2983: /*
2984: ** INVALIDATE_CACHE - Call WF_EVENT.RAISE to invalidate the cache entry
2985: ** corresponding to the specified profile.
2986: */
2987: procedure INVALIDATE_CACHE(
2988: x_level_name in varchar2,

Line 3057: -- Modified this direct call to wf_event.raise to use the

3053: ||name;
3054: end if;
3055:
3056: --
3057: -- Modified this direct call to wf_event.raise to use the
3058: -- fnd_wf_engine.default_event_raise wrapper API
3059: --
3060: -- wf_event.raise(p_event_name=>'oracle.apps.fnd.profile.value.update',
3061: -- p_event_key=>event_key);

Line 3060: -- wf_event.raise(p_event_name=>'oracle.apps.fnd.profile.value.update',

3056: --
3057: -- Modified this direct call to wf_event.raise to use the
3058: -- fnd_wf_engine.default_event_raise wrapper API
3059: --
3060: -- wf_event.raise(p_event_name=>'oracle.apps.fnd.profile.value.update',
3061: -- p_event_key=>event_key);
3062: --
3063:
3064: fnd_wf_engine.default_event_raise(

Line 4148: p_event in out NOCOPY WF_EVENT_T)

4144: * appropriate profile level cache.
4145: */
4146: function bumpCacheVersion_RF (
4147: p_subscription_guid in raw,
4148: p_event in out NOCOPY WF_EVENT_T)
4149: return varchar2 is
4150:
4151: l_event_key varchar2(255);
4152: l_level_id number;

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

4192: exception
4193: when others then
4194: WF_CORE.CONTEXT('FND_PROFILE', 'bumpCacheVersion_RF',
4195: p_event.getEventName(), p_subscription_guid);
4196: WF_EVENT.setErrorInfo(p_event, 'ERROR');
4197: return 'ERROR';
4198: end;
4199:
4200: