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

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • Architectural difference in oracle HRMS 11i and r12

    Hi - does anyone have information on the architectural difference between 11i and r12 in oracle hrms??

    Hi 924227,
    There is not much difference between 11i and R12 with respect to architecture.
    Some D2k forms moved to OAF and mainly bug fixes and minor enhancements.
    You can find all the details in the below note -
    Oracle E-Business Suite HRMS / HCM Information Center [ID 1099813.1]
    In Fusion, there will be many changes as a lot of things are incorporated from Pplsoft.
    Cheers,
    VB

  • 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

  • OracleApps HRMS-R12.1.3 Integration with MS Active Directory (win 2008 R2)

    Dear Friends,
    we are using Oracle Apps R12.1.3 and the Microsoft Active Directory : Windows 2008 R2
    we have the following requirement:
    (1)From Oracle Apps to Active Directory.
    -Employee master information needs to be interfaced to Active Directory on a regular interval which should be updated in the active directory.
    (2)From Active Directory to Oracle system.
    -Whenever new email address for an employee is created in Active directory, the information needs to flow to Oracle HRMS.
    Please let us know the method to achieve with minimal latest oracle softwares?
    can it be done over coding from oracle apps without new softwares?
    Is Oracle Apps R12.1.3 certified with Windows 2008 R2 Active Directory?
    Regards,
    DB

    user564706 wrote:
    Dear Friends,
    we are using Oracle Apps R12.1.3 and the Microsoft Active Directory : Windows 2008 R2
    we have the following requirement:
    (1)From Oracle Apps to Active Directory.
    -Employee master information needs to be interfaced to Active Directory on a regular interval which should be updated in the active directory.
    (2)From Active Directory to Oracle system.
    -Whenever new email address for an employee is created in Active directory, the information needs to flow to Oracle HRMS.
    Please let us know the method to achieve with minimal latest oracle softwares?
    can it be done over coding from oracle apps without new softwares?
    Is Oracle Apps R12.1.3 certified with Windows 2008 R2 Active Directory?
    Regards,
    DBPlease update your original thread(s) instead of creating new one(s) -- Integrate Oracle Apps R12 with Microsoft Active Directory
    Thanks,
    Hussein

  • Oracle EBS R12 Advice

    Hey Community,
    I have 2 years of experience as an Apps DBA. I recently took a new job working under a consultant as jr. apps dba. Well the consultant was fired and well now I'm the only dba. So far things are great and I'm really enjoying this challenge. I have been studying my behind off daily to catch up on a lot of stuff that is new to me. I had a few questions I would like to ask and get advice from experts here.
    One of my questions are what are some daily tasks I need to do as an apps dba? This is a fairly new shop and right now, there isn't any procedures on doing much. I am creating procedures now. Right now I just check to make sure the applications are up, if they are down, I go from there. We have a core dba so I don't have to do much on the database side. I need info for the application side.
    Also, I don't know RAC but will have to learn it. I do have my own home environment. I know how to install Oracle EBS finally. At the moment, I am upgrading my database to 11.2.0.3 and after that I will upgrade my applications to 12.1.3 and then the latest version. After I complete these tasks, I am going to take time to learn as much as I can about RAC, then I will do my own implementation of RAC. I will then need to install Oracle EBS on RAC (Not sure how to do that yet) I also need to learn to clone on RAC, Patch on RAC and how to maintain EBS on RAC. If you all could give me any documentation, videos, or anything else I can study it would be greatly appreciated.
    Also do you all have any advice for me that will help me rise to the challenge. I know its a huge one but its one I believe I can do as long as I put in much hard work and dedication. Any advice would be appreciated. Thanks

    Daily tasks/checklist for Apps DBAs -- https://community.oracle.com/search.jspa?q=apps+dba+daily+tasks
    How to become an Apps DBA -- https://community.oracle.com/search.jspa?q=how+to+become+and+apps+dba
    RAC Installation & Cloning
    Oracle E-Business Suite Release 12 High Availability Documentation Roadmap(Doc ID 1072636.1)
    Using Oracle 11g Release 2 Real Application Clusters and Automatic storage management with Oracle E-Business Suite Release 12.2(Doc ID 1453213.1)
    Using Oracle 12c Release 1 (12.1) Real Application Clusters with Oracle E-Business Suite Release R12.2(Doc ID 1626606.1
    Rapid Clone Documentation Resources For Release 11i and 12(Doc ID 799735.1)
    Certified RAC Scenarios for E-Business Suite Cloning(Doc ID 783188.1)
    Cloning Oracle E-Business Suite Release 12.2 RAC Enabled Systems with Rapid Clone(Doc ID 1679270.1)
    Cloning Oracle E-Business Suite Release 12 RAC-Enabled Systems with Rapid Clone(Doc ID 559518.1)
    Troubleshooting RAC RapidClone issues with Oracle Applications R12(Doc ID 1303962.1)
    Thanks,
    Hussein

  • API' s in Oracle HRMS

    Hi,
    Please let me know where can i get the list API's in Oracle HRMS
    Thanks
    Rakesh

    Hi,
    is this responsbility available in R12 to find out the API's in R12????Yes -- Please see these docs.
    IREP - Oracle Integration Repository: The Tool To Find Which API Is Supported and How To Use It ... [ID 554986.1]
    Oracle Integration Repository Documentation Resources Release 12 [ID 396116.1]
    Release 12 Integration Repository [ID 458225.1]
    Thanks,
    Hussein

  • Oracle HRMS 11.5.10.2 Custom Alert on Leave

    Hi there
    I have to create a Custom Alert in Oracle HRMS on Specefic Leaves.
    What Step need to be followed?
    """******Process Detai****l""""""
    • Oracle Custom Alert should be created. Which will fire each time when the leave APPROVED in OTL by the authorized person.
    • Email should be sent to the specefic group of people.
    """************l""""""
    Any help Appritiated.
    Thanks
    Discoverer

    Oracle EBS(11i and r12) does not provide you any web services.
    Most of the code is in Pl/sql or C.
    The next version of applications Fusion apps would have readily available web services which can be used to integrate with 3rd party solutions.
    For now, you will either have to write your own Webservices(wrapper on top of Pl/sql APIs) or somehow connect to the EBS database.
    There would be seeded pl/sql APIs/functions for most of the absences stuff.
    Cheers,
    Vignesh

Maybe you are looking for

  • Mail 2.1 Crashing!  Reinstall? Help!

    Mail has begun crashing while collecting email. The tale: It's an ole G4 Quicksilver and the drives are getting pretty full. I get a lot of email through various POP accounts and recently i've had trouble getting Mail to collect it. I leave the Activ

  • Can we call a package inside a package

    Dear Sir Can we create a package inside a package or can we call a a package inside a package?.If yes.How we can create and call a package inside a package? Regards Thakur Manoj

  • URGENT, EXPERTS PLS HELP!!

    I would like to know answer to following question: "Is java.lang.Object" overused??? Pls reply immediately coz I doing my final year project at ivy league university and I need to hand in my assignment in next 2 hours!

  • Leopard Installation and Windows

    I have purchased Leopard. Currently, my mac is on system 10.5.8 and I also have windows xp on the computer, use boot camp to switch back and forth. Question: If I install Leopard, will that destroy the windows files now on the computer? I'll back up

  • Import existing iWeb site to newer computer with iWeb (iLife) '09

    I have a website I developed on my older Mac using iWeb (iLife '06) and I want to transfer it to my current iMac (Snow Leopard + iLife '09) to use the better tools (for FTP uploading of multiple sites)... I transferred the folders from the original s