Job, Position, Grade setup in Oracle HRMS R12

Hi All,
I have created three Flexfield for Job, Position, Grade in HRMS R12. Then i created business group Test ABC Organization.
The Job, Position and Grade Felexfield is working good using Work Structure. Now i want to add these Flexfield in Assignment window in of People.
Please help me to find out this solution.
Your help would highly appreciated
Thanks.

HI
please seee this
http://docs.oracle.com/cd/A60725_05/html/comnls/us/per/iw04c06.htm
http://docs.oracle.com/cd/E18727_01/doc.121/e13509/T2096T2100.htm
http://docs.oracle.com/cd/A60725_05/html/comnls/us/per/flexax.htm
http://oracle.anilpassi.com/forms-personalization-in-oracle-hrms.html
;) AppsmAstI ;)
Sharing Is Caring

Similar Messages

  • Checklists in Oracle HRMS R12

    Hi All,
    I'm Using Checklists in Oracle HRMS R12.
    When I am trying to create a life event reason(Total compensation-->general definitions-->additional setup)
    I'm not able to select the Person Changes and Related Person Changes tabs as they are being shown as disabled.
    Some one advice me on why those two tabs are disabled?
    I can see the life event reasons which means OAB is installed, I guess
    Any Suggestions?
    Thanks!!

    Hi,
    Oracle Advanced Benefits (OAB) must be installed in order to create a Life Event with Defined Person Changes. So a full install of OAB is a mandatory prerequisite to using Life Event Checklists.
    So Please check, and Install Oracle Advanced Benefits (OAB) in order to set up life events.
    This will resolve your issue.
    ArunachalamR

  • Payroll Run request not showing Payroll LOV in Oracle HRMS R12.0.6

    Dear All,
    We implemented Oracle HRMS R12.0.6 to one of our client. But we are facing an issue. We create a responsibility for our payroll user and assign modified menu and Glb Shrms Process and Reports request group to it. We set the profile options (HR:Business Group, HR:Security Profile and HR:User Type) on this responsibility. when we are going to run payroll from this responsibility then on Payroll Run request the LOV of Payroll parameter doesn't show values. Kindly, if any one can have idea related this then please update. Its very urgent..
    Thanx In Advance.
    Regards.

    i don't recall the details, but you have to add a hidden forms function to your menu, so that the concurrent inherits the settings of the caller, so that the LOV's of your concurrent behave.
    Look into the seeded responsibilities, and look for a hidden forms function like multiform or so.
    If it is this, then the issue has nothing to do with 12.0.6 , but is linked to the fact you build your custom menu from scratch.

  • Oracle HRMS R12 training from Oracle University

    Oracle HRMS R12 training from Oracle University
    iWare Logic provides “Oracle Apps Training” and Certification in Oracle HRMS R12 in association with Oracle University.
    Oracle HRMS Training and Certification topics
    R12 E-Business Suite Essentials for Implementers
    R12 Oracle HRMS Work Structures Fundamentals
    R12 Oracle HRMS People Management Fundamentals
    R12 Oracle HRMS iRecruitment Fundamentals
    R12 Oracle Payroll Fundamentals: Configuration (Global)
    R12 Oracle Payroll Fundamentals: Administration (Global)
    R12 Oracle Time and Labor Fundamentals
    R12 Oracle HRMS Self Service Fundamentals
    For details please check
    http://www.iwarelogic.com/training.htm
    for Special Offer on our Oracle Apps trainings please check
    http://www.iwarelogic.com/oracle_applications.htm
    Following are iWare Logic’s contact details,
    iWare Logic Technologies Pvt. Ltd.
    Aditi Samruddhi, Banner,
    Pune, 411045
    Maharashtra, INDIA
    Phone: 91 20 66321113
    Mobile: 91 9326515010
    Email: info at iWareLogic.com
    Website: http://www.iWareLogic.com
    http://www.oracle.com/global/in/education/maps/iware_logic_technologies.html
    Oracle Apps Training http://www.iwarelogic.com/training.htm

    Dear Mohsin,
    Before you acces the Diagrammer, a TCF SocketServer must be running, Please do contact your system Administrator to confirm the same..
    Regards
    Guru K

  • Oracle HRMS R12 Organizarion and Position Diagrammer Problem

    Hi everyone,
    In my oracle r12 HRMS, I created the oragnization hierarchy and position hierarchy, when i open diagrammer to check the hierarchy tree, when i click on " open Editor" Button. i got struck on it and no diagrammer is displayed.. is there any settings to be made to see this diagrammer.
    please can any provide me the solution.
    Thank You..

    Dear Mohsin,
    Before you acces the Diagrammer, a TCF SocketServer must be running, Please do contact your system Administrator to confirm the same..
    Regards
    Guru K

  • Absences Restriction in Oracle Hrms R12.1.3

    Hi Friends
    Recently we have applied the latest patch R12.1.3 .. and i read some where that by in the oracle R12.1.3 we can restrict the absences.. and for the restriction in that version it is given seeded package HR_RESTRTICTED_PKG.
    in this package i have passed my requirement but i am unable to restrict the absences according to the client requirement..
    can anyone please help me out in this..
    for your information i am keeping the package which i wrote for the restriction of absences..
    CREATE OR REPLACE Package Body hr_absence_restricted as
    /* $Header: peabrest.pkb 120.0.12010000.4 2010/03/18 10:25:49 ghshanka noship $ */
    -- |----------------------< absences_restricted >--------------------------|
    function absences_restricted(selected_person_id in varchar2,
              login_person_id in varchar2
              )return varchar2 is
    l_respid number;
    l_abs number;
    l_return number;
    begin
    ----     NULL;
    /* Example code logic
         if to_number(selected_person_id) = 36003 then
              return '31044,31045';
         end if;
    if to_number(selected_person_id) is not null
    then
    ----     BEGIN
    cursor res_cursor is select RESPONSIBILITY_ID
                                  from FND_USER_RESP_GROUPS_DIRECT furg,
                                       per_all_assignments_f paaf,
                                       fnd_user fu
                                  where selected_person_id = paaf.person_id
                                  and paaf.person_id = fu.employee_id
                                  and fu.user_id = furg.user_id
                                  and trunc(sysdate) between paaf.effective_start_date and paaf.effective_end_date;
    cursor c1 is select ABSENCE_ATTENDANCE_TYPE_ID
                   from PER_ABSENCE_ATTENDANCE_TYPES
                   where BUSINESS_GROUP_ID = 162 and ABSENCE_CATEGORY = 'WP';
         begin
                   for j in res_cursor loop
                   l_respid := RESPONSIBILITY_ID;
                   if l_respid = 20536 then
                   for i in c1 loop
              l_abs:=i.ABSENCE_ATTENDANCE_TYPE_ID;
                   l_return := l_abs;
                        end loop;
                   else
                        l_return := '-1';
    end if;                    
              end loop;
         return l_return;
         else
         return '-1';
         end if;
         end;
    end absences_restricted;
    end hr_absence_restricted;
    /

    Hi,
    Please see if (How To Restrict Absence Type LOV in Oracle Self-Service Human Resources [ID 1122674.1]) helps.
    Thanks,
    Hussein

  • Oracle Discover and Oracle HRMS R12

    Oracle discoverer have the ability to work with oracle R12 to get quick report, and how I can load my worksheet in oracle R12 any body can guide me, or have the tutorial regarding this topic
    Thanks in Advance

    Please see (How to Create a Link to a Discoverer Workbook in Apps R12 [ID 471303.1]).
    Thanks,
    Hussein

  • Define Head office in Oracle HRMS R12

    Hi,
    Please I need to know how to define the head office of a group the best way:
    I have a defined business group under which is already defined many companies. I need now to define the head office with its own employees.
    Please advice.
    Thanks

    As my understanding you have requirement to create organization wity Type "Head Office" In a Business Group.
    you can create a number of organization with Type Head Office in Business Group and there you can assign employees.
    Change or Include "Head Office" in ORG_TYPE lookups for your requirement.
    Thanks

  • Hyperion Workforce Vs Oracle HRMS Budgeting-HR

    Hi All,
    We are implementing Hyperion planning and as client uses Oracle payroll they are insisiting to use oracle HRMS budgeting.
    I found Oracle is not as flexible as hyperion workforce in terms of using multiple factors for budgeting like - Grade, dependents, cost centres etc.
    Where as Oracle allows to create budget on llimited factors of any of Job, Position, Grade and organization or combination but I am not sure it accomodates employee transfers, planned departures and change positions which are available in workforce.
    Did anyone faced the same issue of selecting either Oracle HRMS or Hyperion workforce? Please let me know and if you can list what are the benefits and limitations of each applications it would be great.
    Thanks,
    Ravi

    Hi:
    My choice will always be Oracle Hyperion. This is also Oracle recommendation. Other than the benefits you listed, the biggest drawback of HR Budget is that it cannot derive the budget which I hope Hyperion does. HR Budget only captures the amount derived outside system. Moreover its a tedious process to update and maintain budgets in HR if your line items are a lot.
    My reco will be HYPERION!!!
    Regards,
    KKN

  • Hyperion Workforce Vs Oracle HRMS Budgeting

    Hi All,
    We are implementing Hyperion planning and as client uses Oracle payroll they are insisiting to use oracle HRMS budgeting.
    I found Oracle is not as flexible as hyperion workforce in terms of using multiple factors for budgeting like - Grade, dependents, cost centres etc.
    Where as Oracle allows to create budget on llimited factors of any of Job, Position, Grade and organization or combination but I am not sure it accomodates employee transfers, planned departures and change positions which are available in workforce.
    Did anyone faced the same issue of selecting either Oracle HRMS or Hyperion workforce? Please let me know and if you can list what are the benefits and limitations of each applications it would be great.
    Thanks,
    Ravi

    Hi:
    My choice will always be Oracle Hyperion. This is also Oracle recommendation. Other than the benefits you listed, the biggest drawback of HR Budget is that it cannot derive the budget which I hope Hyperion does. HR Budget only captures the amount derived outside system. Moreover its a tedious process to update and maintain budgets in HR if your line items are a lot.
    My reco will be HYPERION!!!
    Regards,
    KKN

  • Query for Cost Code in oracle HRMS

    Hello Exports,
    i am new in oacle hrms,
    So Can you please tell how to fetch cost code in oracle hrms r12 ( i need sql query for cost code )
    Thanks

    try the following (assignment costing as at today):
    select ppx.full_name
    ,ppx.employee_number
    ,pax.assignment_number
    ,pax.primary_flag
    ,pcax.proportion
    ,pcak.segment1
    ,pcak.segment2
    ,pcak.segment3
    ,pcak.segment4
    from per_assignments_x pax
    ,per_people_x ppx
    ,pay_cost_allocations_x pcax
    ,pay_cost_allocation_keyflex pcak
    where ppx.person_id = pax.person_id
    and pax.assignment_id = pcax.assignment_id
    and pcak.cost_allocation_keyflex_id = pcax.cost_allocation_keyflex_id

  • Can we have Oracle HRMS Payroll in Fusion and Core HR in R12?

    Hi,
    Currently we are using Oracle R12.1.3 for Oracle HRMS and Oracle Financials. We are planning to implement Oracle Compensation and Payroll Modules in the near future. We are in dilemma whether to go with Oracle fusion or not for these specific modules.
    We know HCM Coexistence enables us to integrate existing Oracle HR Applications with a hosted Oracle Fusion Compensation implementation. But we are nor sure about the payroll module. We need your valuable advises in proceeding with the payroll module implementation.
    1. Is it possible/certified to have payroll and comp module on fusion and remaining all in R12?
    2. (or) Is it good to implement payroll in R12 for now and move it to fusion in later period of time?
    Please let us know your valuable inputs. Thanks in advance.
    Regards,
    Lakshmi

    I got the answer from oracle for the above question.
    It seems Oracle support only outbound interfaces from Fusion Payroll. They do not have inbound payroll interface capabilities or a payroll back feed. We would need to configure Fusion HCM along with all the prerequisite work structures, set the appropriate Payroll license, configure the Fusion Payroll country extension and implement Fusion Coexistence for HCM to maintain the data between EBS and Fusion.
    It means Oracle support Fusion Payroll only when we have the Core HR setup in fusion. It answers my question.
    Thank You,
    Lakshmi

  • CONTENT SERVER SETUP ON ORACLE 10G IAS (10.1.3) oracle E-business R12.1.1

    Hi Experts,
    Quick one -
    I have been requested to Integrate the CONTENT SERVER SETUP ON ORACLE 10G IAS (10.1.3) with
    oracle E-business SUit R12.1.1. Please also let me know do we have to apply any patches on the
    E-business Suit for Integrating Oracle Content Server setup on Oracle 10g IAS 10.1.3.
    Your quick action in this regards will be highly appreciated
    Please advise.
    Regards
    Mohammed.

    Hi Mohammed,
    You can find all the patches/steps in these docs.
    Oracle Learning Management Content Server setup on Oracle 10gAS - Releases 11i and 12 [ID 427311.1]
    Utilizing Content Servers with Oracle Learning Management [ID 374677.1]
    How Does One Obtain Oracle SCORM Adapter Files For Release 12 (R12)? [ID 457538.1]
    Oracle SCORM Adapter for Oracle Learning Management [ID 331572.1]
    How To Verify Setup Of SCORM Adapter For Learning Management ? [ID 1172599.1]
    Installing SCORM Compliant Content on Oracle Learning Management [ID 374715.1]
    Understanding And Troubleshooting Oracle Learning Management Content Server [ID 754454.1]
    Oracle Learning Management Release 12 Known Issues [ID 405319.1]
    Oracle Learning Management Documentation Resources, Release 12 [ID 397168.1]
    Learning Management (formerly Training Administration)
    http://docs.oracle.com/cd/B53825_08/current/html/doclist.html#Learning%20Management_p
    Thanks,
    Hussein

  • Oracle EBS R12 - DR setup using Oracle Data Guard

    Hi,
    Our customer has implemented Oracle EBS R12 (12.0.6) on a Two Node RAC on HP-UX env. The application Tier also has Two Nodes(Admin Tier and Web Tier).
    Oracle Clusterware - OCR and Vote Disk are on Raw Devices and the EBS database is on ASM.
    Customer wants to implement a DR solution with Oracle Data Guard with only 2 servers - 1 for the Database Tier and 1 for the Application Tier on the DR Site.
    I would like to know if this could be done by following note: 452056.1? I would also like to know if there are other useful docs.
    Thanks.
    Thiru

    Hi,
    Customer escalated this issue to Oracle and they came up with this reply:
    They can implement Disaster recovery solution from RAC to NON RAC using Solution A which use RMAN utilities for backup and recovery.
    While now AMP Application Management Pack gives the capablitiy to build non RAC from RAC Envioment, In future AMP will be capable also to support cloning of DB with Data Guard.
    Details
    Solution A - Using RMAN:
    For Release 12 customers, you can clone from a RAC to RAC (like to like) or RAC to non-RAC. This is using RMAN scripts to take a copy of the db when it’s in archive mode. if you’re leveraging any disaster recovery tools like data guard, the above solution should work fine…perhaps some fine tuning to the procedures
    Solution B - Using AMP in the future release
    For Release 11i , Release 12.x customers, AMP would be offering a new cloning solution that wouldn’t have dependency on Rapid Clone. This solution leverages the strengths of EM Grid Control in provisioning or cloning targets such as databases. This would be an advance solution that would support:
    o A full-fledged scale down cloning
    o Cloning of EBS deployed on Shared File System
    o Hot and Cold mode cloning
    o Quantifiable reduction in clone time for the entire EBS system
    This solution would be leveraging EM grid Control’s DB provisioning pack’s clone utilities, that are quite advanced and support cloning of DB with Data Guard.
    The recommendation is to start trialing AMP version 3.0, making the purchase and implementing within the Enterprise. As we release the new version of AMP (release 3.0.1), Customer would be in a better position to quickly implement the latest features
    Can anyone let me know if the solution A suggested will work.
    Rgds,
    Thiru

  • Job changes in oracle HRMS

    how can i get only those record with history, whose job has change Like from job, to job, from oracle HRMS, and current date record display as sysdate not 12/31/1472.
    Edited by: user12879396 on Mar 5, 2012 5:58 AM

    Done

Maybe you are looking for

  • Monitor Flickers when waking up

    Whenever my unit wakes back up from sleeping, the display will come on, go off for 1-2 seconds, and come back on. This just started happening in the past week. I've had it for about 3 months now and I keep it on almost all the time, but it's sleeping

  • How many Discs in the box?

    Hi there. Perhaps it will sound kind of weird, but I don´t remember how many discs came with the FCS2. Were there 8 or 9? Because I rescently opened my box for reinstallation and found only 8. The one I believe is missing is a Training Tutorial DVD.

  • How to Integrate CRM and R/3

    Hi Folks, We have installed SAP R/3 and CRM server for production environment. But what configuration need to do to integrate both servers. And which interface will communicate with both instances. Please help Thanks in advance, Chimsi

  • Rac setup ip address config

    Hi hussein/heliosl, I want to practise install RAC. One of its requirement is to have 3 pairs of IP addresses? on both nodes? I am correct with this understanding? Thanks a lot

  • IPhoto does not import from iPhone

    I can not import my iPhone pics anymore. Even when the phone is not attached to the iMAC iPhoto shows "Arthur's iPhone" on the left of the screen. On the right side I see 213 empty pictures although I have deleted everything from my iPhone. With empt