Support patches for SOLMAN 7.0

Hi experts,
We are running on lower patch level for our Solution Manager, now we want to upgrade the same till latest available.
now the problem is when i am loading all the patches into queue, it is not getting imported fully which is not giving comfirm queue option after installation.
Its getting imported with returncode4.......
When i am looking in to aborted patchlist, these all patches are showing in stop status.
And one more concern is we are running on PI_BASIS_2005_1_700
And one of the patch is asking to upgrade the same with PI_BASIS_2006_1_700, but i am unable to upgrade the same with saint as its not getting upload from saint.
Please suggest
Thanks & Regards
Nick Loy

whats your base release and OS/DB combination?
You have to check #1276022
Nesimi

Similar Messages

  • Need to upgrade Java Kernal patch and support patch for Solman server 7.0

    Dear all ,
    Tech details  , Win32 bit and Oracle .
    I want to upgrade latest java  kernal patch for Solma 7.0 .
    I have checked the Service.sap.com (https://websmp105.sap-ag.de/support/downloads/Support Packages and patches - Entry by Application Group/Solution manager JAVA Stack)
    Solution Manager JAVA Stack :
    ADOBE DOCUMENT SERVICES 7.00
    BI UDI 7.00
    J2EE ENGINE BASE TABLES 7.00
    JAVA LOG VIEWER 7.00
    JAVA SP MANAGER 7.00
    LIFECYCLE MGMT TOOLS 7.00
    SAP CAF 7.00
    SAP CAF-UM 7.00
    SAP IGS 7.00
    SAP J2EE ENGINE 7.00
    SAP J2EE ENGINE CORE 7.00
    SAP JAVA TECH SERVICES 7.00
    SAP KERNEL 7.00 32-BIT UNICODE
    SAP VIRUS SCAN INTERFACE 7.11
    SAP VIRUS SCAN INTERFACE 7.20 .. ete ...
    what are patches required to Upgarde java  patch and let me know the procedure also . it will be helpful for me .
    Regards
    Kindly suggest

    Dear all ,
    I have checked help.sap.com , its mentioned in Software delivery Unit .
    1,software component archive (SCA),
    2,Java archive (JAR) or SAP archive (SAR).
    Support package stacks:
    A set of different SCAs
    ○     A set of different SCAs that are modified using the NWDI
    ○     The SDM JAR u2013 SDMkit.jar
    ○     The kernel SARs:
    ■      Database Independent: SAPEXE.SAR and other operating system dependent SARs
    ■      Database Dependent: SAPEXEDB.SAR and other database dependent SARs
    ■      The SAP archiving tool u2013 SAPCAR
    ○     The IGS SAR u2013 IGSEXE.SAR
    ○     A configuration XML file, which includes a description of the components that are part of the stack and their respective support package and patch levels.
    I understand the Kernal SARs and I have downlaoed SAPEXE.SAR ,SAPEXEDB.SAR ,IGSEXE.SAR .
    let me know the list of SCA files  , i have to download from service.sap.com . (set of different SCAs that are modified using the NWDI and  The SDM JAR u2013 SDMkit.jar)
    Kindly advise .
    Regards

  • AAC/MPEG-4 support patch for abcde

    I got bored to day and made up this patch for abcde that adds support for AAC using the M4A extension.
    It uses FAAC as the encoder and also patches abcde to version 2.2.3
    I have not tested it yet so bear with me...i'll post my test results later.
    You'll have to manually add the "M4AENCOPTS=" variable to the config
    usage is: abcde -o m4a
    UPDATED: fixed a plethora of typos
    another side note is the fact FAAC must be compiled with mpeg-4 support, the Archlinux package for FAAC isn't, so therefore this could be a problem unless you compile FAAC yourself. I submitted a feature request to get mp4 support added.
    the following is the 2.2.0 to 2.2.3 update+AAC patch. I will submit a AAC patch for the newest release to the developers of abcde later on.
    --- abcde-old-2.2.0 2005-03-08 12:42:14.000000000 -0500
    +++ abcde2 2005-03-08 12:11:07.000000000 -0500
    @@ -11,7 +11,7 @@
    # Copyright for this work is to expire January 1, 2010, after which it
    # shall be public domain.
    -VERSION="2.2.0"
    +VERSION="2.2.3"
    usage ()
    @@ -21,7 +21,7 @@
    echo "-1 Encode the whole CD in a single file"
    echo "-a <action1[,action2]...>"
    echo " Actions to perform (cddb,read,normalize,encode,tag,move,playlist,clean)"
    -echo "-A Experimental actions (retag, transcode)"
    +#echo "-A Experimental actions (retag, transcode)"
    echo "-b Batch mode: enable album normalization and nogap encoding"
    echo "-c <file>"
    echo " Specify a configuration file (overrides system and user config files)"
    @@ -366,6 +366,9 @@
    mpc)
    run_command tagtrack-$1 true
    + m4a)
    + run_command tagtrack-$1 true
    + ;;
    esac
    done
    @@ -489,6 +492,10 @@
    ## FIXME ## to the encoder ends up empty.
    run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
    + m4a)
    + # AAC/MPEG-4 format (.m4a) is done locally, with inline tagging.
    + run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $M4AENCODER $M4AENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -w "$IN" -o "$OUT"
    + ;;
    esac
    done
    # Only remove .wav if the encoding succeeded
    @@ -737,6 +744,9 @@
    if [ "$INTERACTIVE" = "y" ]; then
    while [ "$DONE" != "y" ]; do
    read ERASEPLAYLIST
    + if [ "$ERASEPLAYLIST" = "" ]; then
    + ERASEPLAYLIST=e
    + fi
    case $ERASEPLAYLIST in
    e|E|a|A|k|K) DONE=y ;;
    @@ -764,7 +774,7 @@
    ARTISTFILE=$(mungefilename "$TRACKARTIST")
    # If we want to start the tracks with a given number, we need to modify the
    # TRACKNUM value before evaluation
    - if [ -n $STARTTRACKNUMBER ] ; then
    + if [ -n "$STARTTRACKNUMBER" ] ; then
    # Get the trackpadding from the current track
    CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
    TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - 1 ))
    @@ -843,7 +853,7 @@
    cdparanoia|debug)
    if [ "$WEHAVEACD" = "y" ]; then
    vecho "Querying the CD for audio tracks..."
    - TRACKS=$( $CDROMREADER -Q 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    + TRACKS=$( $CDROMREADER -d $CDROM -Q --verbose 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    CDPARANOIAAUDIOTRACKS="$TRACKS"
    else
    if [ -f "$ABCDETEMPDIR/status" ] && checkstatus cdparanoia-audio-tracks ; then
    @@ -1354,7 +1364,7 @@
    EDITCDDB=n
    fi
    if [ "$EDITCDDB" = "y" ]; then
    - CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
    + CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d" " -f1);
    # Use the debian sensible-editor wrapper to pick the editor that the
    # user has requested via their $EDITOR environment variable
    @@ -1387,7 +1397,7 @@
    # Some heuristics first. Look at Disc Title, and if it starts with
    # "Various", then we'll assume Various Artists
    - if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2 -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    + if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    echo "Looks like a Multi-Artist CD" >&2
    VARIOUSARTISTS=y
    else
    @@ -1470,7 +1480,7 @@
    echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
    if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
    - if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d " " -f 1) ]; then
    + if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d" " -f1) ]; then
    # This works but does not have the necessary error checking
    # yet. If you are familiar with the CDDB spec
    # (see http://www.freedb.org/src/latest/DBFORMAT)
    @@ -1577,7 +1587,7 @@
    WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
    OUTDATA="$ABCDETEMPDIR/track$UTRACKNUM.$OUTPUTTYPE"
    if [ -r "$CDDBDATA" ]; then
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2 -d= | tr -d [:cntrl:])
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d [:cntrl:])
    echo "Grabbing track $UTRACKNUM: $TRACKNAME..." >&2
    else
    echo "Grabbing track $UTRACKNUM..." >&2
    @@ -1692,6 +1702,7 @@
    SPEEXENCODERSYNTAX=default
    MPPENCODERSYNTAX=default
    NORMALIZERSYNTAX=default
    +M4AENCODERSYNTAX=default
    OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
    # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
    @@ -1738,6 +1749,7 @@
    SPEEXENC=speexenc
    # mpp (Musepack)
    MPPENC=mppenc
    +M4AENC=faac
    ID3=id3
    ID3V2=id3v2
    @@ -1773,6 +1785,7 @@
    SPEEXENCOPTS=
    # mpc
    MPPENCOPTS=
    +M4AENCOPTS=
    ID3OPTS=
    ID3V2OPTS=
    @@ -2039,6 +2052,7 @@
    spx) [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc ;;
    mpc) [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc ;;
    + m4a) [ "$M4AENCODERSYNTAX" = "default" ] && M4AENCODERSYNTAX=faac ;;
    *) echo "abcde error: Invalid OUTPUTTYPE defined" >&2
    exit 1
    @@ -2100,6 +2114,12 @@
    MPPENCODER="$MPPENC"
    esac
    +case "$M4AENCODERSYNTAX" in
    + faac)
    + M4AENCODEROPTS="$M4AENCOPTS"
    + M4AENCODER="$M4AENC"
    + ;;
    +esac
    # and which tagger
    @@ -2144,7 +2164,7 @@
    ${NEEDCOMMENTER+$VORBISCOMMENT} ${NEEDMETAFLAC+$METAFLAC}
    ${NEEDNORMALIZER+$NORMALIZER} ${NEEDEJECT+$EJECT}
    ${NEEDDISKTOOL+disktool} ${NEEDCDSPEED+$CDSPEED}
    - ${NEEDVORBISGAIN+$VORBISGAIN}
    + ${NEEDVORBISGAIN+$VORBISGAIN} $M4AENCODER
    do
    # Cut off the command-line options we just added in
    X=$(echo $X | cut -d' ' -f2)
    @@ -2207,37 +2227,6 @@
    esac
    fi
    -if [ "$STRIPDATATRACKS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
    - case "$CDROMREADERSYNTAX" in
    - cdparanoia|debug)
    - # cdparanoia can query the CD, so let's process the TRACKQUEUE list with the results.
    - if checkstatus cdparanoia-audio-tracks; then
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-audio-tracks )
    - else
    - ## FIXME ##
    - vecho "Querying the CD to obtain a list of valid audio tracks..."
    - $CDROMREADER -Q > $ABCDETEMPDIR/cdparanoia-query 2>&1
    - # Obtain a list of valid audio tracks from the results of the query
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-query | egrep '^[[:space:]]+[[:digit:]]' | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    - fi
    - # Obtain the track padding value from the before-processing list and pad the CD list
    - TRACKNUMPADDING=$( echo $TRACKQUEUE | awk '{print $1}' | tr -d " n" | wc -c )
    - for TRACK in $CDTRACKQUEUE ; do
    - TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
    - PADNEWTRACKQUEUE=$(echo $PADNEWTRACKQUEUE $TRACKNUM)
    - done
    - CDTRACKQUEUE=$PADNEWTRACKQUEUE
    - # Now, compare if the values in the list are valid tracks in the CD
    - for TRACK in $TRACKQUEUE; do
    - if echo $CDTRACKQUEUE | grep $TRACK >/dev/null ; then
    - NEWTRACKQUEUE="$NEWTRACKQUEUE $TRACK"
    - fi
    - done
    - TRACKQUEUE="$NEWTRACKQUEUE"
    - esac
    -fi
    # Create playlist if needed (backgroundable) and start reading in tracks
    @@ -2446,7 +2435,7 @@
    # TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${UTRACKNUM} + 0))
    TRACKNUM=$UTRACKNUM
    CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2 -d= | tr -d [:cntrl:] | sed 's/ +$//')
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d [:cntrl:] | sed 's/ +$//')
    splitvarious
    fi
    fi
    the patches can also be found here http://www2.rudefyet.com:8080/patch
    please post any other issues you have

    not yet, i'm going to work all the kinks out before i submit it
    as of right now I noticed some major typos, on my part, that cause it to fail...i'm working on that right now

  • Support patches upload

    Dear Expert
    I have fresh installation SAP Netweaver as component SAP Netweaver 2004s and OS is windows 2k3 32bit
    when I download the support patch for market place there is show in Windows Server on IA32 32bit but my system is not itanium this plane server
    Please help me how to download suitable patches for us.
    Regards
    Sanjay C.

    Hi Sanjay,
    what kind of patches you want to install? Is your system single (JAVA or ABAP) or dual stack (JAVA&ABAP)?
    Good to know, that the supported platform for NW7.1 is only IA64 or x86_64.
    Cheers,
    Jiri

  • Reduce downtime required for support patch application

    Dear Experts,
    I would like to know if there are any tips / notes we need to follow during application of
    support patches to reduce the downtime window ( as during patch application , system is not
    usable for normal users ) , any temparary parameter changes to Oracle RDBMS which we can
    activate before appication of support patch and then revert the same once Patches are loaded
    for normal Day operations.
    Is there any note which talks specific settings which could enhance the performance
    of support patch application process on Oracle RDBMS.
    Regards,
    RR

    To my understanding if i select Downtime minimized some phases of Patch application could
    be carried out when users are online and for others would get notified in SPAM for downtime
    , so we just need to lock users and perform start for those rest of Import phases.
    Yes this is correct, theoretically you can apply single patches with downtime minimized one after another. But this does not make a lot of sense obviously, because you will have several distinct downtimes then. So to apply one queue containing all packages is the way to go.
    Regarding your questions on the benefits, i am afraid the answer here is: it depends, as for most performance tuning options you will have to test carefully if the are working.
    For the db_cache_size consider:
    - is my db_cache_size smaller than 1000M?
    - do i have enough free memory on my server?
    - am i seeing low buffer hit ratio while applying support packages?
    If all questions are a yes, then i recommend you increase it to 2000M, it is easy to do. But if you don't have free memory on the server, then you will severly hurt performance by causing paging. If you don't have low buffer hit ratio (or you have lightspeed disks , then the tuning will not speed up anything.
    As you see, you have options, but there isn't a single speed button that solves your problem.
    Regards, Michael

  • Patching for extended support baseline

    Hello Gurus.
    I am patching for minimum baseline extended support 11.5.10
    Patch Wizard recommended around 20 patches for us to apply.
    Now, some of the pre-reqs for some of these patches are for products we dont even have installed.
    If I ignore these, will the patches that list them as pre-reqs fail? Or can I safely ignore them?
    A specific example, would be this:
    Patch 7651923: 11.5.10: BUG FIXES FOR CS: JAN 09 PATCH
    is something Patch Wizard found for a missing patch for Extended Support.
    This is superseded by
    12772485: 11.5.10:BUG FIXES FOR CS: AUGUST' 11 PATCH
    12772485 has a number or pre-reqs, some of which for products that we dont have installed.
    Example: Field Service(CSF) Patch - 5758991
    So, I am in the situation of having to apply patches to products we dont have installed. Is this possible? It makes no sense.
    My feeling is that I can ignore this Field Service patch, but I am not 100% sure, hence my making an appearance here.
    Any ideas out there?
    thanks.
    11.5.10.2
    11.2.0.03
    RHEL 5

    Yes, it is common sense to think adpatch would skip it. But as that note says:
    Note:  A job should never be skipped during a patch application, regardless of the product's installation status, unless the product specific development team that supports confirms that it is harmless to skip the job.
    So before applying these, I am waiting for the team from CS (Service product) that this patch - 12772485 - to confirm if I can skip it in applying the patch.
    I will update this when the time comes.
    Thanks,
    DA.

  • Transport Directory / Directory for support patches not found

    I found that on our QAS & PROD system the profile param DIR_TRANS are exactly the same.
    I can transport to both systems.
    The problem I have is to upload Support Patches from the server.
    In other systems I have uploaded them assuming that sapmnt\EPS\in existed in PRODN, but I cannot find the directory usr\sap\trans\EPS\in on the PRODN system
    Would it be safe to add the profile DIR_EPS_ROOT in PRODN so that I can direct the SPAM trxn to pick up the unpacked support patches from the server to a specific directory?  This would be a standard change the the profile and restarting SAP correct?
    Please advise and Thank YOu
    Maria

    no longer required

  • Schedules for Support Patches and Canadian HCM

    We have recently upgraded to ECC 6.0 , 64bit Unicode SQL Server 2005.
    Next project underway is to migrate Peoplesoft into SAP (HCM).
    My question to all Canadians out there is what strategy is anyone using in order to ensure that ALL HCM (Payroll) Patches are applied according to Tax Requirements etc..
    Also , we are just now patching to most recent and whatever is available on the SAP Marketplace, but I know that SAP is posting the next set of patches June 9. 
    Any advise would greatly be appreciated
    Maria

    Hello,
    I agree with Eric that your HR people should be asking for these, they're quite different than the other patches and it shouldn't be your responsibility.
    They definitely should be doing the legal change patches for compliance with Revenue Canada, which come out twice a year (mid-year and year-end) in a draft and then a final transport. If you use the draft transport to get a jump on testing be prepared to apply lots of notes as they refine it for the final transport.
    If you haven't heard from your HR people by June 1st or December 1st you might want to give them a gentle reminder.
    Regards,
    Michael

  • Not able to find out the OCT 2012 CPU patch for 11.2.0.3

    Hi
    I am trying to download the OCT 2012 CPU patch for the 11.2.0.3 to install on Linux x86-64 which is having OS of RHEL 5.7. I am able to get the OCT 2012 PSU patch which include the CPU patch too.
    Database 11.2.0.3.4 PSU Patch 14275605, or
    GI 11.2.0.3.4 PSU Patch 14275572, or
    But I just require only the CPU patch. Can anyone provide me the patch number or some link where I can download the Oracle CPU patch OCT 2012

    The given link take to the window where CPU patch for all the quarter available.
    The Critical Patch Updates released to date are listed in the following table.
    Critical Patch Update Latest Version/Date
    Critical Patch Update - October 2012 Rev 1, 16 October 2012
    Critical Patch Update - July 2012 Rev 1, 17 July 2012
    Critical Patch Update - April 2012 Rev 2, 19 July 2012
    If I click on Critical Patch Update - October 2012 its takes to the window for selectin the database version (11.2.0.3). From there it goes to the Patch Set Update and Critical Patch Update October 2012 Availability Document [ID 1477727.1] which I had already checked.
    There for the database products it shows the below option.
    Table 9 Patch Availability for Oracle Database 11.2.0.3
    +*<moderator edit - deleted MOS Doc content - pl do NOT post such content - it is a violation of your Support agreement>*+
    It doesnt have the sepreate CPU patch. The below CPU patch is for the OC4J. I had a check.
    Thanks
    SHIYAS M

  • Patch for modbin6-1.00.38.exe is out.. "2MBIOS.BIN can't open!" Solved.

    Hi mates,
    ive decide to make a patch for modbin6 1.00.38 to improve stability and minise risk of modding the BIOS. for users which is reading this post if never heard about MODBIN better avoid reading below. its nice program for basic BIOS mod, simple to use, but very danger in the same time couse mess with BIOS and inproperty using may couse disaster. im not gona advert or to invite persons to use it. just wana make this program to be used normally to bring stability and minise risk of making corrupted BIOSes.. for persons which is already using it and have experience with him or with person Enthu which is wana try it and they dont worry if mobo may caouse for trash. there is 2 reasons to making this patch.
       1. couse sometimes im using it there is features on it wchich gives basic stuffs, unlocking hidden features locked by manifacturer(sometimes really usefull especially for DIMM Vcore..). so there is a nasty bug on it which gona explain later. most of persons who is using MODBIN know about it. so that patch will spend me alot of time and minimise risk of mistake during avoiding bug couse operation need several procedure and automatised will risk free and much fastern.
       2. to bring ability for most stable operations to persons which is already using it when need.
    but lets talk about the patch. everyone know that nasty issue with MODBIN(made it by Borg N1,part from his collection). bug is program wont safe BIOS file  and quiting with Abnormal program termination.... gives this one message: !!!File
    2MBIOS.BIN can't open!Thanks for using ModBin6 1.00.38  how nice ...
    here is Borg N1 advices:
    Quote from: Borg Number One on 16-July-05, 05:24:51
    Hi.
    It is a kind of sad fact that many users just know how to use the mouse and keyboard. 
    Well, you have to configure your config.sys (Win9x/ME) or config.nt to run MODBIN6
    (e.g. MODBIN6 2.01.01 (06/25))
    in Windows prompt/console without problems.
    The " FILES " & " BUFFERS " values are the important values.
    http://www.xtremesystems.org/forums/showthread.php?t=45538
    http://www.xtremesystems.org/forums/showthread.php?t=63210&highlight=config.nt
    +++ BNOBTC & BNOBLG +++
    http://bnobtc.pix-art.com
    Borg advices is good but unfortuanly doesnt fix that bug... seems author dont have much idea why this is happend...error is constant ... Pure DOS also can't help... i wana add few more tips to the Borg's ones to improve stability when using  modbin, after that will talking about patch.
    TIP: navigate to this folder and open config.nt file:  %SystemRoot%\system32\config.nt
    at the end of file add this ones:
    dos=high, umb
    device=%SystemRoot%\system32\himem.sys /CPUCLOCK:ON /HMAMIN=64
    FILES=40
    BUFFERS=40
    STACKS=9,256            -----> Preserving 039A-045Eh   3,152   Sys  039Ah Stacks, 0552h DOSX
    Also MODBIN doesnt work well with long filenames.... etc "document and settings\my profile\desktp\modblabla" if not gona work property and there is a big chance of failure will load but after saving will have problems to update BIOS "core"(original.tmp) so always use 8.3 syntax standart .... best way from root directory make subdir whcih name to no NOT exceed 8 symbols... etc C:\123,C:\MYFLASH,C:\ROFL
    without TIPs it is really big gamble with BIOS....
    Aslo that will prevent Stack Overflow error when BIOS is loading....
    NOTE: To activate changes just quit from any DOS interpretators like(4nt,command.com,cmd and so on). and re-run it. Reboot OS is not requred.
    here how to do:
    Also when executing MODBIN put below executable file this ones without quotes "loadfix forcedos modbin6-1.00.38.exe"
    and ofcourse nasty error is waiting us... "2MBIOS.BIN can't open!Thanks for using ModBin6 1.00.38"
    Patch which iv maked gona RIP this error forever.
    Download: modbin6_1.00.38
    Download: MODBINPATCH
    What patch need? and how to use it? I named patch "Dynamic Patch for modbin" Couse isnt make modification on MODBIN program but momory his parent process when is loaded into memory.
    tips suggested below is recommended but not nesecery for the patch.. patch need MODBIN and your BIOS file (modbin6-1.00.38.exe and mybios.bin) to be copied to systemroot drive(usually C) in folder MSI etc put modbin6-1.00.38.exe and mybios.bin(BIOS which you gona mod) to C:\MSI
    Patch make checking if folder doesnt match will not continue....
    How to use it..... Copy modbin6-1.00.38.exe and mybios.bin to C:\MSI, then from command prompt navigate to C:\MSI and execute "loadfix forcedos modbin6-1.00.38.exe" after that load your BIOS file... when loading is complete navigate to your patch folder and execute patchMSI.exe.... takes 10 seconds to complete after that make active "white" window and enter "Q" then hit ENTER key both windows will be closed, after that return to your modbin window, make what you gona make and save BIOS file like normal procedure... Method is founded and tested by me from years below never let me down(never brings corrupted BIOS), but just today ive made patch couse was too lazy... also Borg's MODBIN can work with most of all chipsets which is using AWARD Modular based... NOTE: K9 isnt tested. the most of here you can view how exacly to do it and differents with and without patch:
    here is one more think some time maybe usefull from me:D
    Here is 1st little short trick:(no analog anywhere, like patch only here can be found if accepted):
    How to reset BIOS if you have nothink? Examples if you are administrator/PC-support or any and must fix same PC but the BIOS has an password?! And you dont have permision to open Case to reset CMOS(couse PC has an sticker with Warantly (and removing that sticker couse lost pc warrantly) You need access to BIOS to re-check,configure somethink there but its password protected. anyway there could be many situation. what we need? nothink special just bootable DOS(or analog- PC-DOS or whatever,doesnt matter where will boot(cd,flash disk,hdd)), no extended commands.[io.sys(jo.sys),command.com] - files requred to boot Here we go:
    boot from desired device.when you see command prompt etc.: "A:\,C:\"
    We will write a program without any languich..directly in PC code..(without compilator), direct in machine code.
    write this:
    copy con ffs.com|ffs          *comment None
    176.230p144144230q195     *comment Hold "ALT" and write number
    ^Z                                  *comment "CTRL+Z" then hit "Enter"
    Explain:
    copy(internal command)
    con (command line switch)
    ^Z (CTRL+Z)
    NOTE: Numbers in second line must be written with holdon "ALT" key and specified numbers.(ASCI Code). Non numbers symbols is normal keyboard selection. on input display should look like:
    copy con ffs.com|ffs                   
    ░.цpРРцq├                                 
    ^Z                                           
    Program is 9 bytes long... (simple but high effective)
    Thats it.Reboot Computer... password is gone. CMOS is reseted to default values. Tested on Award 4.0,6.0, AMI BIOS. Break all..
    and finaly again:
    **To All readers of this thread: Please note that this thread is with regards to Self-Modding BIOS and are of NO Official Testings from MSI. MSI will not be responsible for ANY Damage caused from requesting these self modded BIOSes! Please mind that you'll ONLY request and flash AT YOUR OWN RISK!!!** also MODBIN Author(Borg N1) and me is dont are NOT  responsible for ANY Damage caused by MODBIN or Add On Patch. (i didnt think there is risk exit must must said that warning....couse playing with BIOS is always risky). Happy Tweaking. 

    Well, I was wondering if the system not allowing the tty to change ownership -- but root also has the problem.
    You might try checking which shell is set for your users in /etc/passwd, and then check that the shell really exists at the specified path, and that it is executable.  You might also check that the home directory for you users (also specified in /etc/passwd) is mounted and your user has the appropriate rights to that directory.
    Other than that, I am running out of altitude, airspeed and ideas all at the same time.  There was one thing in your trace I did not understand.  Why is your system looking to the floppy drive?  I wonder if that is contributing to the problem.

  • Error while updating SP's for Solman

    Hello ,
    I am updating the SP's for Solman. and I have come across these 3 errors, how do I resolve them
    1.Function RSDDTREX_INDEX_CHECK (RSDDTREX_CHECK     01) does not fit into the existing function group ((RSDDTREX     06))
    2.Table RSBGUI_R_TEST is not in nametab.
    3.     Phase ADDON_CONFLICTS_?: Explanation of Errors
         Conflicts were found between the Support Packages that you want to
         import and the Add-Ons installed in the system. To guarantee the
         consistency of your system, the import is interrupted until all Conflict
         Resolution Transports (CRTs) for the listed Support Packages are
         included in the queue.
         To include the CRTs in the queue, proceed as follows:
         #NAME?
         - Leave this screen by choosing 'Cancel' (F12).
         #NAME?
           Service Marketplace or request them from your Add-On supplier.
         #NAME?
         #NAME?
           the beginning.
         If the problem involves an SAP Add-On, see SAP Note 53902, which tells
         you which CRTs resolve the conflicts. Otherwise contact the supplier of
         your Add-On for details on how to proceed.
         The following contains a table of Support Packages for each Add-On for
         which conflicts were detected. The column 'Information on the Conflict
         Resolution' specifies how you can resolve a conflict. For more
         information, select the corresponding 'Information for the Conflict
         Resolution'.
         Note:
         You are importing the queue in the test scenario. As this scenario is
         only used for performing analyses, you can skip the errors and continue
         the import in the next phase.               
         In the standard scenario, however, note that the errors have to be               
         rectified before importing can be continued in the next phase.               
         Conflicts Between Add-On ST-SER 700_2006_1 and Support Packages               
         Component     Release     Support Package     Information onConflict Resolution
         ST     400     SAPKITL425     CRT: DUMMY
    Thanks Druva

    Hi there,
    Thank you cauz I did get some lead into the issue with your response.
    I missed on some ST's which did give me a CRT error and I downloaded them and the problem is fixed now.
    I have another question in my new post please have a look at it.
    I am closing this thread.
    Thank you
    Druva

  • Setting up Customised priorities in help- support message in solman

    Hi All,
    We have defined some customised priorities for our requirement.
    The Priorities are coming in crmd_order and in notif_create but these changes are not found in help->create msg.
    The SPRO activity: SAP Solution Manager Implementation Guide > SAP Solution Manager > Scenario-Specific Settings > Service Desk > Maintain Categories and Priorities > Maintain Priorities of Dates modified the priorities only in crmd_order transaction.
    I have searched in sdn also but could not get much information on it.
    The main problem is, in satellite system(ECC) they use help->create msg to create a support message. In which the customised prioties  are not coming.
    Request your guidance in this issue.
    Regards,
    Subhashini.

    Hi
    Goto DNO_CUST01 in solman
    now choose slf1 on the right side and then click priorities
    here add more prirorities for you
    But remember this will not enhance help -> create support message in solman or in satellite system
    If you want customize in satellite also then modify the standard by develpment 
    Hope it helps
    Regards
    Prakhar
    Edited by: Prakhar Saxena on Jul 13, 2009 3:17 PM

  • Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    hello,
    After installing the Adobe reader, I got the following error message:
    Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    For AA XI, you only need the 11.0.09 patch. Download from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows (Use "MAC" if a MAC is used).

  • I'm using my iPad with iOS v 6.1.3- is there a security patch for the SSL/TLS vulnerability for this, or do I have to go to 7.0.6?

    I'm using my iPad with iOS 6.1.3. Is there a security patch for this version, or do I have to update to iOS 7.0.6?

    There is an update for iOS 6... v6.1.6. But it is only available to iPhone 3GS and iPod touch 4th gen users. http://support.apple.com/kb/HT6146?viewlocale=en_US&locale=en_US
    For iPad, the highest supported os for iOS 6 is v6.1.3. If you want to get the security patch, you'll have to go to iOS 7.0.6.
    Hope this answers your question.
    ~Joe

  • Deskjet 710/720/810/820/1000 Series printers - Patch for 64 bit Vista and Windows 7

    There is an issue with the 64 bit Vista, Windows 7 and Windows 8 or 8.1 drivers that causes the spooler to crash with the following HP Deskjet printers:
    Deskjet 710    
    Deskjet 712 
    Deskjet 720 
    Deskjet 722 
    Deskjet 810 
    Deskjet 812 
    Deskjet 820 
    Deskjet 822 
    Deskjet 1000 
    The attached file contains a patch for this issue for Vista and Windows 7.
    [The patch does not currently work for Windows 8 or 8.1 x64 systems.  There are some efforts to address this, if a solution is developed it will be posted here.  {Edit - I have not made any progress in getting the patch to work in Windows 8 x64.}]  
    First make sure the driver for the printer is installed.  If the driver has not been installed go to Start, Devices and Printers, Add a Printer, Local Printer, choose the proper port (for USB-Parallel converters the port will likely be USB001: or perhaps USB002: ), Next, click Windows Update then choose HP for the manufacturer and select the appropriate printer.   
    Apply the patch as follows: Log into the computer with an administrative account.  Download the patch by clicking on this link or on the paper clip at the end of this post.  Save the patch file to your computer, then unzip it.  Next copy the three DLL files to the following directory:  %windir%\system32\spool\drivers\x64\3   
    Note that %windir% is a system variable that points to the location of the Windows directory. For most systems this will be C:\Windows.  You can click Start, Computer and type %windir%\system32\spool\drivers\x64\3 in the address bar and it will find the right place.
    This can be done from a DOS prompt if DOS is opened with the "run as administrator" command, or from explorer with a copy and paste.  Depending on your UAC settings you may need to provide confirmation.  Also allow the current files to be overwritten if prompted.
    This patch is not required and should not applied to a 32 bit version of Vista or Windows 7.
    Thanks to extraordinary Microsoft engineer Alan Morris for guidance for the patch.
    Update - the following are more detailed installation instructions:
    Download the patch from here. Now click on the file and open it, then extract the patch to some directory that is easy to find. (I use c:\temp. If this directory does not exist you can create it as follows: open the administrative DOS prompt by clicking on Start, All Programs, Accessories, then right click on CMD.EXE and select Run as Administrator. Click in the DOS box then type the following:
    MD c:\temp
    CD \temp
    Now extract the patch files into the c:\temp directory (extract all, chose c:\temp as the destination).
    [Update - Windows security settings may prevent these files from being used, please open Computer, type c:\temp in the address bar and then right click on each of the dll files and select Properties.  If there is a message in Properties indicating the file was downloaded from the internet and may be blocked then unblock the file before proceeding.]
    Next click back in the administrative DOS prompt and type the following: (stuff in green is comments, do not type them...)
    DIR *.dll (this is just to verify the files are there, it should list hpvdb720.dll, hpvdb820.dll and hpwm5db1.dll and perhaps others.)
    Net stop spooler (makes sure the files are not in use.)
    Copy  hpvdb720.dll  C:\windows\system32\spool\drivers\x64\3 (this is for the Deskjet 710/712/720/722)
    Copy  hpvdb820.dll  c:\windows\system32\spool\drivers\x64\3 (this covers the Deskjet 820 and 822)
    Copy  hpwm5db1.dll  c:\windows\system32\spool\drivers\x64\3(this covers the Deskjet 1000)
    Net Start Spooler
    Exit
    [Edit - note that these DLL files will already be in the directory.  You will get a warning asking if it is OK to overwrite the files, say "yes".]
    At this point the patch is installed and ready to print.
    Note that the printers here do not support USB connections, they have only parallel ports. [Edit - if your printer does have a parallel port use it, this will likely be much less problematic than using a USB-Parallel converter.]   If you use a USB-parallel converter make sure it is supported in your operating system.  The following posts are flagged with USB-parallel cables that are reported to work in Windows 7.   A driver is required for the USB-parallel converter in addition to the driver for the printer.  For supported converters this is typically supplied automatically in Windows 7.  Note:  the proper port to select for the USB-Parallel converters is often USB001:.  I have heard of some cases where the port was USB002: or LPT3: as well.  If the port you are using does not succeed (after applying the patch) try changing the port by going to Start, Devices and Printers, right click on your printer and select Printer Properties, then click on the Ports tab.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V
    This question was solved.
    View Solution.
    Attachments:
    DJ_Patch.zip ‏34 KB

    Just want to send a thanks.  Purchased a new HP computer with 64 bit Windows 7 and haven't been able to get my 722c to work. This patch worked like a charm!

Maybe you are looking for