DBA Data[Home] [Help]

APPS.WSH_UTIL_CORE dependencies on FND_API

Line 89: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;

85: --
86:
87: -- Description: Constants used to allow the user to differentiate
88: -- between errors, warning and success
89: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
90: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
91: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
92: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
93: --

Line 91: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;

87: -- Description: Constants used to allow the user to differentiate
88: -- between errors, warning and success
89: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
90: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
91: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
92: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
93: --
94: --
95: -- Description: This exception can be used to raise when the return

Line 92: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;

88: -- between errors, warning and success
89: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
90: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
91: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
92: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
93: --
94: --
95: -- Description: This exception can be used to raise when the return
96: -- is a warning and if the api needs to exit out

Line 169: -- x_api_status - FND_API.G_RET_STS_SUCCESS

165: -- Arguments: p_mode - 'CUSTOMER SITE', 'VENDOR SITE' or 'ORG'
166: -- p_source_id - organization_id or site_id to convert
167: -- based on p_mode
168: -- x_location_id - Converted to location_id
169: -- x_api_status - FND_API.G_RET_STS_SUCCESS
170: -- FND_API.G_RET_STS_ERROR
171: -- If Error message can be retrieved using FND_MESSAGE.GET
172: -- Description: Gets location information for a particular inventory
173: -- organization using hr_locations view

Line 170: -- FND_API.G_RET_STS_ERROR

166: -- p_source_id - organization_id or site_id to convert
167: -- based on p_mode
168: -- x_location_id - Converted to location_id
169: -- x_api_status - FND_API.G_RET_STS_SUCCESS
170: -- FND_API.G_RET_STS_ERROR
171: -- If Error message can be retrieved using FND_MESSAGE.GET
172: -- Description: Gets location information for a particular inventory
173: -- organization using hr_locations view
174: --