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 1439: l_position_data_rec ghr_sf52_pos_update.position_data_rec_type;

1435: -- and it is agreed in the design review meeting by MACROSS and JMACGOY.
1436: DECLARE
1437:
1438: l_position_id hr_positions_f.position_id%TYPE;
1439: l_position_data_rec ghr_sf52_pos_update.position_data_rec_type;
1440:
1441: BEGIN
1442: l_avail_status_id := NULL;
1443: FOR per_vacant IN unassigned_pos (org.org_pos_id,

Line 1525: -- ghr_sf52_pos_update.update_position_info

1521: ---AVR end
1522: -- VSM- Bug # 758441
1523: -- Position history not created for Date end and org id
1524: -- Created wrapper procedure update_position_info for
1525: -- ghr_sf52_pos_update.update_position_info
1526: -- #### ghr_sf52_pos_update.update_position_info
1527: update_position_info
1528: (l_position_data_rec);
1529:

Line 1526: -- #### ghr_sf52_pos_update.update_position_info

1522: -- VSM- Bug # 758441
1523: -- Position history not created for Date end and org id
1524: -- Created wrapper procedure update_position_info for
1525: -- ghr_sf52_pos_update.update_position_info
1526: -- #### ghr_sf52_pos_update.update_position_info
1527: update_position_info
1528: (l_position_data_rec);
1529:
1530: upd_ext_info_to_null(per_vacant.position_id);

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

1541: END IF;
1542: END LOOP;
1543: EXCEPTION
1544: WHEN OTHERS THEN
1545: l_mass_errbuf := 'Error in ghr_sf52_pos_update.update_position_info'||' Sql Err is '|| sqlerrm(sqlcode);
1546: raise mass_error;
1547:
1548: END;
1549: end if; -------- If action = create

Line 3003: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type) is

2999: raise mass_error;
3000: end;
3001:
3002: Procedure update_position_info
3003: (p_position_data_rec in ghr_sf52_pos_update.position_data_rec_type) is
3004: l_proc varchar2(30):='update_position_info';
3005: Begin
3006: hr_utility.set_location('Entering ' || l_proc, 10);
3007: g_proc := 'update_position_info';

Line 3009: ghr_sf52_pos_update.update_position_info

3005: Begin
3006: hr_utility.set_location('Entering ' || l_proc, 10);
3007: g_proc := 'update_position_info';
3008: ghr_session.set_session_var_for_core( p_position_data_rec.effective_end_date );
3009: ghr_sf52_pos_update.update_position_info
3010: ( p_pos_data_rec => p_position_data_rec);
3011: hr_utility.set_location('Calling Pust_update_process ' || l_proc, 50);
3012: g_proc := 'post_update_process';
3013: ghr_history_api.post_update_process;