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

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

  • 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

  • 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 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

  • 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

  • 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

  • How to change header and footer in login page in oracle apps r12

    Hi all,
    how to change header and footer in login page in oracle apps r12 and login button background color, please help me
    thanks
    saran

    how to change header and footer in login page in oracle apps r12 and login button background color, please help meTips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to Personalize Login page in R12? [ID 579917.1]
    R12 Login Page: How to Personalize the Logo ? [ID 849752.1]
    Thanks,
    Hussein

  • How to define branches of a bank in oracle hrms

    Hi
    Im new to oracle hrms and i have a question regarding on how to reflect the different branches of a bank in oracle hrms.Is it through defining an organization for each branch ?Please advice
    Thank you
    regards

    For Which Localization are you working?
    If it is UK - Define Banks against Lookup GB_BANKS and branch locations against Lookup GB_COUNTRY.

  • 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

  • User-defined http header and com.oracle.httpclient.HttpRequestBuilder

    Hello,
    In Java ME Embedded 8, I would like to send a HTTP request containing a user-defined identifier in the http header (X- header type), using the com.oracle.httpclient package.
           HttpClient client = clientBuilder.build();
            HttpRequestBuilder requestBuilder = client.build(http://my_uri);
            requestBuilder.setHeader(HttpHeader.ACCEPT, "text/plain");
    Here, I would like to add a user-defined header value like :
          requestBuilder.setHeader("MyHeader", "myHeaderValue");
    It seems that there are only pre-defined values available for headers in the com.oracle.httpclient.HttpHeader class.
    Is there any way to add a user-defined header in the request ?
    Thanks in advance.
    Bruno

    Hi Bruno,
    did you try HttpHeader myHeader = new HttpHeader("MyHeader");?
    /Sergey

  • Please give me idea now I compile all branch data in head office only new r

    Hi master
    Sir I have 5 office In different city and one head office in Karachi all branch have same oracle system my question is how I get new data and compile for accumulative reporting
    I want only new record and modify record not old record
    Old record already I import
    When I use oracle import and export tool that no give me right result
    If xxx table exists in database then import tool not replace and no insert or no replace with previous data with new modify data
    Such as
    First time
    V_no=897 have debit amount 3998 is Islamabad branch and i export form Islamabad and import in Karachi office
    Next time
    Islamabad office change v_no=897 debit amount with 76555 and add many new record
    I export form Islamabad and import in Karachi office but system no change and not add new record in Karachi office
    Please give me idea now I compile all branch data in head office only new record and modify record
    Thanks
    aamir

    Here a very simple example with table EMP, assuming source table has a primary key. Firstly you create a materialized view log on source table (necessary for fast refresh) :
    SYS@db102 SQL> conn test/test
    Connected.
    TEST@db102 SQL> create materialized view log on emp including new values;
    Materialized view log created.
    TEST@db102 SQL> then at destination DB/user :
    TEST@db102 SQL> conn scott/tiger@test10
    Connected.
    SCOTT@test10 SQL> create database link test
      2  connect to test identified by test
      3  using 'db102';
    Database link created.
    SCOTT@test10 SQL> create materialized view emp_mv
      2  refresh fast
      3  as select * from emp@test;
    Materialized view created.
    SCOTT@test10 SQL>Now emp_mv is the exact copy of emp. To refresh the MV, to reflect changes :
    SCOTT@test10 SQL> exec dbms_mview.refresh('EMP_MV','F');
    PL/SQL procedure successfully completed.
    SCOTT@test10 SQL>                                                                  ...but I strongly recommend you to read the documentation...

Maybe you are looking for

  • Read data from Vector object serialized in a file issue!!

    Hi all, I have two classes :CBase and CHelper class in a package and serializing some information in a file and then reading it. I am facing some problem while reading the data which was stored using vector of objects. Below is the detailed problem::

  • Drop IE connection if PAC file not found

    When users are in the corporate network, their machines will grab the PAC file and use it. However, when they bring the machine back, since the machines are unable to grab the PAC file (without VPN), IE revert to direct connection, hence bypass PAC f

  • Gedit chrash with snippets plugin

    Hi, I have updated arch with gnome. The problem occurs when I open a new tab in gedit and close it; gedit crashes. If I run it from terminal I get this error: Exception ignored in: 'garbage collection' TypeError: Couldn't find foreign struct converte

  • Email failure

    Hello. I have just set up my HP 8600. This notion of eprinting is new to me, but I got everything connected through HP Connected I have tried to send emails to my printer, but each time, it fails, and I get this message: This is an automatically gene

  • IMessage doesn't deliver photos to certain contacts

    My friend and I both have iPhone 5's running iOS7. We can send and receive imessages just fine (blue quote bubbles) but when I send a photo it fails to deliver. This even happens in group chats where the I and the other people can see the photos but