DBA Data[Home] [Help]

APPS.PA_FC_RES_MAP dependencies on FND_API

Line 15: x_return_status := fnd_api.g_ret_sts_success;

11: BEGIN
12: IF P_DEBUG_MODE = 'Y' THEN
13: pa_fck_util.debug_msg('delete_res_maps_on_asgn_id: ' || 'PB:Entering - Delete Resource Maps');
14: END IF;
15: x_return_status := fnd_api.g_ret_sts_success;
16:
17: IF (p_resource_list_assignment_id is null) THEN
18: DELETE pa_resource_maps;
19: ELSE

Line 33: x_return_status := fnd_api.g_ret_sts_unexp_error;

29: WHEN OTHERS THEN
30: FND_MSG_PUB.add_exc_msg(p_pkg_name => 'PA_FC_RES_MAP'
31: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
32: x_error_message_code := SQLCODE || ' '|| SQLERRM;
33: x_return_status := fnd_api.g_ret_sts_unexp_error;
34: RAISE;
35: END delete_res_maps_on_asgn_id;
36:
37: PROCEDURE map_trans

Line 623: x_return_status := fnd_api.g_ret_sts_unexp_error;

619: WHEN OTHERS THEN
620: FND_MSG_PUB.add_exc_msg(p_pkg_name => 'PA_FC_RES_MAP'
621: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
622: x_error_message_code := SQLCODE || ' ' || SQLERRM;
623: x_return_status := fnd_api.g_ret_sts_unexp_error;
624: x_resource_list_member_id := NULL;
625: RAISE;
626: END map_trans;
627: