DBA Data[Home] [Help]

APPS.FND_SVC_COMPONENT dependencies on WF_CORE

Line 373: WF_CORE.CONTEXT(pv_Package_Name, 'Insert_Param_Vals', p_component_type, p_component_id);

369: END LOOP;
370:
371: EXCEPTION
372: WHEN OTHERS THEN
373: WF_CORE.CONTEXT(pv_Package_Name, 'Insert_Param_Vals', p_component_type, p_component_id);
374:
375: RAISE;
376:
377: END Insert_Param_Vals;

Line 457: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Container_Status', p_container_type, p_container_name);

453: END IF;
454:
455: EXCEPTION
456: WHEN OTHERS THEN
457: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Container_Status', p_container_type, p_container_name);
458: RAISE;
459:
460: END Get_Container_Status;
461:

Line 503: WF_CORE.CONTEXT(pv_Package_Name, 'Name_Container_Session', p_container_type,

499: );
500:
501: EXCEPTION
502: WHEN OTHERS THEN
503: WF_CORE.CONTEXT(pv_Package_Name, 'Name_Container_Session', p_container_type,
504: p_container_name, p_process_id);
505: RAISE;
506:
507: END Name_Container_Session;

Line 540: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Current_Status', p_Component_Id);

536: return l_CurrentStatus;
537:
538: EXCEPTION
539: WHEN OTHERS THEN
540: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Current_Status', p_Component_Id);
541: RAISE;
542: end Get_Current_Status;
543:
544:

Line 649: p_errbuf := WF_CORE.TRANSLATE ('SVC_COMP_INVALID_EVENT');

645: end if;
646:
647: if not l_isValid then
648: p_retCode := pv_retInvalidComponentState;
649: p_errbuf := WF_CORE.TRANSLATE ('SVC_COMP_INVALID_EVENT');
650: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
651: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
652: 'wf.plsql.FND_SVC_COMPONENT.VALIDATE_OPERATION.invalid_event',
653: 'Error code: '||p_retCode||' ,Error desc: '||p_errbuf);

Line 700: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Container_Info', p_Component_Id);

696: END IF;
697:
698: EXCEPTION
699: WHEN OTHERS THEN
700: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Container_Info', p_Component_Id);
701: RAISE;
702: end Get_Container_Info;
703:
704: --

Line 771: WF_CORE.CONTEXT(pv_Package_Name, 'Update_Status', p_Component_Id, p_Status, p_Status_Info);

767: end if;
768:
769: EXCEPTION
770: WHEN OTHERS THEN
771: WF_CORE.CONTEXT(pv_Package_Name, 'Update_Status', p_Component_Id, p_Status, p_Status_Info);
772: RAISE;
773: end Update_Status;
774:
775: --

Line 813: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Component_Status', p_Component_Name);

809: return l_Current_Status;
810:
811: EXCEPTION
812: WHEN OTHERS THEN
813: WF_CORE.CONTEXT(pv_Package_Name, 'Get_Component_Status', p_Component_Name);
814: RAISE;
815: end get_component_status;
816:
817:

Line 850: WF_CORE.CONTEXT(pv_Package_Name, 'Raise_Control_Event', p_Component_Id, p_Control_Operation);

846: --wf_event.SetDispatchMode ('SYNC');
847:
848: EXCEPTION
849: WHEN OTHERS THEN
850: WF_CORE.CONTEXT(pv_Package_Name, 'Raise_Control_Event', p_Component_Id, p_Control_Operation);
851: RAISE;
852: end Raise_Control_Event ;
853:
854: Procedure Start_Component(p_Component_Id in NUMBER,

Line 909: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

905: exception
906:
907: when e_ContainerNotRunning then
908: p_retCode := pv_retContainerNotRunning;
909: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
910:
911: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
912: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
913: 'wf.plsql.FND_SVC_COMPONENT.START_COMPONENT.container_not_running',

Line 1002: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

998: exception
999:
1000: when e_ContainerNotRunning then
1001: p_retCode := pv_retContainerNotRunning;
1002: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1003:
1004: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1005: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1006: 'wf.plsql.FND_SVC_COMPONENT.STOP_COMPONENT.container_not_running',

Line 1079: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

1075: exception
1076:
1077: when e_ContainerNotRunning then
1078: p_retCode := pv_retContainerNotRunning;
1079: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1080: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1081: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1082: 'wf.plsql.FND_SVC_COMPONENT.SUSPEND_COMPONENT.container_not_running',
1083: 'Error code: '||p_retCode||' ,Error desc: '||p_errbuf);

