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 84: wf_core.context('WF_BES_CACHE', 'MetaDataUploaded');

80: value => to_char(sysdate, g_date_mask),
81: client_id => l_username);
82: exception
83: when others then
84: wf_core.context('WF_BES_CACHE', 'MetaDataUploaded');
85: raise;
86: end SetMetaDataUploaded;
87:
88: -- GetMetaDataUploaded (PRIVATE)

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

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

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

525: end if;
526:
527: exception
528: when others then
529: wf_core.context('WF_BES_CACHE', 'GetEventByName', p_event_name);
530: raise;
531: end GetEventByName;
532:
533: -- GetSubscriptions

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

595: return l_event_obj.GetSubscriptionList(p_source_type);
596: end if;
597: exception
598: when others then
599: wf_core.context('WF_BES_CACHE', 'GetSubscriptions', p_event_name, p_source_type);
600: raise;
601: end GetSubscriptions;
602:
603: -- GetSubscriptionByGUID

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

644:
645: return l_event_obj.GetSubscriptionByGUID(p_sub_guid);
646: exception
647: when others then
648: wf_core.context('WF_BES_CACHE', 'GetSubscriptionByGUID', p_event_name, p_sub_guid);
649: raise;
650: end GetSubscriptionByGUID;
651:
652: --

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

1028: return l_agent_obj;
1029:
1030: exception
1031: when others then
1032: wf_core.context('WF_BES_CACHE', 'GetAgentByGUID', p_agent_guid);
1033: raise;
1034: end GetAgentByGUID;
1035:
1036: -- GetAgentByQH

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

1126: return l_agent_obj;
1127:
1128: exception
1129: when others then
1130: wf_core.context('WF_BES_CACHE', 'GetAgentByQH', p_agent_qh, p_direction);
1131: raise;
1132: end GetAgentByQH;
1133:
1134: --