Add-on packages

HI
     We are on netweaver 2004s sr1(sps6).I want to apply the new patches(SPS10).How can i apply patches from SPS6 to SPS10.I have downloaded from service market place.can anyone guide me in details how can i go proceed from here to update the server to SPS10.
components
AS-JAVA
AS-ABAP
BI-JAVA
Thanks in advance
JANA

You must use SPAM to apply individual patches or a complete stack.
  1. Uncar your files using SAPCAR to DIR_EPS dir (\usr\sap\trans\EPS\in)
  2. Copy kernel files to the exe directory, update kernel (do not forget to backup old files)
  3. Upload all files from SPAM (logon to client 000 using a SAP_ALL a/c)
  4. Apply SPAM update
  5. Refer to SPS10 stack OSS note and note down any issues or any conflicting support packs
  6. Now check the queue and apply the stack (choose between background and dialog)
  7. Finally confirm after applying the patches.
You can also refer to online help (search on SPAM).

Similar Messages

  • How to add new package in SAP transport layer?

    hello,
    as part of requirement, i have to add a new package to SAP transport layer.
    can anyone tell how it is done?
    as in STMs,add new package is not coming.
    Regards,
    Chaitanya

    Hi
    go thru the below links
    http://help.sap.com/saphelp_nw04/helpdata/en/57/38de0c4eb711d182bf0000e829fbfe/content.htm
    http://help.sap.com/saphelp_sm32/helpdata/en/57/38de194eb711d182bf0000e829fbfe/content.htm
    Regards
    S

  • Connect App-V 5.0 Add-in package

    Hi Everyone,
    I have sequenced an Excel Add-in application for MS Office using App-V 5.0. Then I have published it on the client machine successfully.
    If I launch the Excel shortcut which is installed locally, the excel add-in is not getting loading.
    I want connect the App-v add-in package with existing local office application.
    What are the steps to be followed to make it success?
    Please assist me on this.
    Thanks,
    Ganesh Babu S.

    Hi
    You either have to create a separate shortcut for Excel-with-plugin, or you can use the RunVirtual registry key.
    see
    http://support.microsoft.com/kb/2848278 and http://blogs.technet.com/b/gladiatormsft/archive/2014/02/05/app-v-5-on-run-virtual-rds-run-virtual-virtualizable-extensions-and-dynamic-virtualization.aspx
    Note that the package has to be published globally (not to individual users)
    Falko
    Twitter
    @kirk_tn   |   Blog
    kirxblog   |   Web
    kirx.org   |   Fireside
    appvbook.com

  • Incorporate Crystal Report as a Add On Package

    Hi
    Our client has request to incorporate Crystal Report as a Add On Package.
    Kedalene Chong

    Hi Andreas,
    I just thought I put in my two cents for what it's worth - having Crystal for report writing would be a great plus for SBO as it's much easier to use. We already use Crystal so the acquisition news was most welcome!
    Thank you,
    Heather

  • SAP Add-on package to meet China Customs reqmt

    Hi Experts
    Can you please let me know any add-on package to SAP ECC 6.0, which will facilitate Complete China Customs requirements for a Manufacturing Industry ?
    Please share, useful response will be highly appreciated.
    Regds
    Vishwanath

    I have implemented in china.I did use any Addon package.
    What is china customs requirement?

  • Creation of Add-on package for 64 bit and 32 bit SAP Business One Client

    Please help me creating package for 64 bit and 32 bit SAP Business One. If Add-on executable is compiled with x86 option then there is no issue of connecting Add-on with 32 bit SAP Business one and if Add-on executable is compiled with Any CPU option then there is no issue of connecting Add-on with 64 bit SAP Business one. Problems are mentioned as below
    1. My Add-on uses MS ACCESS connection and the connection is read using Jet OLEDB 4.0 provider. It works fine for x86 compile mode but not when compile mode is Any CPU. I searched for the issue on Google and found a solution to change MS ACCESS connection provider to ACE.OLEDB.12.0 but again ACE provider is installed according to the Office version i.e. 32 bit or 64 bit office suite. If I install 32 bit ACE provider then Add-on executable compiled with x86 version is working fine but with Any CPU option throws error as provider is not registered on current machine.
    2. Secodly, our license validation activex dll is build using vb 6.0 and therefore when Add-on executable is compiled using Any CPU option, Add-on EXE cannot read from license dll. Any suggestion, how the activeX dll can be compiled whose component can be created from for X86 compiled exe and any cpu compiled exe.
    Please help because we are stuck in this issue and cannot move forward.
    Thanks.

    Hi Alejandro,
    That is one solution but did your add on used ms access connection? if you used Jet oledb to connection string or ace oledb connection string? what if 32 bit office is installed and what if 64 office is installed? how did you found the office version in install script? after determining the office version how did you installed Microsoft redistributable for ace oledb (32 bit or 64 bi )?
    I am sorry that I asked many questions but these are the problems where I am stuck with the addon installer?
    Thanks

  • I need to add a package to a DP programmatically but the SDK solution yields slightly different results to the manual solution.

    Hi
    I have been using this:
    http://msdn.microsoft.com/en-us/library/cc144027.aspx
    to add packages to configmgr 2007 but I have noticed that if I look at the distribution points for the package, the site name doesn't exist like it does if it has been added manually. Other than that, the package does actually appear to get physically copied
    over to the DP but I am unhappy using this in production until I can sort this out.
    Anyone know what I am missing? In the above example I pass the site code of the (secondary) site server (257) and the server name itself. I assume this is correct, but I must be missing something.
    Additionally, I noticed that if more than one DP share exists, eg a package DP and an SMSPXE$ on the same server, it tries to put it on the last one it finds, usually SMSPXE$. I get round this by filtering the returned string but wondered if there was a
    more elegant solution.
    Thanks

    OK looks like I've fixed this. I've added a new query to get the site description (sitedescriptionquery) and simply added that to the distribution point properties before saving.
    Given that this is the default in ConfigMgr 2007 I am surprised the SDK code doesn't include this. The workaround to avoid putting the package on SMSPXE$ is also included below.
    string query = "SELECT * FROM SMS_SystemResourceList WHERE RoleName='SMS Distribution Point' AND SiteCode='" + siteCode + "' AND ServerName='" + serverName + "'";
    string sitedescriptionquery = "SELECT * FROM SMS_Site Where SiteCode='" + siteCode + "' AND ServerName='" + serverName + "'";
    IResultObject listOfDescriptions = WMIConn().QueryProcessor.ExecuteQuery(sitedescriptionquery);
    foreach (IResultObject site in listOfDescriptions)
    siteName = site["SiteName"].StringValue;
    IResultObject listOfResources = WMIConn().QueryProcessor.ExecuteQuery(query);
    foreach (IResultObject resource in listOfResources)
    if (resource["NALPath"].StringValue.IndexOf("SMSPXEIMAGES$") < 0)
    distributionPoint["ServerNALPath"].StringValue = resource["NALPath"].StringValue;
    distributionPoint["SiteCode"].StringValue = resource["SiteCode"].StringValue;
    distributionPoint["SiteName"].StringValue = siteName;

  • How to add new packages to oel5

    i have installed oracle enterprise linux 5
    i have downloaded all 9 cd from oracle e delivery
    i need to add(install) other programs packages from cds
    how can i see available packages(programs) to installation on cds and of course how can i install them ?
    ( for example i need to install ruby support to my oel5 )

    On the first 4 CDs there is a "Server" directory where you'll find all RPMs. To install one, as root mount the CD, go to that directory, and execute :
    # rpm -Uvh <complete rpm file name>BTW, ruby rpms are on CD #2 or #3, depending on exactly what you need.

  • Deploy crystal report with add-on package by b1de

    Hi
    I have some problem with add-on installer. after i package add-on by b1de, I install it on client machine. It works correctly. But when i call report, It have error with crystal report license code and .dll. I found solution that solve that problem. I must include crystal report merge module and License code into  windows installer project. But i use b1de to package. How i can include crystal report merge module and License code into b1de project . If anybody have other method to package crystal report into b1de. please help me.
    Regards,Seang

    for this problem I created window installer which only have merge modules of crystel report & provide it to user to install it as well , bcz sap installer was not including merge modules
    , how ever u can try professional installer of SAP DE
    but I have not try it,

  • Add-on packages for OVM 3.0.2

    I would like to add some additional packages to my OVM Server. example: sendmail
    As the OVM 3.x channel does not include basic RPMs like these (OVM 2.x did) what channel would be the best ? OEL 5 latest ? other ?
    Thoughts ? Comments ?

    411seeker wrote:
    Interesting concept: When using OVM in the enterprise it is "unimportant" to be alerted to physical host status or delivery of messages that would be used as preventative measures to avoid outages. hmmmm...Incorrect: we provide free use of Enterprise Manager 12c Cloud Control for both Oracle Linux and Oracle VM. This does monitoring and alerting for you of both your Oracle VM Servers and your Oracle Linux (and other) guests. We are trying to keep Dom0 as lean as possible for security and management purposes.
    If you have Oracle Support, you can download net-snmp packages from My Oracle Support for Oracle VM 3.0 as part of the support for the Fujitsu ServerWatch package. This could then be used with another 3rd-party SNMP monitoring tool. We are looking very carefully at ways to both provide proper monitoring access for Dom0 without requiring unnecessary packages like sendmail on Dom0 itself.

  • How can I add this package?

    Hello,
    I downloaded the "xmlunit-1.0.jar", and in the code that I'm working with I have this as the first line:
    package org.custommonkey.xmlunit.examples;
    But, I'm getting an error, in addition to the following line:
    import org.custommonkey.xmlunit.*;
    I'm using Eclipse on MAC OS X.
    How can I add the ""xmlunit-1.0.jar" and do the imports correctly?
    Thanks.

    Configure the build path of your project. Right-click on the project in Eclipse, select Properties, and have a dig around what you find there. It won't take you long. I'm not going to tell you exactly what to do, because if you try and figure it out for yourself, you'll almost certainly find out some other useful things at the same time. That's how I learnt to use Eclipse: just dug around in menus

  • How to add extra packages for AIF installation?

    I am trying to build a custom Arch Linux LiveCD with archiso, based on wiki.
    Now, everything works fine. But when I tried the installation with /arch/setup, it only allows me to select "core-local" in the step 1.
    I checked also the mount, there is only /repo/core/any and /repo/core/i686.
    Is there anyway to add in more packages other than the core? This should be done on archiso or aif?

    avarionist wrote:thanks found a mirror
    one last question though
    in arch do i have to install dependecies one by one or are they automatically found.
    in any case what would be the command to check for the required dependecies ?
    If you have the network access,  they are automatically found for you. But if you don't, you should find out all the dependencies of a particular package and then download each one and then install them "in order", so that the package that you are actually trying to install, can be installed.
    The command would be (from any arch machine which has network access
    sudo pacman -Ss <package-name>
    It will list all the dependencies, as long as they are not installed on your machine already.
    Last edited by Inxsible (2010-06-17 05:00:26)

  • Add on  packaging  problem.......................

    we want to create helloworld project addon  instalation ,,,,,,,,,,,,, but problem is that
        file = thisExe.GetManifestResourceStream("Installer." & sAddonName & ".exe"              If IO.File.Exists(sSourcePath) Then
                    IO.File.Delete(sSourcePath)
                End If
                AddonExeFile = IO.File.Create(sSourcePath)
                If (file Is Nothing) Then
                    MsgBox("The project is missing 'HellowWorld2.exe' as an embeded resource, " & _
                    "please read the ReadMe.html, in this sample folder, for further info...")
                    Me.Close()
                    GC.Collect()
                    Application.Exit()
                    End
                End If
      MsgBox("The project is missing 'HellowWorld2.exe' as an embeded resource, " & _
                    "please read the ReadMe.html, in this sample folder, for further info...")   show.ing
    Any one help me..........................

    Add the .exe to the Project and look in the properties window.
    there you have a dropdown/combobox with the name "build ..." (i have it in german)
    select "embedded resource" and the problem is solved

  • How to add solaris packages to installled system...

    Hello,
    I have a minimally installed Sun Solaris system. I need a lot more functionality on it, like developper tools.
    I know how to install a packege. The problem is finding out which packages to install. The installation CD contains a whol ot of SUNW* packages with cryptic names, and when you try to install one of them I usually run in to dependency problems.
    So is there a convenient way to do the following:
    - Given I need a particular tool (eg /usr/ccs/bin/as )
    - Find out what package that tool belongs too
    - Install that package and all its dependencies automatically?
    Under Linux (an Os where I do have somewhat more experience) this is a trivial exercise. But how do I do this under Solaris?

    I know I can just try to install a package using pkgadd and see where it breaks. But to do this I first have to know what package to install. That is the first problem. I need "foo", how do I find out what package contains "foo"?
    Searching for sollutions I came across a concept called "metacluster", which is aparently sun's way of packaging lots of related stuff together. I found out that the metacluster installed on my system was "SUNWCuser" and that I probably want it to be "SUNWCprog". But I have no idea how to get there.

  • How do I add mobile package to my subscription

    I bought unlimited world subscription, but it doesn't cover my calls to mobile number to England. Is there any way I can add the unlimited mobile calling to my subscription? Please let me know ASAP, thanks a bunch!

    http://www.skype.com/intl/en-us/prices/pay-monthly/#GB
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How to add a package to flex builder?

    I download a package named com.adobe.serilaztion.json(may be
    I spell worng), My question is that what should I do to make this
    package be added into the flex ,just like flash.display.sprite, I
    can import the package in.

    What I do is have a folder called thirdparty, where I place
    package structures like this.
    Then in my app, I include that folder as a Build Path source
    folder in the Project properties dialog.
    This makes all of the package declarations in the code work
    correctly, effectively parenting the package structure from my app
    root.
    Tracy

Maybe you are looking for