dinsdag 18 juni 2013

Oracle HRMS Age Calculation. Is this OK ?


vrijdag 7 juni 2013

Query HRMS organization hierarchies

Query below returns all primary organization hierarchy versions with validity period (date from - date to) of each hierarchy version.
Adapt to your needs as necessary.


select level, hcy.*
from
(
select vsn.org_structure_version_id
,      vsn.date_from
,      nvl(vsn.date_to, hr_general.end_of_time)  date_to
,      ele.organization_id_parent
,      ele.organization_id_child
from   per_organization_structures  ose
,      per_org_structure_versions   vsn
,      per_org_structure_elements   ele
where  ose.primary_structure_flag    = 'Y'
and    ose.organization_structure_id = vsn.organization_structure_id
and    ele.org_structure_version_id  = vsn.org_structure_version_id
) hcy
connect by prior hcy.organization_id_child = hcy.organization_id_parent
       and prior hcy.org_structure_version_id = hcy.org_structure_version_id
start with hcy.organization_id_parent = :p_organization_id 

Data model PA Budgets



Query concurrent requests

Just for sharing ...



select p.concurrent_program_name
,      p.description
,      r.request_id
,      to_char(r.actual_start_date,'dd-mm-yyyy hh24:mi:ss')      actual_start_date
,      to_char(r.actual_completion_date,'dd-mm-yyyy hh24:mi:ss') actual_completion_date
from   fnd_concurrent_programs_vl p
,      fnd_concurrent_requests r
where  r.concurrent_program_id = p.concurrent_program_id
order by r.actual_start_date desc