DBA Data[Home] [Help]

APPS.WSH_FACILITIES_INTEGRATION dependencies on WSH_UTIL_CORE

Line 42: -- i. WSH_UTIL_CORE.G_RET_STS_SUCCESS: All facilities created.

38: -- location ids, if applicable.
39: --
40: -- OUT Parameters : x_return_status VARCHAR2
41: -- The return status is one of the following:
42: -- i. WSH_UTIL_CORE.G_RET_STS_SUCCESS: All facilities created.
43: -- iv. WSH_UTIL_CORE.G_RET_STS_WARNING: If some of the location_ids
44: -- already had facilities created.
45: -- iv. WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR
46: -- Version : 1.0

Line 43: -- iv. WSH_UTIL_CORE.G_RET_STS_WARNING: If some of the location_ids

39: --
40: -- OUT Parameters : x_return_status VARCHAR2
41: -- The return status is one of the following:
42: -- i. WSH_UTIL_CORE.G_RET_STS_SUCCESS: All facilities created.
43: -- iv. WSH_UTIL_CORE.G_RET_STS_WARNING: If some of the location_ids
44: -- already had facilities created.
45: -- iv. WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR
46: -- Version : 1.0
47: -- Previous version 1.0

Line 45: -- iv. WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR

41: -- The return status is one of the following:
42: -- i. WSH_UTIL_CORE.G_RET_STS_SUCCESS: All facilities created.
43: -- iv. WSH_UTIL_CORE.G_RET_STS_WARNING: If some of the location_ids
44: -- already had facilities created.
45: -- iv. WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR
46: -- Version : 1.0
47: -- Previous version 1.0
48: -- Initial version 1.0
49: -- End of comments

Line 69: IF WSH_UTIL_CORE.FTE_Is_Installed = 'Y' THEN

65: IF l_debug_on THEN
66: WSH_DEBUG_SV.push(l_module_name);
67: END IF;
68:
69: IF WSH_UTIL_CORE.FTE_Is_Installed = 'Y' THEN
70: FTE_LOCATION_PARAMETERS_PKG.Create_Facilities( p_location_ids => p_location_ids,
71: p_company_names => p_company_names,
72: p_site_names => p_site_names,
73: x_return_status => x_return_status,

Line 92: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;

88: 'Error message is '|| SQLERRM, WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
89: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
90: END IF;
91: --
92: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
93:
94: IF l_debug_on THEN
95: WSH_DEBUG_SV.pop(l_module_name);
96: END IF;