Line 1156: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

1152: exception
1153:
1154: when e_ContainerNotRunning then
1155: p_retCode := pv_retContainerNotRunning;
1156: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1157:
1158: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1159: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1160: 'wf.plsql.FND_SVC_COMPONENT.RESUME_COMPONENT.container_not_running',

Line 1234: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

1230: exception
1231:
1232: when e_ContainerNotRunning then
1233: p_retCode := pv_retContainerNotRunning;
1234: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1235:
1236: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1237: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1238: 'wf.plsql.FND_SVC_COMPONENT.REFRESH_COMPONENT.container_not_running',

Line 1313: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

1309: exception
1310:
1311: when e_ContainerNotRunning then
1312: p_retCode := pv_retContainerNotRunning;
1313: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1314:
1315: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1316: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1317: 'wf.plsql.FND_SVC_COMPONENT.GENERIC_OPERATION.container_not_running',

Line 1438: WF_CORE.CONTEXT(pv_Package_Name, 'Reset_Container_Components', p_container_type, p_container_name);

1434: commit;
1435:
1436: EXCEPTION
1437: WHEN OTHERS THEN
1438: WF_CORE.CONTEXT(pv_Package_Name, 'Reset_Container_Components', p_container_type, p_container_name);
1439: RAISE;
1440:
1441: END Reset_Container_Components;
1442:

Line 1501: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');

1497: exception
1498:
1499: when e_ContainerNotRunning then
1500: p_retCode := pv_retContainerNotRunning;
1501: p_errbuf := WF_CORE.TRANSLATE ('SVC_CONTAINER_NOT_RUNNING');
1502:
1503: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1504: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_ERROR,
1505: 'wf.plsql.FND_SVC_COMPONENT.REFRESH_COMPONENT_CONTAINER.container_not_running',

Line 1552: WF_CORE.CONTEXT(pv_Package_Name, 'Verify_Container', p_container_type, p_container_name);

1548: end if;
1549:
1550: EXCEPTION
1551: WHEN OTHERS THEN
1552: WF_CORE.CONTEXT(pv_Package_Name, 'Verify_Container', p_container_type, p_container_name);
1553: RAISE;
1554:
1555: end Verify_Container;
1556:

Line 1583: WF_CORE.CONTEXT(pv_Package_Name, 'Verify_All_Containers');

1579: END LOOP;
1580:
1581: EXCEPTION
1582: WHEN OTHERS THEN
1583: WF_CORE.CONTEXT(pv_Package_Name, 'Verify_All_Containers');
1584: RAISE;
1585:
1586: end Verify_All_Containers;
1587:

Line 1591: fnd_svc_component.pv_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

1587:
1588: ---------------------------------------------------------------------------
1589: -- Set pkg level private variables
1590: begin
1591: fnd_svc_component.pv_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
1592: fnd_svc_component.pv_schema_name := wf_core.translate('WF_SCHEMA');
1593:
1594: fnd_svc_component.pv_last_agent_name := ' ';
1595: fnd_svc_component.pv_last_queue_name := ' ';

Line 1592: fnd_svc_component.pv_schema_name := wf_core.translate('WF_SCHEMA');

1588: ---------------------------------------------------------------------------
1589: -- Set pkg level private variables
1590: begin
1591: fnd_svc_component.pv_system_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
1592: fnd_svc_component.pv_schema_name := wf_core.translate('WF_SCHEMA');
1593:
1594: fnd_svc_component.pv_last_agent_name := ' ';
1595: fnd_svc_component.pv_last_queue_name := ' ';
1596: fnd_svc_component.pv_last_recipients := ' ';

Line 1597: pv_install_mode := wf_core.translate('WF_INSTALL');

1593:
1594: fnd_svc_component.pv_last_agent_name := ' ';
1595: fnd_svc_component.pv_last_queue_name := ' ';
1596: fnd_svc_component.pv_last_recipients := ' ';
1597: pv_install_mode := wf_core.translate('WF_INSTALL');
1598: ---------------------------------------------------------------------------
1599: END FND_SVC_COMPONENT;