DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS dependencies on FND_API

Line 518: x_return_status := FND_API.G_RET_STS_SUCCESS;

514: -- Initialize the error statck
515: PA_DEBUG.init_err_stack('PA_FUNDS_CHECK_UTILS.get_closed_periods');
516:
517: -- set the return status to success
518: x_return_status := FND_API.G_RET_STS_SUCCESS;
519:
520: --Initialize the plsql table to the null values
521: x_tab_pds.delete;
522:

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

535: x_tab_count := l_count_rows;
536:
537: -- the below condition is commented as it is not required
538: --If l_count_rows <= 0 then
539: --x_return_status := FND_API.G_RET_STS_ERROR;
540: --x_tab_count := 0;
541: --Else
542: --x_tab_count := l_count_rows;
543: --End if;

Line 550: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

546:
547:
548: EXCEPTION
549: when others then
550: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
551: x_tab_count := 0;
552: RAISE;
553: END get_gl_periods;
554:

Line 903: x_return_status := fnd_api.g_ret_sts_success;

899: x_budget_line_id out NOCOPY number,
900: x_return_status out NOCOPY varchar2,
901: x_error_message_code out NOCOPY varchar2) is
902: BEGIN
903: x_return_status := fnd_api.g_ret_sts_success;
904:
905: IF P_DEBUG_MODE = 'Y' THEN
906: pa_funds_control_utils.print_message('Get_Budget_CCID: ' || 'Inside Get Budget CCID');
907: pa_fck_util.debug_msg('Get_Budget_CCID: ' || 'PB:Inside Get Budget CCID');

Line 933: x_return_status := fnd_api.g_ret_sts_error;

929: END IF;
930:
931: EXCEPTION
932: when no_data_found then
933: x_return_status := fnd_api.g_ret_sts_error;
934: x_error_message_code := 'PA_BC_BUDGET_CCID_NULL';
935: when others then
936: x_return_status := fnd_api.g_ret_sts_unexp_error;
937: raise;

Line 936: x_return_status := fnd_api.g_ret_sts_unexp_error;

932: when no_data_found then
933: x_return_status := fnd_api.g_ret_sts_error;
934: x_error_message_code := 'PA_BC_BUDGET_CCID_NULL';
935: when others then
936: x_return_status := fnd_api.g_ret_sts_unexp_error;
937: raise;
938: END Get_Budget_CCID;
939:
940: --The following API returns the Time Phased Type Code for a budget_version_id.

Line 947: x_return_status := fnd_api.g_ret_sts_success;

943: x_time_phased_type_code out NOCOPY varchar2,
944: x_return_status out NOCOPY varchar2,
945: x_error_message_code out NOCOPY varchar2) is
946: BEGIN
947: x_return_status := fnd_api.g_ret_sts_success;
948:
949: IF P_DEBUG_MODE = 'Y' THEN
950: pa_funds_control_utils.print_message('Get_Time_Phased_Type_Code: ' || 'Inside Get Time Phased Type Code');
951: pa_fck_util.debug_msg('Get_Time_Phased_Type_Code: ' || 'PB:Inside Get Time Phased Type Code');

Line 968: x_return_status := fnd_api.g_ret_sts_error;

964: END IF;
965:
966: EXCEPTION
967: when no_data_found then
968: x_return_status := fnd_api.g_ret_sts_error;
969: x_error_message_code := 'PA_BC_TIME_PHASE_CODE_NULL';
970: when others then
971: x_return_status := fnd_api.g_ret_sts_unexp_error;
972: raise;

Line 971: x_return_status := fnd_api.g_ret_sts_unexp_error;

967: when no_data_found then
968: x_return_status := fnd_api.g_ret_sts_error;
969: x_error_message_code := 'PA_BC_TIME_PHASE_CODE_NULL';
970: when others then
971: x_return_status := fnd_api.g_ret_sts_unexp_error;
972: raise;
973: END Get_Time_Phased_Type_Code;
974:
975: -- -----------------------------------------------------------------------------------+

Line 987: x_return_status := fnd_api.g_ret_sts_success;

983: x_entry_level_code out NOCOPY varchar2,
984: x_return_status out NOCOPY varchar2,
985: x_error_message_code out NOCOPY varchar2) is
986: BEGIN
987: x_return_status := fnd_api.g_ret_sts_success;
988:
989: IF P_DEBUG_MODE = 'Y' THEN
990: pa_funds_control_utils.print_message('Inside Get_Baselined_Budget_Version');
991: pa_fck_util.debug_msg('PB:Inside Get_Baselined_Budget_Version');

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

1022: when no_data_found then
1023: x_base_version_id := null;
1024: x_res_list_id := null;
1025: x_entry_level_code := null;
1026: --x_return_status := fnd_api.g_ret_sts_error;
1027: --x_error_message_code := 'PA_BC_BSLND_BDGT_VER_NULL';
1028: when others then
1029: x_return_status := fnd_api.g_ret_sts_unexp_error;
1030: raise;

Line 1029: x_return_status := fnd_api.g_ret_sts_unexp_error;

1025: x_entry_level_code := null;
1026: --x_return_status := fnd_api.g_ret_sts_error;
1027: --x_error_message_code := 'PA_BC_BSLND_BDGT_VER_NULL';
1028: when others then
1029: x_return_status := fnd_api.g_ret_sts_unexp_error;
1030: raise;
1031: END Get_Baselined_Budget_Version;
1032:
1033: -- --------------------------------------------------------------------------------------------------+