DBA Data[Home] [Help]

APPS.PO_SERVICES_PVT dependencies on FND_API

Line 558: -- FND_API.g_ret_sts_success - if the procedure completed successfully

554: --p_ship_to_org_id
555: -- The ship-to organization ID of the PO shipment
556: --OUT:
557: --x_return_status
558: -- FND_API.g_ret_sts_success - if the procedure completed successfully
559: -- FND_API.g_ret_sts_unexp_error - unexpected error occurred
560: --x_is_valid
561: -- TRUE if p_ship_to_org_id rolls up to the same business group as p_job_id, or
562: -- if p_job_id is NULL.

Line 559: -- FND_API.g_ret_sts_unexp_error - unexpected error occurred

555: -- The ship-to organization ID of the PO shipment
556: --OUT:
557: --x_return_status
558: -- FND_API.g_ret_sts_success - if the procedure completed successfully
559: -- FND_API.g_ret_sts_unexp_error - unexpected error occurred
560: --x_is_valid
561: -- TRUE if p_ship_to_org_id rolls up to the same business group as p_job_id, or
562: -- if p_job_id is NULL.
563: -- FALSE otherwise.

Line 581: x_return_status := FND_API.g_ret_sts_success;

577: l_valid_flag VARCHAR2(1);
578:
579: BEGIN
580: l_progress := '000';
581: x_return_status := FND_API.g_ret_sts_success;
582:
583: IF g_debug_stmt THEN
584: PO_DEBUG.debug_stmt
585: (p_log_head => g_module_prefix||'validate_ship_to_org',

Line 630: x_return_status := FND_API.g_ret_sts_unexp_error;

626: p_name => 'x_is_valid',
627: p_value => x_is_valid);
628: END IF;
629: WHEN OTHERS THEN
630: x_return_status := FND_API.g_ret_sts_unexp_error;
631: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
632: p_procedure_name => 'validate_ship_to_org',
633: p_error_text => 'Progress: '||l_progress||
634: ' Error: '||SUBSTRB(SQLERRM,1,215));