How to patch the sapjvm in either NW7.1 or NW7.3 in a dialog instance

Hi, all.
I only found the procedure to patch sapjvm 5.1 or 6.1 using JSPM. Actually SAP is saying only patching sapjvm with JSPM is supported. However, we all know that jspm cannot be started on a dialog instance. So how do you patch it on a dialog instance? I have spent the last 2 hours searching on the SDN and service marketplace and come up empty.
Note that you cannot manually copy the jvm directory either because the sapcpe will somehow pick up the executable in the older version and copy it into /usr/sap/SID/DXX/exe. Again, SAP manages to change something simple into 10 times more complicated and it is totally pointless.
Thanks,
Jonathan.

Did you manage to get this working?
If yes ... what did you do?
I am having the same problem implementing commons-logging with log4j

Similar Messages

  • How to patch the CRS SR from Build_109 to Build_210/ Build_443?

    I have CRS version 7.0.1_build_109, i'm trying to patch the version to upgrade it to version 7.0.1_build_210 or build_443, but while i'm trying to install the SR it's saying it's need minimum build_168 to upgrade, but how can i update build_109 to build_168? is there any related SR missing? i can't find the patch at CCO. Any help?

    Unfotunately " printenv | grep 18 " where the 18 is the build number does not return anything.
    I did some more research in the logs and it looks like XCSBuildService receive a message with the integration number as params
    [XCSBuildService.m:388 7194b310 +0ms] Got BotRun entity from collabd with GUID
    guid = "4b455e14-b6e4-4c89-b20d-8b34047c5b48";
    xcsbuildd.log:         integration = 18;
    xcsbuildd.log-         isBlogEnabled = 0;
    than it creates a botRunInfoPlist but unfortunately the integration number is not there any more :-(
    I'll create a bug report
    Thanks
    mrwanny

  • [SOLVED]How to patch the kernel? And other questions

    Like the same user who started this thread I'm suffering from hibernation resuming troubles using kernel 2.6.38. In that thread was posted a soluttion that involves patching the kernel.
    The patch to apply is this:
    http://git.kernel.org/?p=linux/kernel/g … e3e9fc8684
    Waiting for the bug to be corrected and a new version supplied is not an option, because this laptop is my main computer and I heavly rely on hibernation.
    Here's my trouble now. I don't know if it is possible to patch without recompiling the whole kernel, or it has to be compiled with that patch applied. I have seen the archlinux's wiki guide about compiling the kernel, but found nothing about applying patches (maybe I didn't searched with enought depth).
    In case there is needed a full compilation, should I use the vanilla kernel, the Arch Linux one or any of the AUR ones (I said AUR because they're the first that came to my mind)? Should i expect a performance gain with this (apart from fixing the hibernation bug)?
    Maybe i'm just doing a bunch of dumb questions, and the only thing I need is to search deeply on the wiki. In that case, please tell me. If not, I rather get some answers around kernel patching and / or compiling questions.
    Edit: In addittion, it is possible that all this questions are just newbie ones, I don't know, but as I am willing to learn from this I will appreciate any info or documentation about it.
    Thank you.
    Last edited by ethail (2011-04-12 06:30:48)

    From the source tree (/usr/src/linux-whatever) execute
    patch -p1 < /path/to/fix.patch
    then recompile kernel from the source tree.
    Basically that consists of executing the following commands from the source tree:
    make menuconfig
    make
    make modules_install
    cp -v System.map /boot/System.map-CUSTOM
    cp -v arch/x86/boot/bzImage /boot/vmlinuz-CUSTOM
    mkinitcpio -k 2.6.38-CUSTOM -g /boot/kernel-CUSTOM.img
    and you need to add menu entry in /boot/grub/menu.lst
    -k 2.6.38-CUSTOM should corespond to /lib/modules/2.6.38-CUSTOM (replace 2.6.38-CUSTOM with the name of your module directory, name depends on the kernel version and suffix that you gave in menuconfig). Regarding kernel configuration in menuconfig - I can't help you, you could use arch stock kernel config (zcat /proc/config.gz > /usr/src/linux-whatever/.config)
    I do these kind of things this way - maybe someone else have a more elegant solution.

  • How to Patch the new release PSU 11.2.0.3.1

    Dear Expert,
    This is my first time patch the Oracle RAC on two node cluster SUN SPAR 64 bit. Please someone can provide full proper step for patching the PSU 11.2.0.3.1 . Current RAC database version 11.2.0.3. My grid home and database home is not shared. I prefer using rolling patching . Evernthough i read the document, i still have some doubt of it.
    Regard
    liang

    This is my first time patch the Oracle RAC on two node cluster SUN SPAR 64 bit. Please someone can provide full proper step for patching the PSU 11.2.0.3.1 . Current RAC database version 11.2.0.3. My grid home and database home is not shared. I prefer using rolling patching . Evernthough i read the document, i still have some doubt of it. Please follow MOS document & Read me file for detailed steps.
    Oracle Database Patch Set Update 11.2.0.3.1 Known Issues [ID 1374706.1]
    Read me --> https://updates.oracle.com/Orion/Services/download?type=readme&aru=14273862

  • How to get the original query string in an event receiver when dialogs are enabled

    I have scenario where I am adding a document to a document library which has an external data column on it. My goal for this column is to have it automatically populated with an appropriate value based on original query string to the page. The general
    idea is that I am on a custom page that has various webparts on it including a view of my document library that is context sensative based on the query string, and I want to use that context sensitivity not just to filter the list but also when adding documents.
    I have been searching around for solutions to this problem all day and have gotten this far:
    I have an event receiver attached to my document library that handles the ItemAdded event syncronously (as such I have the new list item available to me). In that event receiver I am able to set the column values as required. Where I am stuck is on getting
    the value from the query string that I need to actually set as the column value.
    Based on:
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/thread/8cfcb299-9a55-4139-86ec-0b53b2922a54 and several similar articles/posts I have been able to get the original source Url with the query string I want via the following
    code in my event receiver:
    private HttpContext context;
    public EventReceiver1()
    context = HttpContext.Current;
    public override void ItemAdded(SPItemEventProperties properties)
    var originalQueryString = context.Request.QueryString["Source"];
    // Parse the query string and use the value ...
    The problem is that this solution breaks down if the dialogs are turned on under the advanced settings for the list. The reason the solution fails is because the "Source" query string parameter goes away and is replaced by "IsDlg" set to a value of "1".
    Does anyone know how to get past this hurdle? Any help would be greatly appreciated.

    Hi Stuart,
    The reason I'm looking for "Source" in the query string is because that is something I found to be reliable when the Dialogs are turned off. I've dug around pretty deep in the Request object to see if anything had the data I was looking for and unfortunately
    it doesn't appear to be there. The
    context.Request.QUeryString.ToString()
    returns a rather simple one of:
    List=%7b43ECDCB0-8440-4652-B067-AA20481779D7%7d&RootFolder=&IsDlg=1
    and the
    context.Request.UrlReferrer.Query.ToString()
    has the same value.
    I suspect this is due to the dual step process that takes place in adding an item to a document library where the first modal popup (which I suspect likely has the information I need) gives you the opportunity to browse to your file and then the second
    dialog (maybe this is getting brought up as a result of another request which is now referring back to the original request that brought up the first dialog?) where you edit your properties.
    Thanks for the try though, if you've got anything else I'd love to hear it.

  • SPLIT the cell in either template or table horizontally

    Hi ,
               Hope you all doing well,
               Can any  body let me know how to split the cell in eithe template or table horizontally,
    what i mean to say in detail is that i have created three cells using two lines  types, which it gave be 3 boxes , now i want to split only third box alone in to two parts with an horizantal line not by vertical line.
    *Please note note , i dont want to split the cell vertically , i want to split it to horizontally.*
    can any body help .
    Thanks and regards,
    SADIQ ALI SHAIK,
    9966408168

    Hi,
    Better to use 2 Templates.
    Eg :
    Total Width -
    120 MM.
    Then Create first template with following measurements.
    Width                         80      CM
    Horizontal Alignment   left   0.50   MM
    Vertical Alignment
    Here u can mention Height width of the cells
    Next create another template.
    Width                         40      CM
    Horizontal Alignment   left  85   MM
    Vertical Alignment
    here also u can mention the height and width for two line types.(this for split the box horizontally)

  • Install additional "dialog" instance on another drive on the server

    We are running NW2004S (SR2) with BW on SQL 2000, Windows 2003 on a two-node cluster. We have an existing ABAP/Java instance installed on
    the "C" drive (#11) on one of the servers. I would like to install
    another dialog instance on the same server as instance "01" on the "D"
    drive, but when I run the install (sapinst) and select "custom", the
    installation recognizes the existing instance on "C" and doesn't give
    me the ability to install the new instance on "D" (just "C"). How can
    I install this instance on the "D" drive ? Do I need to uninstall the
    existing "11" instance on "C". Also, on this server there are two "enq"
    server processes installed (ABAP #30, and Java #35) on the "C" drive -
    what happens with them ?

    Hi Ruchit,
    I did specify the CI node when referencing the SAP profiles in the cluster and they are all recognized.  My problem is that the installation only gives me the ability to install on the "C" drive.  As a follow-up, SAP stated that since this is an additional dialog instance install, sapinst will perform the installation wherever the "saploc" shared says (in my case "C" - /usr/sap).  It appears that if I want to basically move my existing dialog instance (11) from the "C" drive to the "D" drive, I need to uninstall the instance, along with the "enq" instances, then re-install the instance on the "D" drive.

  • HT201272 How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The album shows as purchased on the iTunes store, but not available to download to my authorized devi

    How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The albums show as purchased on the iTunes store, but not available to download to my authorized device.  I also have albums that appear in my library, but are not able to be added to my iPod from my computer

    When you download something from the iCloud, it is a brand new licensed copy. Your iCloud account just contains a notation that you have this app. It isn't storing an actual copy of the app from your Mac.

  • Every time I fire up my iMac a window pops up saying "Mount notification quit unexpectedly" and it gives me the option to either "Reopen" it or click OK, which gets rid of it. What is this please and how can i stop it?

    Every time I fire up my iMac a window pops up saying "Mount notification quit unexpectedly" and it gives me the option to either "Reopen" it or click OK, which gets rid of it. What is this please and how can i stop it?

    Hopefully this will help you.  Try placing your iPad in recovery mode again.  You may have to try this a few times.
    iOS: Unable to update or restore

  • I just rebuilt my mail inbox, 1 iCloud account and 2 other imap accounts, and everything is gone. Nothing on the remote servers either and on all my iCloud sync mobiles. How can i recover all my emails? Thanks

    I just rebuilt my mail inbox, 1 iCloud account and 2 other imap accounts, and everything is gone. Nothing on the remote servers either and on all my iCloud sync mobiles. How can i recover all my emails? Thanks it's all my work!!!!!!!

    we do what your doing... we use the same ID for "Icloud".
    We do NOT use the same ID for:  Face time and Imessage

  • When I try to buy something, I get an Apple-ID which is not the one I want to use, and I don't know how to get rid of it either, so that I can use my ID, which is in Mail, Contacts etc. The ID I get, I can't find, so that I can delete it. What to do?

    When I try to buy something, I get an Apple-ID which is not the one I want to use, and I don't know how to get rid of it either, so that I can replace it with my ID in Mail, contacts etc. The ID I get without wanting it, I can't find anywhere. I have to delete it. How do I solve this problem, anyone?

    My content was obtained through another ID, which popped up earlier. Now this one doesn't pop up, and my current ID doesn't pop up either, but another one. How do you find an ID which is not in the store, and not in Mail, contacts etc. either?
    Or is it possible to write the ID yourself when you want to buy something, not only to have it popped up being unable to be changed?

  • I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    You can uncheck multiple songs by selecting all the songs you want to uncheck, then right-click and choose "uncheck selection".  Also, make sure that you have checked "Sync only checked songs and videos" on the Summary tab of your iTunes sync settings or the sync process will ignore your selections.
    You can remove all the photos from your camera roll using Preview on your Mac.  Connect your phone to your Mac, open Preview, go to File>Import from iPhone.  When your photos appear in Preview, select the photos you want to delete, then click on the icon at the bottom showing the red circle with the diagonal line through it (see image below), then click Delete.
    To remove photos from the Photo Stream album on your phone you'll have to either reset Photo Stream (deleting all the photos from iCloud) or turn off Photo Stream on your phone.

  • How do I resolve this problem: This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required

    When attempting to log in to the web site the following message is received. This web site works
    on other systems using Firefox.
    This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.
    Additionally, a 401 Authorization Required error was encountered while trying to use an ErrorDocument to handle the request.
    == URL of affected sites ==
    http://www.mdyc.org/members_only

    You may have saved a bad password so Firefox is entering that rather than giving you the option to try again. Go to Tools > Options > Security > Saved Passwords and delete the saved passwords for that site and then try logging in again.

  • How to know the list of patches applied to iAS Oracle home and 8.0.6 Home

    Hi,
    Please help me for the steps to know the list of patches applied to iAS Oracle home
    and 8.0.6 Home;
    as we can use ad_bugs, ad_applied_patches, OAM Applied Patches for Oracle Applications Patches list
    and we can use opatch lsinventory for Oracle Database patches applied list

    Thanks for sharing the answer. BTW, there are some exceptions like, determining Developer 6i patchset applied, and Oracle 9iAS version:
    How to find the developer version
    Re: how to find the developer version
    Note: 186981.1 - Oracle Application Server with Oracle E-Business Suite Release 11i FAQ
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=186981.1

  • Having a MBPr late 2013 and having a sound problem the sound does not come tom the headphones even its all the way up and when i remove the headphones it docent come out the internal speaker either ? any idea how i fix this?

    the sound do not come out the headphones sometimes altho its all the way up in the setting and when i remove the headphones the sound doesnt come from the internal speaker either and only a reboot fixes the problem and thats annoying! any idea how tto fix this?

    Hello. I've been able to play sound without problems through headphones or external speakers to date - the output always switched to these automatically until today. Now, sound output continues through internal speakers even if I plug in headphones or external speakers.
    - I tested the headphones and speakers on other devices: they work fine.
    - When I plug in headphones or speakers into the audio output port (I have verified that I'm not using the input jack) the devices are not detected and are not listed under the output tab in system preferences-sound.
    I concluded from this that I probably had a problem with the audio port, so to test that I tried the following. I plugged a powered multi-USB device with ports for microphone line-in and headphone line-out into the USB port and switched it on. I verified that it was working by plugging a USB stick into the multi-USB device - this was recognised successfully, so the device was clearly working. I then plugged in headphones and speakers into the audio line-out on the multi USB device - but still no sound came through them (and tey were not listed among output devices) and the Mac continued using internal speakers.
    What should I do? Does the latter test suggest that the problem does not lie with the audio port, or is my test not conclusive? What would you advise?
    Many thanks indeed!
    NG

Maybe you are looking for

  • Some photos don't open in edit

    Some of my photos won't open in edit. When I try to do this I get a grey screen with a question mark in the middle. Also, other photos will open but they are not enlarged in the edit window. Still others work in edit fine. There is no rhyme or reason

  • Command in php / mysql

    Hello, I used to program a lot in ASP, and loved the command function. However, now that I'm programming in PHP I do not have this at my disposal unfortunately. How does everyone perform certain actions on forms right now?, for example I'm performing

  • Disney App

    Brand new 5510 printer. All apps work except Disney. Tried several times. Able to chose picture, preview and pick # copies, but after hitting OK receive error message: "Server Connection Error:-95. There was a problem connecting to the server. Touch

  • Hub 2.0 to Windows 7 PC via Powerline Help Needed

    I have my PC in a small home study and after some problems with the extension socket that my Hub 2.0A was connected to , BT recommended that I move my hub to my master socket in another room. This has improved my BB speeds but I have to connect via w

  • Inter-company sales credit note cost

    Dear SD Consultants, I have scenario of Cross Company sales, in itner-company invoice we have different pricing procedure in which we charge 2nd company with VPRS cost, now there is one doc. for return sales we have to give credit note for this retur