DBA Data[Home] [Help]

APPS.GHR_MTO_PKG dependencies on GHR_SF52_POS_UPDATE

Line 18: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type);

14:
15:
16:
17: Procedure update_position_info
18: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type);
19:
20: Procedure upd_per_extra_info_to_null(p_person_id in number) ;
21:
22: -- Procedure to create remarks M67 Test Sundar 1295

Line 1342: l_position_data_rec ghr_sf52_pos_update.position_data_rec_type;

1338: -- and it is agreed in the design review meeting by MACROSS and JMACGOY.
1339: DECLARE
1340:
1341: l_position_id hr_positions_f.position_id%TYPE;
1342: l_position_data_rec ghr_sf52_pos_update.position_data_rec_type;
1343:
1344: BEGIN
1345: l_avail_status_id := NULL;
1346: FOR per_vacant IN unassigned_pos (org.org_pos_id,

Line 1420: -- ghr_sf52_pos_update.update_position_info

1416: ---AVR end
1417: -- VSM- Bug # 758441
1418: -- Position history not created for Date end and org id
1419: -- Created wrapper procedure update_position_info for
1420: -- ghr_sf52_pos_update.update_position_info
1421: -- #### ghr_sf52_pos_update.update_position_info
1422: update_position_info
1423: (l_position_data_rec);
1424:

Line 1421: -- #### ghr_sf52_pos_update.update_position_info

1417: -- VSM- Bug # 758441
1418: -- Position history not created for Date end and org id
1419: -- Created wrapper procedure update_position_info for
1420: -- ghr_sf52_pos_update.update_position_info
1421: -- #### ghr_sf52_pos_update.update_position_info
1422: update_position_info
1423: (l_position_data_rec);
1424:
1425: upd_ext_info_to_null(per_vacant.position_id);

Line 1440: l_mass_errbuf := 'Error in ghr_sf52_pos_update.update_position_info'||' Sql Err is '|| sqlerrm(sqlcode);

1436: END IF;
1437: END LOOP;
1438: EXCEPTION
1439: WHEN OTHERS THEN
1440: l_mass_errbuf := 'Error in ghr_sf52_pos_update.update_position_info'||' Sql Err is '|| sqlerrm(sqlcode);
1441: raise mass_error;
1442:
1443: END;
1444: end if; -------- If action = create

Line 2890: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type) is

2886: raise mass_error;
2887: end;
2888:
2889: Procedure update_position_info
2890: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type) is
2891: l_proc varchar2(30):='update_position_info';
2892: Begin
2893: hr_utility.set_location('Entering ' || l_proc, 10);
2894: g_proc := 'update_position_info';

Line 2896: ghr_sf52_pos_update.update_position_info

2892: Begin
2893: hr_utility.set_location('Entering ' || l_proc, 10);
2894: g_proc := 'update_position_info';
2895: ghr_session.set_session_var_for_core( p_position_data_rec.effective_end_date );
2896: ghr_sf52_pos_update.update_position_info
2897: ( p_pos_data_rec => p_position_data_rec);
2898: hr_utility.set_location('Calling Pust_update_process ' || l_proc, 50);
2899: g_proc := 'post_update_process';
2900: ghr_history_api.post_update_process;