DBA Data[Home] [Help]

APPS.GHR_SF52_VALIDN_PKG dependencies on GHR_API

Line 32: l_title := ghr_api.get_position_title

28:
29: begin
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: if p_requested_by_title is not null then
32: l_title := ghr_api.get_position_title
33: (p_person_id => p_requested_by_person_id
34: ,p_effective_date => trunc(nvl(p_effective_date,sysdate))
35: );
36: hr_utility.set_location(l_proc, 20);

Line 66: l_title := ghr_api.get_position_title

62:
63: begin
64: hr_utility.set_location('Entering:'|| l_proc, 10);
65: if p_authorized_by_title is not null then
66: l_title := ghr_api.get_position_title
67: (p_person_id => p_authorized_by_person_id
68: ,p_effective_date => trunc(nvl(p_effective_date,sysdate))
69: );
70: hr_utility.set_location(l_proc, 20);

Line 252: l_title := ghr_api.get_position_title_pos

248: if p_to_position_id is not null then
249: for bgp_id in c_bgp_id loop
250: l_bgp_id := bgp_id.business_group_id;
251: end loop;
252: l_title := ghr_api.get_position_title_pos
253: (p_position_id => p_to_position_id
254: ,p_business_group_id => l_bgp_id
255: ,p_effective_date => p_effective_date
256: );

Line 265: l_desc_no := ghr_api.get_position_desc_no_pos

261: hr_utility.raise_error;
262: end if;
263: end if;
264:
265: l_desc_no := ghr_api.get_position_desc_no_pos
266: (p_position_id => p_to_position_id
267: ,p_business_group_id => l_bgp_id
268: ,p_effective_date => p_effective_date
269: );

Line 277: l_seq_no := ghr_api.get_position_sequence_no_pos

273: hr_utility.raise_error;
274: end if;
275: end if;
276:
277: l_seq_no := ghr_api.get_position_sequence_no_pos
278: (p_position_id => p_to_position_id
279: ,p_business_group_id => l_bgp_id
280: ,p_effective_date => p_effective_date
281: );