DBA Data[Home] [Help]

APPS.PA_FC_RES_MAP dependencies on PA_RES_ACCUMS

Line 57: l_resource_ind PA_RES_ACCUMS.resource_index_tbl;

53: x_resource_list_member_id OUT NOCOPY NUMBER,
54: x_return_status OUT NOCOPY VARCHAR2,
55: x_error_message_code OUT NOCOPY VARCHAR2) IS
56:
57: l_resource_ind PA_RES_ACCUMS.resource_index_tbl;
58: l_resources_in PA_RES_ACCUMS.resources_tbl_type;
59: l_no_of_resources BINARY_INTEGER;
60: l_index BINARY_INTEGER;
61: res_count BINARY_INTEGER;

Line 58: l_resources_in PA_RES_ACCUMS.resources_tbl_type;

54: x_return_status OUT NOCOPY VARCHAR2,
55: x_error_message_code OUT NOCOPY VARCHAR2) IS
56:
57: l_resource_ind PA_RES_ACCUMS.resource_index_tbl;
58: l_resources_in PA_RES_ACCUMS.resources_tbl_type;
59: l_no_of_resources BINARY_INTEGER;
60: l_index BINARY_INTEGER;
61: res_count BINARY_INTEGER;
62:

Line 133: PA_RES_ACCUMS.get_mappable_resources

129: END IF;
130:
131: PA_DEBUG.init_err_stack('PA_FC_RES_MAP.map_trans');
132:
133: PA_RES_ACCUMS.get_mappable_resources
134: ( x_project_id => p_project_id,
135: x_res_list_id => p_res_list_id,
136: x_resource_ind => l_resource_ind,
137: x_resources_in => l_resources_in,

Line 197: PA_RES_ACCUMS.create_resource_map

193: END IF;
194:
195: END IF; --- IF ( current_resource_id IS NULL )
196:
197: PA_RES_ACCUMS.create_resource_map
198: (x_resource_list_id => current_rl_id,
199: x_resource_list_assignment_id => current_rl_assignment_id,
200: x_resource_list_member_id => current_rl_member_id,
201: x_resource_id => current_resource_id,

Line 227: current_rl_changed_flag := PA_RES_ACCUMS.get_resource_list_status(

223: --- Proceed to the next resource list now
224:
225: current_rl_assignment_id := l_resources_in(res_count).resource_list_assignment_id;
226: current_rl_id := l_resources_in(res_count).resource_list_id;
227: current_rl_changed_flag := PA_RES_ACCUMS.get_resource_list_status(
228: x_resource_list_assignment_id => current_rl_assignment_id);
229: current_rl_type_code := PA_RES_ACCUMS.get_group_resource_type_code(
230: x_resource_list_id => current_rl_id);
231: mapping_done := FALSE;

Line 229: current_rl_type_code := PA_RES_ACCUMS.get_group_resource_type_code(

225: current_rl_assignment_id := l_resources_in(res_count).resource_list_assignment_id;
226: current_rl_id := l_resources_in(res_count).resource_list_id;
227: current_rl_changed_flag := PA_RES_ACCUMS.get_resource_list_status(
228: x_resource_list_assignment_id => current_rl_assignment_id);
229: current_rl_type_code := PA_RES_ACCUMS.get_group_resource_type_code(
230: x_resource_list_id => current_rl_id);
231: mapping_done := FALSE;
232:
233: -- This variables will store the information for best match for the resource

Line 255: PA_RES_ACCUMS.change_resource_list_status(

251: delete_res_maps_on_asgn_id(
252: p_resource_list_assignment_id => current_rl_assignment_id,
253: x_return_status => x_return_status,
254: x_error_message_code => x_error_message_code);
255: PA_RES_ACCUMS.change_resource_list_status(
256: x_resource_list_assignment_id => current_rl_assignment_id,
257: x_err_stage => x_err_stage,
258: x_err_code => x_err_code);
259:

Line 266: PA_RES_ACCUMS.get_resource_map

262: IF P_DEBUG_MODE = 'Y' THEN
263: pa_fck_util.debug_msg('map_trans: ' || 'PB:RList not changed');
264: END IF;
265: -- Get the resource map status
266: PA_RES_ACCUMS.get_resource_map
267: (x_resource_list_id => current_rl_id,
268: x_resource_list_assignment_id => current_rl_assignment_id,
269: x_person_id => p_person_id,
270: x_job_id => p_job_id,

Line 542: new_resource_rank := PA_RES_ACCUMS.get_resource_rank(

538: END IF;
539: -- Get the resource rank now
540: IF ( p_event_type_classification IS NOT NULL ) THEN
541: -- determine the rank based on event_type_classification
542: new_resource_rank := PA_RES_ACCUMS.get_resource_rank(
543: x_resource_format_id => l_resources_in(res_count).resource_format_id,
544: x_txn_class_code => p_event_type_classification);
545: ELSE
546: -- determine the rank based on system_linkage_function

Line 547: new_resource_rank := PA_RES_ACCUMS.get_resource_rank(

543: x_resource_format_id => l_resources_in(res_count).resource_format_id,
544: x_txn_class_code => p_event_type_classification);
545: ELSE
546: -- determine the rank based on system_linkage_function
547: new_resource_rank := PA_RES_ACCUMS.get_resource_rank(
548: x_resource_format_id => l_resources_in(res_count).resource_format_id,
549: x_txn_class_code => p_system_linkage_function);
550: END IF;
551:

Line 586: PA_RES_ACCUMS.create_resource_map

582:
583: END IF; --- IF ( current_resource_id IS NULL )
584:
585: -- Create a map now
586: PA_RES_ACCUMS.create_resource_map
587: (current_rl_id,
588: current_rl_assignment_id,
589: current_rl_member_id,
590: current_resource_id,