DBA Data[Home] [Help]

APPS.GHR_MTO_PKG dependencies on PER_PEOPLE_F

Line 226: per_people_f ppf,

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

Line 269: per_people_f ppf,

265: paf.organization_id ORGANIZATION_ID,
266: paf.business_group_id BUSINESS_GROUP_ID,
267: punits.name ORGANIZATION_NAME
268: from per_assignments_f paf,
269: per_people_f ppf,
270: per_person_types ppt,
271: per_organization_units punits
272: where (paf.position_id = nvl(p_org_id,paf.position_id)
273: and

Line 331: from per_people_f p, per_assignments_f a

327: OR
328: p_agency is null)
329: MINUS
330: select a.position_id
331: from per_people_f p, per_assignments_f a
332: where (a.organization_id = nvl(p_org_id,organization_id) and org_pos_fl = 'O'
333: or a.position_id = nvl(p_org_id,position_id) and org_pos_fl = 'P')
334: and trunc(effective_date) between a.effective_start_date
335: and a.effective_end_date