DBA Data[Home] [Help]

APPS.PA_CLIENT_EXTN_BUDGET dependencies on FND_API

Line 352: will only occur if OUT parameter x_return_status is not FND_API.G_RET_STS_SUCCESS

348: By using the commented code in the body of this procedure, you may
349: add error and warning messages to the message stack.
350:
351: Moreover, error/warning processing in the calling procedure
352: will only occur if OUT parameter x_return_status is not FND_API.G_RET_STS_SUCCESS
353: or if we explicitly "RAISE" the exception in the exception portion of the api.
354: ===============================================================================*/
355:
356: PROCEDURE Get_Custom_Layout_Code

Line 378: x_return_status := FND_API.G_RET_STS_SUCCESS;

374: BEGIN
375:
376: /* Initialize out parameters. */
377: x_msg_count := 0;
378: x_return_status := FND_API.G_RET_STS_SUCCESS;
379: pa_debug.set_err_stack('PA_CLIENT_EXTN_BUDGET.Get_Custom_Layout_Code');
380:
381: /* Display Errors:
382: To display an error or warning message use PA_UTILS.Add_Message.

Line 389: -- x_return_status := FND_API.G_RET_STS_ERROR;

385: -- PA_UTILS.Add_Message
386: -- ( p_app_short_name => 'PA'
387: -- ,p_msg_name => 'PA_INVALID_LAYOUT'
388: -- );
389: -- x_return_status := FND_API.G_RET_STS_ERROR;
390: -- x_msg_count := FND_MSG_PUB.count_msg;
391:
392: You can define your own message (PA_INVALID_LAYOUT is just an example)
393: and for the messages . Upto 5 tokens can be passed to the PA_UTILS.Add_Message procedure

Line 423: -- x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

419: WHEN OTHERS THEN
420: NULL;
421: -- Following sample exception handling can be used to handle the exception.
422: --
423: -- x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
424: -- x_msg_count := 1;
425: -- x_msg_data := SQLERRM;
426: -- FND_MSG_PUB.add_exc_msg
427: -- ( p_pkg_name => 'PA_CLIENT_EXTN_BUDGET'

Line 460: x_return_status := FND_API.G_RET_STS_SUCCESS;

456: PRAGMA AUTONOMOUS_TRANSACTION;
457: BEGIN
458:
459: x_msg_count := 0;
460: x_return_status := FND_API.G_RET_STS_SUCCESS;
461:
462: UPDATE PA_FP_WEBADI_XFACE_TMP
463: SET val_error_code = p_error_code,
464: val_error_flag = 'Y'

Line 481: -- x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

477: WHEN OTHERS THEN
478: NULL;
479: -- Following sample exception handling can be used to handle the exception.
480: --
481: -- x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
482: -- x_msg_count := 1;
483: -- x_msg_data := SQLERRM;
484: -- FND_MSG_PUB.add_exc_msg
485: -- ( p_pkg_name => 'PA_CLIENT_EXTN_BUDGET'