DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS dependencies on FND_API

Line 445: x_return_status := FND_API.G_RET_STS_SUCCESS;

441: -- Initialize the error statck
442: PA_DEBUG.init_err_stack('PA_FUNDS_CHECK_UTILS.get_closed_periods');
443:
444: -- set the return status to success
445: x_return_status := FND_API.G_RET_STS_SUCCESS;
446:
447: --Initialize the plsql table to the null values
448: x_tab_pds.delete;
449:

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

462: x_tab_count := l_count_rows;
463:
464: -- the below condition is commented as it is not required
465: --If l_count_rows <= 0 then
466: --x_return_status := FND_API.G_RET_STS_ERROR;
467: --x_tab_count := 0;
468: --Else
469: --x_tab_count := l_count_rows;
470: --End if;

Line 477: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

473:
474:
475: EXCEPTION
476: when others then
477: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
478: x_tab_count := 0;
479: RAISE;
480: END get_gl_periods;
481:

Line 752: x_return_status := fnd_api.g_ret_sts_success;

748: x_budget_line_id out NOCOPY number,
749: x_return_status out NOCOPY varchar2,
750: x_error_message_code out NOCOPY varchar2) is
751: BEGIN
752: x_return_status := fnd_api.g_ret_sts_success;
753:
754: IF P_DEBUG_MODE = 'Y' THEN
755: pa_funds_control_utils.print_message('Get_Budget_CCID: ' || 'Inside Get Budget CCID');
756: pa_fck_util.debug_msg('Get_Budget_CCID: ' || 'PB:Inside Get Budget CCID');

Line 782: x_return_status := fnd_api.g_ret_sts_error;

778: END IF;
779:
780: EXCEPTION
781: when no_data_found then
782: x_return_status := fnd_api.g_ret_sts_error;
783: x_error_message_code := 'PA_BC_BUDGET_CCID_NULL';
784: when others then
785: x_return_status := fnd_api.g_ret_sts_unexp_error;
786: raise;

Line 785: x_return_status := fnd_api.g_ret_sts_unexp_error;

781: when no_data_found then
782: x_return_status := fnd_api.g_ret_sts_error;
783: x_error_message_code := 'PA_BC_BUDGET_CCID_NULL';
784: when others then
785: x_return_status := fnd_api.g_ret_sts_unexp_error;
786: raise;
787: END Get_Budget_CCID;
788:
789: --The following API returns the Time Phased Type Code for a budget_version_id.

Line 796: x_return_status := fnd_api.g_ret_sts_success;

792: x_time_phased_type_code out NOCOPY varchar2,
793: x_return_status out NOCOPY varchar2,
794: x_error_message_code out NOCOPY varchar2) is
795: BEGIN
796: x_return_status := fnd_api.g_ret_sts_success;
797:
798: IF P_DEBUG_MODE = 'Y' THEN
799: pa_funds_control_utils.print_message('Get_Time_Phased_Type_Code: ' || 'Inside Get Time Phased Type Code');
800: pa_fck_util.debug_msg('Get_Time_Phased_Type_Code: ' || 'PB:Inside Get Time Phased Type Code');

Line 817: x_return_status := fnd_api.g_ret_sts_error;

813: END IF;
814:
815: EXCEPTION
816: when no_data_found then
817: x_return_status := fnd_api.g_ret_sts_error;
818: x_error_message_code := 'PA_BC_TIME_PHASE_CODE_NULL';
819: when others then
820: x_return_status := fnd_api.g_ret_sts_unexp_error;
821: raise;

Line 820: x_return_status := fnd_api.g_ret_sts_unexp_error;

816: when no_data_found then
817: x_return_status := fnd_api.g_ret_sts_error;
818: x_error_message_code := 'PA_BC_TIME_PHASE_CODE_NULL';
819: when others then
820: x_return_status := fnd_api.g_ret_sts_unexp_error;
821: raise;
822: END Get_Time_Phased_Type_Code;
823:
824: -- -----------------------------------------------------------------------------------+

Line 836: x_return_status := fnd_api.g_ret_sts_success;

832: x_entry_level_code out NOCOPY varchar2,
833: x_return_status out NOCOPY varchar2,
834: x_error_message_code out NOCOPY varchar2) is
835: BEGIN
836: x_return_status := fnd_api.g_ret_sts_success;
837:
838: IF P_DEBUG_MODE = 'Y' THEN
839: pa_funds_control_utils.print_message('Inside Get_Baselined_Budget_Version');
840: pa_fck_util.debug_msg('PB:Inside Get_Baselined_Budget_Version');

Line 875: --x_return_status := fnd_api.g_ret_sts_error;

871: when no_data_found then
872: x_base_version_id := null;
873: x_res_list_id := null;
874: x_entry_level_code := null;
875: --x_return_status := fnd_api.g_ret_sts_error;
876: --x_error_message_code := 'PA_BC_BSLND_BDGT_VER_NULL';
877: when others then
878: x_return_status := fnd_api.g_ret_sts_unexp_error;
879: raise;

Line 878: x_return_status := fnd_api.g_ret_sts_unexp_error;

874: x_entry_level_code := null;
875: --x_return_status := fnd_api.g_ret_sts_error;
876: --x_error_message_code := 'PA_BC_BSLND_BDGT_VER_NULL';
877: when others then
878: x_return_status := fnd_api.g_ret_sts_unexp_error;
879: raise;
880: END Get_Baselined_Budget_Version;
881:
882: -- --------------------------------------------------------------------------------------------------+