DBA Data[Home] [Help]

APPS.CUG_GENERIC_WF_PKG dependencies on CS_WORKFLOW_PUB

Line 329: CS_WORKFLOW_PUB.Get_Employee_Role (

325: IF (l_GetSourceId_csr%NOTFOUND) THEN
326: result := 'N';
327: ELSE
328: -- Retrieve the role name for the request owner
329: CS_WORKFLOW_PUB.Get_Employee_Role (
330: p_api_version => 1.0,
331: p_return_status => l_return_status,
332: p_msg_count => l_msg_count,
333: p_msg_data => l_msg_data,

Line 2004: CS_WORKFLOW_PUB.Get_Employee_Role (

2000: -- fix for bug 2576759. Added the following if condition - Roopa
2001:
2002: IF(l_ServiceRequest_rec.incident_owner_id is not null) THEN
2003: -- Retrieve the role name for the request owner
2004: CS_WORKFLOW_PUB.Get_Employee_Role (
2005: p_api_version => 1.0,
2006: p_return_status => l_return_status,
2007: p_msg_count => l_msg_count,
2008: p_msg_data => l_msg_data,

Line 2015: wf_core.context( pkg_name => 'CS_WORKFLOW_PUB',

2011: p_role_display_name => l_owner_name );
2012:
2013: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) OR
2014: (l_owner_role is NULL) THEN
2015: wf_core.context( pkg_name => 'CS_WORKFLOW_PUB',
2016: proc_name => 'Get_Employee_Role',
2017: arg1 => 'p_employee_id=>'||
2018: to_char(l_ServiceRequest_rec.incident_owner_id));
2019: l_errmsg_name := 'CS_WF_SR_CANT_FIND_OWNER';

Line 2124: CS_WORKFLOW_PUB.Decode_Servereq_Itemkey(

2120:
2121: IF (funmode = 'RUN') THEN
2122:
2123: -- Decode the item key to get the service request number
2124: CS_WORKFLOW_PUB.Decode_Servereq_Itemkey(
2125: p_api_version => 1.0,
2126: p_return_status => l_return_status,
2127: p_msg_count => l_msg_count,
2128: p_msg_data => l_msg_data,

Line 2134: wf_core.context( pkg_name => 'CS_WORKFLOW_PUB',

2130: p_request_number => l_request_number,
2131: p_wf_process_id => l_dummy );
2132:
2133: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
2134: wf_core.context( pkg_name => 'CS_WORKFLOW_PUB',
2135: proc_name => 'Decode_Servereq_Itemkey',
2136: arg1 => 'p_itemkey=>'||itemkey );
2137: l_errmsg_name := 'CS_WF_SR_CANT_DECODE_ITEMKEY';
2138: raise l_API_ERROR;