Labels

2017 absence absence management Account accounting AIM aliases AME and API application application utilities lookups approval assignments ATO Australia Bank bi publisher budget business business groups CAGR candidates cartisian product case CEMLI Center Stage channels Classification competency concurrent Configuration configuration profile constants contextualization conversion correction cost costing coverage area customization data database date DateTracked deductions define design develop DFF diagnostics document earnings ebs EIT Element employee enhancements erp excel expression extension failure Fastformula FBT Flexfield FND fndload foreign key forms Formula fringe benefit FRM-40654 from FTE Functions fund fusion GL global transfer grade help hierarchy HR HRMS human resource management system implementation income information interfaces internet interview job join key flexfield KFF KPI language learning leave legal employer legislation links lists localization location management New Year obia obiee OLF onboarding oracle oracle applications oracle descriptive flex field oracle descriptive flexfield oracle ebs oracle erp oracle fusion HCM oracle hrms oracle hrms interview questions oracle hrms modules oracle hrms modules list oracle hrms organization oracle hrms table oracle hrms tables oracle hrms tutorial oracle irecruitment oracle legal entities oracle lookups oracle organization hierarchy oracle payroll oracle payroll interview questions oracle payroll tables oracle self service order by Organization organization type otbi package package body package specification patch payg Payment payroll people group perform person personalisation phase pl/sql position primary key process profile programs project qualifier Query question questions Recruiting Center Recruitment regex regular expression reporting tool reports requests requirement requisition resume retropay RICE salary schema security profile select SIT smartorg sql statutory stores STP Super Superannuation system systems Table Taleo taleo 15B Taleo Recruitment tax termination test testing trunc update user group user management user type value set variables View Views Web ADI webadi where work relationship

Friday 14 November 2014

Define Organizations - Part IV


Frequently Asked Questions (FAQs)

How can I find the LOV used by a segment in the Information Type I select from the ‘Others’ button?
Query up the DFF ‘Org Developer DF’ and select the context whose name matches the name of the Information type you selected from the ‘Others’ button. The Segments screen lists the fields defined for that information type. The LOV will come from the validation used by the relevant segment.

Can I define 2 organizations with the same name?
This is possible but is not recommended and certainly not recommended when the system profile HR:Cross Business Group is set to ‘Yes’.

Where is the information from the Organization Manager Relationship screen held?
The Organization Manager Relationship screen uses the ‘Org Developer DF’ DFF. It is just another UI to the information type ‘Reporting Information’ for an organization with a classification of Cost Center. Only organizations with a classification of Cost Centre can be queried in the Organization Manager Relationship screen.

What sql can I run to show the classifications defined for an organization?
This sql will prompt you for an organization name

select i.organization_id, o.name, l.meaning
from hr_all_organization_units o
, hr_organization_information i
, fnd_lookup_values l
where o.organization_id = i.organization_id
and o.name = ‘&Organization_Name’
and i.org_information1 = l.lookup_code
and l.lookup_type = ‘ORG_CLASS’
and i.org_information_context = ‘CLASS’

What sql can I run to see the segment values for a specific Information Type for my organization?
This will be different depending on which Information Type you select. First open the Org Developer DF and find the structure for the Information type you require e.g. Work Day Information

See the COLUMN value for each segment. In this example: Segment Name Column Normal Start Time ORG_INFORMATION1 Normal End Time ORG_INFORMATION2 Working Hours ORG_INFORMATION3 Frequency ORG_INFORMATION4 Now create the sql selecting those columns from HR_ORGANIZATION_INFORMATION. The below mentioned sql will prompt you for an organization name

select o.name
, i.org_information1 Normal_Start_Time
, i.org_information2 Normal_End_Time
, i.org_information3 Working_Hours
, i.org_information4 Frequency
from hr_organization_information i
, hr_all_organization_units o
where o.name = ‘&Organization_Name’
and o.organization_id = i.organization_id
and i.org_information_context = ‘Work Day Information’

To create the sql for a different Information Type simply replace the SELECT section with the COLUMNs and aliases for that Information Type.


No comments:

Post a Comment