How to check HR mode is installed in R12?

Team,
Can you tell me how to check how to check in R12 if HR is mode is installed or not ?

Please see (HRMS PATCH INSTALL FAQ [ID 130369.1] -- 12. How do I determine what products that I have installed, and if they are fully installed or shared?).
Thanks,
Hussein

Similar Messages

  • How can i check Rapid planning version installed in R12 E-Business suite .

    How can i check Rapid planning version installed in R12 E-Business suite .
    Please let me know.

    Hi;
    Please check below doc:
    Information Center: Rapid Planning [ID 1391411.2]
    Information Center: Rapid Planning Patch and Maintenance [ID 1395694.2]
    Regard
    Helios

  • How to check  DBMS_JAVA package is installed or not a database

    Hi all,
    I 'm using an oracle 10g on Solaris 10 machine.Does any one knows how to check if the DBMS_JAVA package is installed or not in my database
    thanks.

    Handle:      user11191992
    Status Level:      Newbie
    Registered:      Feb 9, 2010
    Total Posts:      60
    Total Questions:      29 (18 unresolved)
    So many question & so few answers
    :-(

  • How to check bit mode of running JVM

    HI experts,
    i am using JNI which are 64 bit . libraries looks well at their proper place.
    but stll i m facing error
    [java.lang.UnsatisfiedLinkError: /xxx/xxx/xxx/xxx/native_bin/mylib.so: ld.so.1: java: fatal: /xxx/xxx/xxx/xxx/native_bin/mylib.so: wrong ELF class: ELFCLASS64]]
    i want to confirm about bit mode of running JVM as it should be 64 bit.
    i m using solaris 9. can any body tell how to check running JVM bit mode that is (wheather it is 32 bit or 64 bit)
    thanx

    HI experts,
    i am using JNI which are 64 bit . libraries looks well at their proper place.
    but stll i m facing error
    [java.lang.UnsatisfiedLinkError: /xxx/xxx/xxx/xxx/native_bin/mylib.so: ld.so.1: java: fatal: /xxx/xxx/xxx/xxx/native_bin/mylib.so: wrong ELF class: ELFCLASS64]]
    i want to confirm about bit mode of running JVM as it should be 64 bit.
    i m using solaris 9. can any body tell how to check running JVM bit mode that is (wheather it is 32 bit or 64 bit)
    thanx

  • TestStand how to check debug mode

    I want to close the execution windows when done, and for this i've inserted a statement at the begining of the process model : RunState.Execution.TypeMask = RunState.Execution.TypeMask + 0x10. But i would like it to be executed only in debug mode.
    How can i check TestStand debug mode ?
    JMC
    JMCe

    I've found my answer : i've a boolean "IsEditor", updated with an ActiveX action :
    Object reference : RunState.Engine
    Automation Server: TestStand API
    Object class : Engine
    Get Property : ApplicationIsEditor.
    There are a lot of methods and properties accessible with ActiveX, but not so easy to find !
    JMC
    JMCe

  • How to check current java software installed on mac?

    Hi, I have the macbook pro with mountain lion 10.8.2 software currently installed on it. I am also a really forgetful person and whenever I get an update alert on the app store, I dont bat an eye; I just hit install. I now have been hearing about this hole in the java software and it has me worried, I was told that apple released a software on the 19th of february but I can not for the life of me remember if i did update that particular software, is there a way to check? I would really appreciate some help.

    Unless you specifically installed Java it is not on your system Apple stoped shipping their machines with Java installed a while back.
    However if you want  to make sure that Java is not installed open a Terminal window (/Applications/Utilities/Terminal or enter Terminal in a spotlight search).
    When the window opens enter
    java --version
    If java is installed you'll get its version number back if not this window will open
    and then press Not Now

  • How to check which OS is installed by looking at the files

    Hi,
    I have an iMac here that keeps crashing, i can see the drive in Target mode and i want to do an archive an install on it at some point. I don't know which OS is installed, it could be 10.4, 5 or 6.
    Is there a file i can find on the disk in target mode that will tell me what OS is installed on that drive ?
    Thanks,
    Jay

    Apparently, you want to do an upgrade--to 10.5 or 10.6. Given that the system is crashing frequently, you are not likely to get a very good result. Perhaps, you should fix the install before upgrading. There is no archive and install in 10.6. The closest you can come is to do a simple upgrade installation. In this case, incompatible programs won't be installed, rather will be archived in the Previous Systems folder.

  • How to check the EHP level installed in Collection Management

    Dear all,
    How do I know under what EHP my Collections & Dispute Management modules are running?.
    Another question I want to ask: which EHP contains standard reports to analyse worklists?
    Thirdly, which is the latest EHP that should be activated to run with the latest functionality in Collections and Dispute Management?.
    Thanks in advance.

    Hi Wilson
    Please can you ask a single question in a single thread - it is easier to manage and close.
    In terms of enhancement packs - they are not they key to the functionality - the business function sets are. You could be on Enh Pack 5 for example - but wont use the functionality unless the relevant business function set is activated.
    The latest Enh Pack is 7 -
    There are also two areas to the business function sets per enhancement pack for the functionality.

  • How to check the calendar date format in R12, 'IW' or 'WW' ??

    Hi!
    Currently we are facing any issue where the first date in 2014 is 6-Jan and remaining dates i.e; 2.3.4.5 Jan are in last week of Dec13.
    I read in Oracle Forums topic first dates in Oracle are based on IW and W W format as below;
    W W format - provides the week number such that January 1 is always in week 1
    'IW format - is a little different in that January 1 can be week 53 of the previous year if it is a Friday, Saturday or Sunday.
    But I am unsure in which format, our customers are maintaining the calendar dates in R12?? So is there any way/script find out the date format??
    They are using 4/4/5 calendar type and Prof option 'BOM: Wek or Period Start Day' is set to Monday.
    If this is not the right community for this discussion, please advise the right community as well.
    Please update!

    Hi,
    Try DATE_CHECK_PLAUSIBILITY FUNCTION.
    PARAMETERS : P_DATE LIKE SY-DATUM.
    START-OF-SELECTION.
    end-of-selection.
    CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
      EXPORTING
        DATE                      = P_DATE
      EXCEPTIONS
        PLAUSIBILITY_CHECK_FAILED = 1
        OTHERS                    = 2.
      IF SY-SUBRC <> 0.
        WRITE :/ P_DATE, ' is Invalid Date'.
      ELSE.
        WRITE :/ P_DATE, ' is a valid day'.
      ENDIF.
    If you want the OO way of doing the same, you can use this.
    CALL METHOD CL_RECA_DATE=>CHECK_DATE
      EXPORTING
        ID_DATE      =
    EXCEPTIONS
       DATE_INVALID = 1
       others       = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Internally, it calls the above function module.
    Regards,
    Ravi
    Note : Please close the thread, if the question is answered
    Message was edited by: Ravikumar Allampallam

  • How to check if XI installed

    Hi,
    I know this is a basic question.
    Our basis guys installed, BI of NW2004s, how to check if they have installed XI.
    Any links, documents in this direction would help me.
    Thanks,
    -Naveen.

    Hi,
    For the Java part of xi, you use this URL:
    http://<host>:5<nn>00/rep
    with <host> = your XI server hostname
    with <nn> = your XI system ID (e.g 01)
    Note: no user is needed to display this Java page.
    For the Abap part, just use your SAP Logon with both parameters: <host> and <nn>. If you can enter a user and a password, that's means that ABAP part of XI is installed.
    Mickael

  • How to check SQL Mamagement studio is installed or not (any version) programatically

    How to check SQL Mamagement studio is installed or not (any version) programatically?
    Secondly how to check if it is installed in other driver of a system(other than C drive) programatically.

    Thanks visakh16,
    Actually i do not want to read/write registry from SQL Server like  you replied 'Accessing The Registry From SQL Server' link
    and i dont want to check manually in registry.even i am aware of all registry path.. programmatically (by C# or VB.NET) i want to get that yes SSMS is installed of not even if it is installed in other drive(other than C Drive).. Beacause if it is installed
    on the system , i want to launch that. i can launch, login for specific user/database, but i want to know, is it installed or not any version of SSMS befoe launch.This is my question... please review it..Thanks in advance..
    Actually I tried this way..
     Dim registryView As RegistryView = If(Environment.Is64BitOperatingSystem, registryView.Registry64, registryView.Registry32)
            Using hklm As RegistryKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, registryView)
                'Dim instanceKey As RegistryKey = hklm.OpenSubKey("SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL", False)
                If instanceKey IsNot Nothing Then Return True
                Return False
                      '    For Each instanceName In instanceKey .GetValueNames()
                '    Next
                'End If
            End Using
    Here i am checking for instances but i want to check only SQL Management Studio is installed or not..Thanks again

  • How to check whether KMC installed?

    Please tell me how to check that KMC is installed on the portal or not ?
    Pls help me.

    Hi Karan,
    You can check all the installed components at http://<server host name>:<port>/index.html
    Here under System Information, you will find all installed components.
    Thanks,
    Ami.
    Reward for helpful answer.

  • OBIEE11g: How to check current environment installed/applied patches?

    Hi all,
    Does anyone know how to check current OBIEE environment installed/applied patches? I don't have the patch installs anymore and now trying to figure out how to view them. My current environment is OBIEE 11.1.1.5.
    Thank you in advance!

    To check Patches applied, do changes where ever required.
    Use this command
    cd $FMW_HOME/Oracle_BI1
    opatch lsinventory|grep applied
    In Windows from C:\OFM\Oracle_BI1\OPatch
    Use this command
    opatch lsinventory applied
    opatch.bat lsinventory –oh <EPM_ORACLE_HOME> –jdk <MIDDLEWARE_HOME>/jdk160_21
    To check the version login to Answers-> Administration you can find the version a top use weblogic user to see.
    Appreciate if you mark as correct/helpful

  • How to check is my SATA Hard Drive in AHCI Mode?

    Hey all. I'm trying to install Mac OS X (iPC distro), but it can't be done cause it always returns an error: Still missing root device. I've read that my Hard Disk must be set on AHCI mode, but I don't have an idea how to check is it set correctly or not. I didn't find the information about that in BIOS V2.4.
    I'm using  MSI K9N Neo v3 (MS-7369) -> NVIDIA Chipset
    How I can find out that information?

    That's illegal ==> https://forum-en.msi.com/index.php?topic=126115.0
    Topic locked.

  • How to check which version of hyperic is installed , hyperic 32 bit or 64 bit version on solaris

    how to check which version of hyperic is installed , hyperic 32 bit or 64 bit version on solaris

    If you have only a single home, the quickest/easiest way is probably just to check the properties of %ORACLE_HOME%\odp.net\bin\2.x\oracle.dataacess.dll
    Or are you asking how to check it at runtime?
    If you want to see externally what is actually loaded by an app you can use process explorer
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    If you want to check it in the app itself:
    http://stackoverflow.com/questions/383686/how-do-you-loop-through-currently-loaded-assemblies
    Hope it helps,
    Greg

Maybe you are looking for

  • Using animation as icon for JTree node

    Hi, I am using a custom tree cell renderer. I have a label in the renderer, the label have gif Image Icon, but the problem is it is not getting animated. But when I use a JLabel with gif icon some where else it is working fine, but it is not working

  • I have changed my photo to black & white.

    Photo is now black & white.  Is there a way to change parts of the photo back to color?

  • ITunes will 'mostly' not connect to the iTunes Store

    So, I have been having thisproblem for a couple of months, but I've been doing all my iTunes storepurchases on my iPad so it hasn't been a problem.  With the new iPhonecoming out and moving back from Android to iOS I need to get my iTunes store worki

  • BAPI/Function Module in CRM to create Credit Memo

    Hi, It will be great if some one can help me in finding out whether there is any <b>BAPI/Function Module</b> in <b>CRM</b> to create <b>Credit Memo</b>? Rgds, Sam.

  • Dynamically removing a component button...

    Sorry if this question sounds stupid/easy, but I'm blanking. How do I use AS to dynamically remove a component button that was dragged out onto the stage?... Thanks!...