DBA Data[Home] [Help]

APPS.PA_BUDGET_PVT dependencies on PA_RESOURCE_PUB

Line 1076: pa_resource_pub.Convert_List_name_to_id

1072: OR (px_resource_list_id <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_NUM
1073: AND px_resource_list_id IS NOT NULL) THEN
1074: -- convert resource_list_name to resource_list_id
1075: px_resource_list_id_in := px_resource_list_id;
1076: pa_resource_pub.Convert_List_name_to_id
1077: ( p_resource_list_name => px_resource_list_name,
1078: p_resource_list_id => px_resource_list_id_in,
1079: p_out_resource_list_id => px_resource_list_id,
1080: p_return_status => x_return_status );

Line 1762: pa_resource_pub.Convert_List_name_to_id

1758: ELSE
1759:
1760: -- convert resource_list_name to resource_list_id
1761: px_resource_list_id_in := px_resource_list_id;
1762: pa_resource_pub.Convert_List_name_to_id
1763: ( p_resource_list_name => px_resource_list_name,
1764: p_resource_list_id => px_resource_list_id_in,
1765: p_out_resource_list_id => px_resource_list_id,
1766: p_return_status => x_return_status );

Line 7102: --basis of whther this (pa_resource_pub.Convert_alias_to_id ) API call would honour the

7098: AND px_budget_lines_in(i).resource_list_member_id IS NOT NULL)
7099: THEN
7100:
7101: --Selecting the index if it will be based on rlm_id or resource_alias. This index is decided on the
7102: --basis of whther this (pa_resource_pub.Convert_alias_to_id ) API call would honour the
7103: --rlm_id or resource_alias. The rule is rlm_id is honoured if both are passed to the API
7104: --otherwise whichever value is passed that value is honoured by the API.
7105: --Also note while preparing the index we are prepending 'RLMID' or 'RALIAS' before the actual values.
7106: --The index would always be in this format.

Line 7130: pa_resource_pub.Convert_alias_to_id

7126: --rlm_id/resource_alias). If present then read the rlm_id from the table for this index
7127: --else call the api.
7128: IF( NOT(l_rlm_id_tbl.exists(l_distinct_rlmid_idx) ) )
7129: THEN
7130: pa_resource_pub.Convert_alias_to_id
7131: ( p_project_id => p_pa_project_id
7132: ,p_resource_list_id => p_resource_list_id
7133: ,p_alias => px_budget_lines_in(i).resource_alias
7134: ,p_resource_list_member_id => px_budget_lines_in(i).resource_list_member_id

Line 7300: occurred after the API call pa_resource_pub.Convert_alias_to_id made above till this

7296: END IF;
7297: END IF;
7298: --Changed the if below for bug#4488926.
7299: IF (l_valid_rlmid = 'Y') THEN /*l_valid_rlmid equal to Y would ensure that no error
7300: occurred after the API call pa_resource_pub.Convert_alias_to_id made above till this
7301: point in code*/
7302: --If the API completes and above validations completes successfully then store the rlm_id in the
7303: --l_rlm_id_tbl at the location indexed by l_distinct_rlmid_idx.
7304: l_rlm_id_tbl(l_distinct_rlmid_idx) := px_budget_lines_in(i).resource_list_member_id;