DBA Data[Home] [Help]

APPS.PA_CI_IMPACTS_UTIL dependencies on FND_API

Line 149: x_return_status := FND_API.G_RET_STS_SUCCESS;

145: -- Initialize the Error Stack
146: PA_DEBUG.init_err_stack('Pa_ci_impacts_util.delete_all_impacts');
147:
148: -- Initialize the return status to success
149: x_return_status := FND_API.G_RET_STS_SUCCESS;
150:
151: --Clear the global PL/SQL message table
152: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
153: FND_MSG_PUB.initialize;

Line 152: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN

148: -- Initialize the return status to success
149: x_return_status := FND_API.G_RET_STS_SUCCESS;
150:
151: --Clear the global PL/SQL message table
152: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
153: FND_MSG_PUB.initialize;
154: END IF;
155:
156: IF (p_validate_only = 'F') THEN

Line 162: IF (p_commit = 'T' AND x_return_status = FND_API.G_RET_STS_SUCCESS ) THEN

158: WHERE ci_id = p_ci_id;
159: END IF;
160:
161: -- Commit if the flag is set and there is no error
162: IF (p_commit = 'T' AND x_return_status = FND_API.G_RET_STS_SUCCESS ) THEN
163: COMMIT;
164: END IF;
165:
166: -- Reset the error stack when returning to the calling program

Line 285: x_return_status := FND_API.G_RET_STS_SUCCESS;

281: -- Initialize the Error Stack
282: PA_DEBUG.init_err_stack('Pa_ci_impacts_util.copy_impact');
283:
284: -- Initialize the return status to success
285: x_return_status := FND_API.G_RET_STS_SUCCESS;
286:
287: --Clear the global PL/SQL message table
288: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
289: FND_MSG_PUB.initialize;

Line 288: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN

284: -- Initialize the return status to success
285: x_return_status := FND_API.G_RET_STS_SUCCESS;
286:
287: --Clear the global PL/SQL message table
288: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
289: FND_MSG_PUB.initialize;
290: END IF;
291:
292: IF p_include_flag = 'Y' THEN

Line 304: x_return_status := FND_API.G_RET_STS_ERROR;

300: -- can not copy
301: PA_UTILS.Add_Message( p_app_short_name => 'PA'
302: ,p_msg_name => 'PA_CI_NO_IMP_INCLUDE_TYPE');
303:
304: x_return_status := FND_API.G_RET_STS_ERROR;
305:
306: CLOSE is_ok_to_copy;
307: RETURN;
308:

Line 480: IF (p_commit = 'T' AND x_return_status = FND_API.G_RET_STS_SUCCESS ) THEN

476:
477: END IF;
478:
479: -- Commit if the flag is set and there is no error
480: IF (p_commit = 'T' AND x_return_status = FND_API.G_RET_STS_SUCCESS ) THEN
481: COMMIT;
482: END IF;
483:
484: -- Reset the error stack when returning to the calling program

Line 512: x_return_status := FND_API.G_RET_STS_SUCCESS;

508: BEGIN
509:
510:
511: -- Initialize the return status to success
512: x_return_status := FND_API.G_RET_STS_SUCCESS;
513:
514: OPEN get_type_code;
515: FETCH get_type_code INTO l_temp,l_ciid;
516: CLOSE get_type_code;