DBA Data[Home] [Help]

APPS.GHR_MTO_PKG dependencies on PER_PEOPLE_F

Line 221: per_people_f ppf,

217: paf.organization_id ORGANIZATION_ID,
218: paf.business_group_id BUSINESS_GROUP_ID,
219: punits.name ORGANIZATION_NAME
220: from per_assignments_f paf,
221: per_people_f ppf,
222: per_person_types ppt,
223: per_organization_units punits
224: -- VSM added nvl( .. to the start... clause
225: -- enhancement in selection criteria as org_id can be be null [Masscrit.doc]

Line 258: per_people_f ppf,

254: paf.organization_id ORGANIZATION_ID,
255: paf.business_group_id BUSINESS_GROUP_ID,
256: punits.name ORGANIZATION_NAME
257: from per_assignments_f paf,
258: per_people_f ppf,
259: per_person_types ppt,
260: per_organization_units punits
261: where (paf.position_id = nvl(p_org_id,paf.position_id)
262: and

Line 308: from per_people_f p, per_assignments_f a

304: and trunc(effective_date) between
305: effective_start_date and effective_end_date
306: MINUS
307: select a.position_id
308: from per_people_f p, per_assignments_f a
309: where (a.organization_id = nvl(p_org_id,organization_id) and org_pos_fl = 'O'
310: or a.position_id = nvl(p_org_id,position_id) and org_pos_fl = 'P')
311: and trunc(effective_date) between a.effective_start_date
312: and a.effective_end_date