JavaCAPS 6.2 to JavaCAPS 6.3 upgrade?

Has anyone gone through JavaCAPS 6.2 upgrade to JavaCAPS 6.3 on Solaris or AIX server? Can you please share your experience. Any issues that you may have encountered. Is the upgrade patch (to upgrade the JavaCAPS 6.2 repository to JavaCAPS 6.3) is safe to use and if anyone has used it.
Syed

user13605085 wrote:
Hi,
We have EBS 11.5.10.2 on HPUX with 10.2.0.5 database.We want to migrate it to EBS 12.1.3 with 11.2.0.3 database.
We also have 10.1.4.3 SSO with AD.
Our approach is:
First Phase:
1) From source(HPUX) take export(expdp) backup of 10g database.
2) Install 11.2.0.3 database on Target ie,on Linux server.
3) Import database on target 11g database.
4) Link 11g(Linux) database with 11i(HPUX) application
5) Re-Integrate SSO with 11g database.
Second Phase:
1)Pre upgrade steps on 11g database(linux)
2)Install file system of EBS 12.1.1 on linux with upgrade.
3) Upgarde steps
4) Post upgarde steps.
Is it feasible? Please suggest.Please do not post duplicates -- Upgrade EBS 11i(10.2.0.5) on HPUX to EBS R12(11.2.0.3) on linux
Thanks,
Hussein

