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

Similar Messages

  • 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

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

  • 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

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

  • 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

  • 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

  • How to add invoices while creating Batch Payment in Oracle Apps R12

    Hi all,
    how to add invoices while creating Batch Payment in Oracle Apps R12
    Thanks

    Can you elaborate your problem in detail ?

  • OBIEE 11g with Oracle EBS R12 implementation,Need to know Default Roles

    Hi All,
    Can anyone please let me know regarding any documentation or link where i can find all default OBIEE Group names and the relation of each Groups with Oracle EBS R12 roles and responsibility categorized by the Modules.
    We need the Roles information for the following modules:
    1. Supply Chain & Order Management
    2. Procurement & spend
    3. Finance
    Thanks in advance. Please help.
    Regards
    Sudipta

    Please see these docs.
    Integrating Oracle Business Intelligence Applications with Oracle E-Business Suite [ID 555254.1]
    What documentation do I need to review when installing and configuring a OBI Apps 7.9.6.x environment with EBS? [ID 1221764.1]
    Master Note for OBIEE Integration issues with EBS, Siebel, SSO, Portal Server [ID 1248939.1]
    Oracle SSO E-Business Suite Applications Integration with Oracle Business Intelligence [ID 553423.1]
    Oracle EBS integration with OBIEE [ID 733137.1]
    Document for implementing security OBIEE Apps with EBS and Siebel CRM as sources [ID 756851.1]
    What Application must be chosen for Responsibility within EBS when integrating with OBIEE [ID 1246464.1]
    Also, search Steven Chan's Blog and you should get couple of hits -- http://blogs.oracle.com/stevenChan/
    Thanks,
    Hussein

  • Setting OF LD_LIBRARY_PATH AND WEB CACHE PROBLEM [SHOWING PREVIOUS PAGE ]

    Dear Members,
    I would request for help regarding setting of LD_LIBRARY_PATH in Oracle 11G Application server and web cache problem when any single text file edit and save the result should not be changed . it shows previous page result.
    *1. Where to set LD_LIBRARY_PATH in Oracle11g Application Server (10.3.0) ? [  like in 9ias we set in opmn.xml . ] Where is opmn.xml file in oracle11g or which files contained LD_LIBRARY_PATH?*
    *2. When we created program generated report it shows correct result after some changes in file and generate again it shows first means previous page result as it is not take changes in that file. Even we tried out side made one .text file and open edit and save. It's given same result. So What is the problem regarding it?*
    It is the matter of  Browser Cache or WEB Cache. Where is the settings of it?
    *3. How to connect database (oracle11g Release 2) through OCI driver?*
    Regards
    Vipul Patel

    If you're compiling it yourself, you should set the library path then. If not, you can try something like this:
    env DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/path/to/add-on-libraries orca ...
    but I'm not sure it will work.

  • 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

  • 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

Maybe you are looking for