DBA Data[Home] [Help]

APPS.WF_BES_CACHE dependencies on WF_CORE

Line 45: l_cache_size := to_number(wf_core.translate('WFBES_MAX_CACHE_SIZE'));

41:
42: -- the token value may not have been loaded, null or may be a non-numeric
43: -- value specified. in such cases, default it to 50.
44: begin
45: l_cache_size := to_number(wf_core.translate('WFBES_MAX_CACHE_SIZE'));
46: exception
47: when others then
48: l_cache_size := 50;
49: end;

Line 53: g_local_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

49: end;
50:
51: wf_object_cache.SetCacheSize(l_cache_size);
52:
53: g_local_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
54: g_local_system_status := wf_core.translate('WF_SYSTEM_STATUS');
55: g_schema_name := wf_core.translate('WF_SCHEMA');
56: begin
57: SELECT name

Line 54: g_local_system_status := wf_core.translate('WF_SYSTEM_STATUS');

50:
51: wf_object_cache.SetCacheSize(l_cache_size);
52:
53: g_local_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
54: g_local_system_status := wf_core.translate('WF_SYSTEM_STATUS');
55: g_schema_name := wf_core.translate('WF_SCHEMA');
56: begin
57: SELECT name
58: INTO g_local_system_name

Line 55: g_schema_name := wf_core.translate('WF_SCHEMA');

51: wf_object_cache.SetCacheSize(l_cache_size);
52:
53: g_local_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
54: g_local_system_status := wf_core.translate('WF_SYSTEM_STATUS');
55: g_schema_name := wf_core.translate('WF_SCHEMA');
56: begin
57: SELECT name
58: INTO g_local_system_name
59: FROM wf_systems

Line 80: wf_core.context('WF_BES_CACHE', 'MetaDataUploaded');

76: attribute => 'WFBES_METADATA_UPLOADED',
77: value => to_char(sysdate, g_date_mask));
78: exception
79: when others then
80: wf_core.context('WF_BES_CACHE', 'MetaDataUploaded');
81: raise;
82: end SetMetaDataUploaded;
83:
84: -- GetMetaDataUploaded (PRIVATE)

Line 96: wf_core.context('WF_BES_CACHE', 'GetMetaDataUploaded');

92: l_value := sys_context('WFBES_CACHE_CTX', 'WFBES_METADATA_UPLOADED');
93: return to_date(l_value, g_date_mask);
94: exception
95: when others then
96: wf_core.context('WF_BES_CACHE', 'GetMetaDataUploaded');
97: raise;
98: end GetMetaDataUploaded;
99:
100: -- SetMetaDataCached (PRIVATE)

Line 525: wf_core.context('WF_BES_CACHE', 'GetEventByName', p_event_name);

521: end if;
522:
523: exception
524: when others then
525: wf_core.context('WF_BES_CACHE', 'GetEventByName', p_event_name);
526: raise;
527: end GetEventByName;
528:
529: -- GetSubscriptions

Line 595: wf_core.context('WF_BES_CACHE', 'GetSubscriptions', p_event_name, p_source_type);

591: return l_event_obj.GetSubscriptionList(p_source_type);
592: end if;
593: exception
594: when others then
595: wf_core.context('WF_BES_CACHE', 'GetSubscriptions', p_event_name, p_source_type);
596: raise;
597: end GetSubscriptions;
598:
599: -- GetSubscriptionByGUID

Line 644: wf_core.context('WF_BES_CACHE', 'GetSubscriptionByGUID', p_event_name, p_sub_guid);

640:
641: return l_event_obj.GetSubscriptionByGUID(p_sub_guid);
642: exception
643: when others then
644: wf_core.context('WF_BES_CACHE', 'GetSubscriptionByGUID', p_event_name, p_sub_guid);
645: raise;
646: end GetSubscriptionByGUID;
647:
648: --

Line 1028: wf_core.context('WF_BES_CACHE', 'GetAgentByGUID', p_agent_guid);

1024: return l_agent_obj;
1025:
1026: exception
1027: when others then
1028: wf_core.context('WF_BES_CACHE', 'GetAgentByGUID', p_agent_guid);
1029: raise;
1030: end GetAgentByGUID;
1031:
1032: -- GetAgentByQH

Line 1126: wf_core.context('WF_BES_CACHE', 'GetAgentByQH', p_agent_qh, p_direction);

1122: return l_agent_obj;
1123:
1124: exception
1125: when others then
1126: wf_core.context('WF_BES_CACHE', 'GetAgentByQH', p_agent_qh, p_direction);
1127: raise;
1128: end GetAgentByQH;
1129:
1130: --