Similar Messages

  • Has anyone upgraded their existing JavaCAPS 6.2 to JavaCAPS 6.3

    We are in the process of evaluating JavaCAPS 6.3. Currently our JavaCAPS is on version JavaCAPS 6.2 running on IBM AIX server. Can anyone share their experience of upgrading existing JavaCAPS 6.2 upgrade to JavaCAPS 6.3? We are planning to do an in-place upgrade from JavaCAPS 6.2 to JavaCAPS 6.3.
    Is it necessary to re-compile and re-deploy all projects when we upgrade to JavaCAPS 6.3. We are planning to do an in-place upgrade.
    Syed

    See this Discussion
    rkaufmann87 gave a pretty good reply to you.

  • Is AIX7.1 and MS Windows 2012 supported for JavaCAPS5.1.3 R4 and JavaCAPS 6.3?

    Does AIX 7.1 and MS-WIndows 2012(and cluster) supported for JavaCAPS5.1.3 R4 or JavaCAPS 6.3?

    John provides another possible workaround for your issues :
    http://www.metavero.com/index.php?option=com_content&view=article&id=44:making-ie8-work-on-hyperion-11x&catid=1:latest-news&Itemid=50
    My situation is slightly different. We are upgrading to most recent version of Hyperion in 2012 and are not looking to apply service packs/updates to 9.3.1 in the mean time; however, we needed IE 8. We performed the javascript fixes and our users are able to perform their work just fine.
    I would also agree that XP mode is not that answer.
    Another option would be to install IETester as it lets you 'convert' your IE browser to be compatible with previous versions.... http://www.my-debugbar.com/wiki/IETester/HomePage
    Finally, you could have users use Firefox browser as that seems to work; however, it does SOME things differently than IE so you might get some complaints about that.

  • Java collaboration initialization method- exists on javacaps 5.1.1?

    Hi everyone
    I have javacaps version 5.1.1
    I want cache properties on a Map in a Java collaboration definition.
    Has a Java collaboration definition an initialization method? or how can implement it?
    Any help will we appreciated

    I do not think in such method exists. If you need to implement the cache at begining of the collaboration- Have a static method in side that method limplement your load properties code. This will gurantee the cache available as long as your JVM life i.e until restart the Integration Server instance.
    Cheers
    Raghu

  • JavaCAPS enabled NetBeans Ws client creation

    Hi all,
    When using NetBeans6.1 for creating a WebService with JAX-WS everything goes ok. Well, as you may already know it gives some errors if the WSDL imports an XSD from the CAPS UDDI, since it's not available in a default installation I guess. But if you edit the WSDL by removing the import statement and manually adding the types in the XML then everything works fine.
    However when using the NetBeans6.1 JavaCAPS enabled, that comes with JCAPS6, the code generated in the operation drag'n'drop has some differences. First, it doesn't ask you to specify a package, so the classes are called automatically from the package stc.egate.jce . For example, the generated code in the "normal" NetBeans is:
    com.javanes.ws.DummyWsXsdJcdDummyService service =
        new com.javanes.ws.DummyWsXsdJcdDummyService();While the generated code in the JavaCAPS6 NetBeans is:
    stc.egate.jce.dummyws_xsd_jcddummy.DummyWsXsdJcdDummyService service =
        new stc.egate.jce.dummyws_xsd_jcddummy.DummyWsXsdJcdDummyService();I've already updated my NetBeans but the JAX-WS option doesn't ask me to specify a package when creating the client. So the client classes aren't created and the package is not available (actually it doesn't even exist).
    Am I missing something? Is there any special configuration for JAX-WS in the JavaCAPS NetBeans?
    Thanks in advance,

    where you able to create a client with PasswordDigest?

  • MDB with JavaCAPS Queue

    I have a Message Driven Bean and it has to listen to a queue in JavaCAPS JMSManager.
    I use tomcat. how do i specify this in deployment descriptor. it wud great if anyone can give a code snippet.
    Thank You

    Hi Andrew,
    In this case you would treat the SAP JMS Provider hosting the remote queue on box B as a "third party" JMS provider, as described in this [document|http://help.sap.com/saphelp_nwce711/helpdata/en/46/6e52823abf7185e10000000a114a6b/frameset.htm].
    You have to use the first option, <context-factory-type>. In case both CE systems are of the same version, you don't even have to deploy a JMS library as described in step 4 and can leave the <library-name> element out.
    Here is a sample jms-resources.xml:
    <?xml version=u201D1.0u201D encoding=u201DUTF-8"?>
    <jms-resources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="jms-resources.xsd">
       <connection-factory>
          <name>MyConnectionFactory</name>
          <context-factory-type>
             <initial-context-properties>
                <initial-context-factory>com.sap.engine.services.jndi.InitialContextFactoryImpl</initial-context-factory>
                <provider-url>hostB:50004</provider-url>
                <security-principal>Administrator</security-principal>
                <security-credentials>admin_password</security-credentials>
             </initial-context-properties>
             <link-factory-name>
                jmsfactory/default/XAQueueConnectionFactory
             </link-factory-name>
          </context-factory-type>
       </connection-factory>
       <destination>
          <name>MyQueue</name>
          <type>javax.jms.Queue</type>
          <external-destination-type>
             <link-connection-factory>
                MyConnectionFactory
                <!-- This name has to be the same as the name of the connection factory -->
             </link-connection-factory>
          </external-destination-type>
       </destination>
    </jms-resources>
    Then, in the MessageDriven annotation you just need to use the above connection factory and destination.
    HTH!
    -- Vladimir

  • Portlet EJB JavaCAPS

    Hello members
    Could somebody provide a feasibility of the following scenario and inform How-To (or provide links to How-To):
    Technical scenario:
    1. Portlet calls the Remote method (methodPA) of EJB
    2. methodPA calls methodJC1.
    3. methodJC1 will use JavaCAPS eWay(or any other method) to select records from a table.
    4. methodJC1 will format the received values and return data to methodPA.
    5. methodPA returns a formatted result to the portlet.
    I am stuck regarding the approach to be taken for step # 3.
    Any information will be very much appreciated.
    regards,
    Amitabh.

    1) If I design the app. as a servlet (everything
    deployed on the AS), how can I plug it into the
    Portal? (and get the info about the user from Access
    Manager API)
    So you have one app (the portlet webapp deployed in Sun Web Server) trying to access another app (ejb or web module) deployed in Sun appserver. You can implement your servelt as a web service endpoint.
    2) If I design the app. as EJB (business, database)
    and the presentation layer as a Portlet, how can I
    access the EJB from the portlet?
    Your portlet in web server can lookup the ejb deployed in appserver and invoke its business methods, if the two hosts are in the same intranet. Otherwise, you can implement your stateless session beans as web service endpoint.
    -cheng

  • JavaCAPS 5.1.3 and WS-Security question (PasswordDigest)

    Hello,
    I've been successful in exposing secure WS from JCAPS 5.1.3, using the UserNameToken and both PasswordText and PasswordDigest, but the latter works only if the client is also made in JCAPS. At present I can make a call to JCAPS WS with both SopaUI and a .NET client, but only when the password is in clear, which is not secure at all... When I configure the WS for password encryption it works only from another eInsight BP. I was struggling with documentation to find any hint but there is almost nothing. Of course with JCAPS 6 we could leverage a much better WS stack, but I can't force the customer to update just because of this single issue.
    Thanks

    Post Author: amr_foci
    CA Forum: Integrated Solutions
    go to this link and find the documentaion about ur specific version
    http://support.businessobjects.com/documentation/supported_platforms/default.asp
    u will find supported platforms and connectivites
    good luck

  • JavaCaps 5.1.3. eDesginer support for Vista

    Hi,
    I'm running 5.1.3 on Vista and have a lot of issue with the keyboard buffer when running eDesigner. The symptons are for example, you press page-down once, and it will repeat a couple of times. The issue has something todo with the keyboard buffer. I've found that this issue is related to the JRE/JDK used by the eDesigner (1.4.2.13-b06). I've tried to replace the JDK with a newer one, but didn't succeed. Is anyone have a possitive experience with Vista?
    Thanks!
    Cor Zijlstra
    Onetrail

    Hi,
    I'm running 5.1.3 on Vista and have a lot of issue with the keyboard buffer when running eDesigner. The symptons are for example, you press page-down once, and it will repeat a couple of times. The issue has something todo with the keyboard buffer. I've found that this issue is related to the JRE/JDK used by the eDesigner (1.4.2.13-b06). I've tried to replace the JDK with a newer one, but didn't succeed. Is anyone have a possitive experience with Vista?
    Thanks!
    Cor Zijlstra
    Onetrail

  • IPod no longer works with car stereo since upgraded MBA & iTunes

    My iPod classic has worked just fine connected to my car stereo since i bought it last june. I just bought a new Macbook Air (OS 10.7.3) & installed ITUNES 10.6.1. After I synched my ipod for the first time its recognised by the car but i get a "can't read data" message. I re-formatted my ipod but its exactly the same. Do you think its the upgrade- or the cable? Has anyone else found a bug with this version of Itunes or the OS? I have my doubts a cable would make the difference, and my old ipod nano that i haven't synched for a while works fine.

    If standalone works fine, then, most likely the 30 pin connect may have some dirt or lint, prevent data transfer.
    You can try to blow it clean, if you have a can of compressed air or gas.
    Alternatively you can connect it to the car stereo and do the RESET, while connnected.as follows
    Toggle the Hold switch, make sure you dont see the red mark when you do the  next step
    Reset the iPod -> Press Menu and Center button simultaneously for about 10 secs or till the Apple Logo comes ON
    Then release the buttons
    Select your preferred language.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    The Reset sequence may send a signal to the Car stereo to do the right thing

  • Brand new IPOD Touch Apps no longer work after upgrading software

    I got a Ipod touch for my wife Today at Wal-Mart. I brought it home, connected to wifi and downloaded some apps and also payed for some. They all worked fine. Then I connected to computer to transfer songs. It told me to upgrade the Ipod software so i Did. After it restarted none of the downloaded apps work anymore. I have read MANY MANY MANY discussions on this and there is no fix. I am not wiping out all the songs and reload everything all over again. It will take forever. My wifes BD is Friday and this is making me so mad after I just dropped $300 on this thing. APPLE!!! Where is the fix? I deleted the apps and reinstalled they still don't work. Anybody got this figured out? I am getting ready to get my money back and tell everyone to avoid buying ipod until they get this upgrade bug fixed.
    Message was edited by: 2009 IPOD TOUCH

    I have the same problem. Brand new two days ago. I synched the touch with Itunes but wasn't hooked up to the internet at the time so didn't do the software upgrade right away. Then I downloaded about a dozen apps (free and paid) with wifi directly to the touch. They all worked fine. Then I plugged it back in to Itunes and had it upgrade it to 3.1.2. It locked up Itunes several times since then and the downloaded apps no longer work (they start to open then disappear).
    The problem is, no one is listening to this problem (including Anna above)! Everyone says "just do a hard reboot, or restore to factory settings, reload the apps, etc." I've tried all the standard troubleshooting but none of it fixes this. It sure seems to me this is a problem with 3.1.2 but Apple isn't helping out here. Where are you APPLE? Use some of those outrageous profits you're making to fix the problem you have created. Here's $300 of my hard earned dollars pretty much down the drain.
    Message was edited by: IPatronius

  • Ipod touch can no longer connect to XP following Apple upgrade, HELP !

    This is a nightmare. My son has an ipod touch (8gb)purchased a couple of months, and it's been fine until a couple of days ago. I downloaded some music for him, and just about to synch when Apple informed me on itunes of a software upgrade, so naturally I did this. However, it could not complete it saying there was a problem installing the hardware. The ipod then had a permanent picture of a usb cable pointing towards the itunes logo. Itunes no longer recognises this ipod or my own ipod as a device.
    I'm not a techhie expert, but I generally know my way around computers, however I could not resolve this.
    I called the Apple technical support desk, where I spent 1 hour 45 minutes with 2 different advisors who could not resolve this. We installed and re-installed various components from drivers to itunes to anti virus software, however nothing could change. There was simply no recognition of the ipod at all when connected.It does give a pop up message to restore the ipod, however you can't actually click on the restore button because to have to get rid of the pop up message first, then the screen with the restore facility disappears.
    Windows xp is continually popping up a message saying " FOUND NEW HARDWARE WIZARD There was a problem installing this hardware. Apple Mobile USB driver. An error occured during the installation of the device. The system cannot find the file specified."
    You then have to click on finish, however the message keeps coming back. We kept going round and round in circles with the technical support people, where it was left that I should start removing programmes on my computer to see if any of those are causing a problem. I have had the same spyware for the last 12 months now and never had a problem before, nor any other programmes.
    I booked a genius appointment at my local Apple store today where the assistant reset the ipod to factory settings so it could at least work. I explained the situation, however 15 minutes was never going to be long enough to look into it, and a restore was all they did. Obviously all of my programmes were lost, however when I got home and plugged it back into the computer again, it could not be recognised by itunes and i got the same pop up message. Luckily we have not spent alot on downloads, however my son has lost his music now and it cannot be connected or upgraded. It's under guarantee however a software upgrade by Apple has totally messed my computer up. I really don't know who to turn to now as both the service support and store has not rectified this, something I feel has been caused by Apple.
    Any advice is appreciated. Thanks

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network       
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Just upgraded HDD, now how do I get my data back??

    I just upgraded my stock 60GB HD to a 120GB Seagate Momentus 5400 ($100). This is what I did:
    1. Before removing the 60GB HD, i created a read-only disk image of my HD(with Disk Utility on the OSX install CD). I put this disk image on my USB external hard drive.
    2. Physically replaced the 60GB with the 120GB.
    3. Now, I boot up the computer to the OSX install CD (since it is a blank new HD). I open up Disk Utility on the install CD, and try to restore the image i created (on my external USB HD) to my new 120GB internal drive. I am able to select the image to restore, but cannot select my internal drive as the destination.
    I have all sorts of music, movies, applications...etc. on my old HD that I want on my new drive.
    I want to have my computer be identical to before I upgraded, just with a larger HD. Is this possible?
    I have tons of external USB HD space to use if needed, and I also still have the old HD... if I need to create a different kind of disk image or something.
    Please help!
    Macbook 2.0GHz (White)   Mac OS X (10.4.8)  

    I did this already. I failed to mention it in my first post. I have my HD "111.8 GB Seagate..." and underneath it: "Macintosh HD". Still can't restore an image to the "Macintosh HD" volume.

  • BSI Tax Factory Upgrade 8.0 to 9.0

    Hi BSI,
    We are upgrading our BSI tax Factory from 8.0 to 9.0. We are running:
    Windows 2008 R2
    SQL Server version 10.50.1777
    I'm able to connect to the database using login TF90 through SQL Server Management Studio, the ODBC Data Source Administrator and the TaxFactory Client is connecting fine too.
    But when running report RPUBTCU0 from the SAP system , its caught under ABAP dump-> SYSTEM FAILURE.
    Looking at the error.txt.
    =Running connect_db_taxfactory
    BSI dataset                  -> 101
    ConnectToDataSource... Starting 
    ConnectToDataSource...Succeeded 
    Connect to Dataset Error string =  101
    ConnectToDataSet... Starting 
    ConnectToDataSet...failed 
    Error String ->  4020 - THERE IS NO VALID LICENSE INSTALLED FOR HOST HCA-MSAP68:UNKNOWN.
    =RFC error
    operation/code connect_db_payroll_tax_calc_us
    key RFC_ERROR_SYSTEM_FAILURE
    status
    message See RFC trace file or SAP system log for more details
    internal status .
    The machine key is successfully installed.
    Please guide what we are missing here.
    Please contact me at +60123675076 (malaysia) at anytime.
    Thanks.
    Thava

    We managed to solve this by changing tf90server.bat file.
    from - I:
    CD I:\BSI\Server9.0
    tf90server.exe %*
    To - I:\BSI\Server9.0\tf90server.exe %*
    Now we could run report RPUBTCU0 without error.
    Thanks.
    Thava

  • Upgrade to ERp6 phase STARTSAP_NBAS error: DDIC login fails

    Hi
    During an upgrade from 4.7  to ERP6  I get the following error
    message in phase STARTSAP_NBAS:
    SYSTEM START failed, code -2
    -2: the test rfc did not work.
    Try to log on to the system with user DDIC
    When I try to log on to the system as user DDIC, I get the following
    error message:
    DB-Error -0
    SAP* can log in .The password I submit is correct. I have not changed this password at
    any time.
    Any ideas are most welcome

    Hi,
    DB-Error -0 indicate problem with kernel, try to upgrade kernel.
    check Note 760175 - 6.20: Logon not possible (after DB export or system copy)
    regards,
    kaushal

Maybe you are looking for