DBA Data[Home] [Help]

APPS.WSH_WF_INTERFACE dependencies on WSH_WF_STD

Line 1405: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_WF_STD.GET_CUSTOM_WF_PROCESS', WSH_DEBUG_SV.C_PROC_LEVEL);

1401: FETCH get_org_code into l_organization_code;
1402: CLOSE get_org_code ;
1403:
1404: IF l_debug_on THEN
1405: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_WF_STD.GET_CUSTOM_WF_PROCESS', WSH_DEBUG_SV.C_PROC_LEVEL);
1406: END IF;
1407: WSH_WF_STD.Get_Custom_Wf_Process(p_wf_process => 'R_SCPOD_C',
1408: p_org_code => l_organization_code,
1409: x_wf_process => l_custom_process_name,

Line 1407: WSH_WF_STD.Get_Custom_Wf_Process(p_wf_process => 'R_SCPOD_C',

1403:
1404: IF l_debug_on THEN
1405: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_WF_STD.GET_CUSTOM_WF_PROCESS', WSH_DEBUG_SV.C_PROC_LEVEL);
1406: END IF;
1407: WSH_WF_STD.Get_Custom_Wf_Process(p_wf_process => 'R_SCPOD_C',
1408: p_org_code => l_organization_code,
1409: x_wf_process => l_custom_process_name,
1410: x_return_status => l_return_status);
1411: IF l_debug_on THEN

Line 1627: -- Currently RUN mode is not being used. We are using the WSH_WF_STD pkg functions

1623: wsh_debug_sv.log(l_module_name, 'actid',actid);
1624: wsh_debug_sv.log(l_module_name, 'funcmode',funcmode);
1625: END IF;
1626:
1627: -- Currently RUN mode is not being used. We are using the WSH_WF_STD pkg functions
1628: -- to find out the process that needs to be launched and are passing that
1629: -- process name in the createprocess call.
1630: IF (funcmode='RUN') THEN
1631: resultout:='COMPLETE';

Line 1647: IF WSH_WF_STD.G_RESET_APPS_CONTEXT THEN

1643: -- FND_GLOBAL.Apps_Initialize(FND_GLOBAL.USER_ID,FND_GLOBAL.RESP_ID, FND_GLOBAL.RESP_APPL_ID);
1644:
1645: -- Any caller that calls the WF_ENGINE can set this to TRUE in which case
1646: -- we will reset apps context to that of the user who created the wf item.
1647: IF WSH_WF_STD.G_RESET_APPS_CONTEXT THEN
1648: l_org_id := to_number(wf_engine.GetItemAttrText( itemtype,itemkey,'ORG_ID'));
1649:
1650: IF l_org_id is null THEN
1651: RAISE NO_DATA_FOUND;

Line 1665: IF WSH_WF_STD.G_RESET_APPS_CONTEXT THEN

1661: END IF;
1662: RETURN;
1663: END IF;
1664: IF (funcmode = 'TEST_CTX') THEN
1665: IF WSH_WF_STD.G_RESET_APPS_CONTEXT THEN
1666: l_org_id := to_number(wf_engine.GetItemAttrText( itemtype,itemkey,'ORG_ID'));
1667: IF l_debug_on THEN
1668: wsh_debug_sv.log (l_module_name, 'l_wf_org_id', l_org_id);
1669: END IF;