Stack XML creation for specific package

Hello
I want to upgrade my ERP 6.0 EHP4 system's LSOFE 603 to 604 but I received I need a stack.xml for upgrade. Our Solution Manager 7.0 EHP1 system is recognising ERP system's SP levels but it is not giving me an upgrade option for LSOFE. I only saw latest SP which was 7 and all other SP's latest levels but not upgrade packages.
How can I create a stack.xml for LSOFE 604?

hi,
If you operate a Netweaver system that contains at least one ERP software component (ERECRUIT, SEM-BW, FINBASIS or LSOFE), you must not use a stack XML file created for an SAP ERP system. Instead, you have to use a stack XML file for SAP NetWeaver systems. The EHP4 packages for the ERP software components have to be added manually in phase IS_SELECT.
Generating the Stack XML File
First of all, create a stack XML file for NetWeaver systems. This can be done either via the SAP Service Marketplace or in the Maintenance Optimizer of your SAP Solution Manager.
check and update.
Jansi

Similar Messages

  • [SOLVED] pacman: grep database for specific packages?

    $ pacman -Ss zsh
    extra/grml-zsh-config 0.9.1-1
    grml's zsh setup
    extra/zsh 5.0.2-4 [installed]
    A very advanced and programmable command interpreter (shell) for UNIX
    community/zsh-lovers 0.8.3-2
    A collection of tips, tricks and examples for the Z shell.
    community/zshdb 0.08-2
    A debugger for zsh scripts.
    $ pacman -Ss zsh | cut -s -d/ -f2 | grep '^zsh ' | cut -d' ' -f1
    zsh
    I'm trying to grep pacman output for a specific packages (not just zsh) and receive only the package name as it was passed to pacman as a output (if it exists in the repos that is, otherwise blank / exit 1). The above command works fine in the terminal but when I'm trying to use it from a bash script it only returns blanks. How come?
    Simplified version of the script:
    tank (zsh ksh)
    for x in ${tank[*]}; do
    echo $x
    present=$(pacman -Qs ${x} | cut -s -d/ -f2 | grep '^${x} ' | cut -d' ' -f1)
    echo $present
    done
    I expect it to return output of a pacman command in the second echo (or blank if there's no packgae like that).
    edit: change of title.
    2nd edit: added simplified script.
    Last edited by thoajdzm (2013-11-16 14:34:59)

    Raynman wrote:
    And consider using
    $ pacman -Ssq '^zsh$'
    instead of that pipeline.
    Brilliant! Much leaner. However it still doesn't work from a script:
    tank=(zsh)
    for x in ${tank[*]}; do
    echo $x
    present=$(pacman -Ssq '^${x}$')
    echo $present
    done
    Second echo returns blank... Am I quoting something wrong?

  • Efficient searching in a large XML file for specific elements

    Hi
    How can I search in a large XML file for a specific element efficiently (fast and memory savvy?) I have a large (approximately 32MB with about 140,000 main elements) XML file and I have to search through it for specific elements. What stable and production-ready open source tools are available for such tasks? I think PDOM is a solution but I can't find any well-known and stable implementations on the web.
    Thanks in advance,
    Behrang Saeedzadeh.

    The problem with DOM parsers is that the whole document needs to be parsed!
    So with large documents this uses up a lot of memory.
    I suggest you look at sometthing like a pull parser (Piccolo or MPX1) which is a fast parser that is program driven and not event driven like SAX. This has the advantage of not needing to remember your state between events.
    I have used Piccolo to extract events from large xml based log files.
    Carl.

  • XML creation for UPS.

    Does anyone here have any experience with using foxpro to create XML files for the purpose of exporting to UPS?
    It seems I can't use something like cursortoxml() because the UPS xml requirement are obviously more than field names.
    I'm trying to avoid writing a totally custom xml code, and I was wondering if anyone has experience with a similar situation.
    thanks.

    Its very unlikely that you will have a table(s) in your application that will have or need the exact fields, etc. that are used by UPS. A lot of the UPS info can be defaulted or will be completed from various tables like product info, customer address, and
    packaging info from any warehouse/distribution functions. 
    Also the XML for UPS is multi-layered whereas the export of a table is single layered.
    I therefore suggest the following:
    a) learn to use VFP Collections
    b) build a procedure with a Collection of at least 4 parts i) XML tag, ii) XML attributes, iii) the XML tag data value (as a string of course), iv) an object link for any lower Collection in order to replicate the multi layer XML requirement.
    c) as you process through your data/function building/obtaining the relevant "XML" elements required by UPS call the procedure you created under b) above.  So that tag names, attributes, tag values, and whether the item is to be appended at
    the existing level or at a lower level can be used by the procedure.
    d) Having completed the building of the UPS data within a Collection have another procedure that can take a Collection and build the entire XML string from it. Use recursion to step down and back up the XML levels.  At this stage you may also decide
    to import a text file containing the constant XML leading text/string; plus closing string. That way when the XML parameters etc. are changed by UPS, you only need to change a text file and not your program.
    The English Bob

  • How to search XML file for specific attributes ...

    Hi, Im trying to design a XML driven billboard. Is there an easy way to seach attributes of all elements using DOM parser and return the element with attribute that matched search criteria?

    Yes. Are you using jsdk1.4? If true then look at the XPathAPI.
    I wrote a package for working with XML vocabularies. If you are interested on it, here is an example that uses amic-util.jar to find nodes with the id-user attribute:
    XmlReader xr = new XmlReader("vocabulary.xml");
    NodeSet ns = new XPathFinder(xr).findNodes("*[@id-user]");
    while(ns.hasNextNode()) {
      XmlReader node = ns.nextNode();
    }Send me an e-mail and I will send you back the amic-util.jar and the javadocs.

  • Xml search for specific node/attribute

    Hi,
    I load an xml in as3 and need to find and output (as an
    XMLList) a specific node with a specific attribute (example:
    <xs:element name="abcd"> ), or at least find out its path
    (after, I would know what to do to get the XMLList). I looked at
    the XPath classes for Actionscript but the documentation is very
    poor and I did not see any method doing this. Could someone help me
    please? If no method exists, how can I loop through all the xml and
    test each node to see if it is the proper node I am looking for?
    thanks so much in advance for your help
    Pierrot

    You could do it this way, using the descendant accessor:
    var xml:XML =
    <data xmlns:xs="
    http://www.w3.org/2001/XMLSchema">
    <xs:element name="abcd">
    <tagA>hjfhsldf</tagA>
    <tagB>dummy stuff</tagB>
    </xs:element>
    <xs:sequence>
    <xs:element name="dd">
    <tagA>words</tagA>
    <tagB>dummy stuff too</tagB>
    </xs:element>
    </xs:sequence>
    </data>;
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList = xml..xs::element.(@name=="dd");
    trace(nodelist)
    If you need generic code that accounts for no namespaces, you
    can use
    something like this:
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList =
    (xs == null || xs == undefined)
    ? xml..element.(@name=="dd");
    : xml..xs::element.(@name=="dd");
    trace(nodelist)

  • Sccm software distribution not happening for specific package, not able to found any error in logs

    Hi All
    I getting this problem while deploying software, not getting any errors in cas.log and exemgr.log for pKG ID C000121C
    <![LOG[CUIEventGenerator::NotifyDownloadProgress entered]LOG]!><time="15:06:29.078+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:658">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress succeeded]LOG]!><time="15:06:29.078+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:671">
    <![LOG[CContentAccessService::NotifyDownloadProgressEx - downloaded size 143118, total size 156566]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="2256" file="contentaccessservice.cpp:2272">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress entered]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256" file="uieventgenerator.cpp:658">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress succeeded]LOG]!><time="15:06:31.200+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256" file="uieventgenerator.cpp:671">
    <![LOG[CContentAccessService::NotifyDownloadProgressEx - downloaded size 145454, total size 156566]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="4740" file="contentaccessservice.cpp:2272">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress entered]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:658">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress succeeded]LOG]!><time="15:06:33.103+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:671">
    <![LOG[CContentAccessService::NotifyDownloadProgressEx - downloaded size 148063, total size 156566]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="2256" file="contentaccessservice.cpp:2272">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256"
    file="usertoken.cpp:1138">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress entered]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256" file="uieventgenerator.cpp:658">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress succeeded]LOG]!><time="15:06:35.224+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="2256" file="uieventgenerator.cpp:671">
    <![LOG[CContentAccessService::NotifyDownloadProgressEx - downloaded size 149630, total size 156566]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="4740" file="contentaccessservice.cpp:2272">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[Cached CCM (user, session) is: (S-1-5-21-1379841381-2888069222-2292527902-263711,1).]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740"
    file="usertoken.cpp:1138">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress entered]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:658">
    <![LOG[CUIEventGenerator::NotifyDownloadProgress succeeded]LOG]!><time="15:06:37.658+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4740" file="uieventgenerator.cpp:671">
    <![LOG[Location update from CTM for content C000121C.1 and request {729070FF-36BA-4423-A145-4FE0608E73C5}]LOG]!><time="15:31:35.493+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="6932" file="downloadcontentrequest.cpp:969">
    <![LOG[Download location found 0 - http://XYZtime="15:31:35.493+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="6932" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="15:31:35.774+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="6932" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="15:32:50.919+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="6932" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="15:32:51.246+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="6932" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="15:37:50.991+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="3936" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="15:37:51.428+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4204" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:31:45.137+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="3868" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:31:54.498+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="3868" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:32:43.529+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4780" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:32:44.231+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="4780" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:37:43.350+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="5160" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 -
    http://XYZtime="16:37:44.785+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="5160" file="downloadcontentrequest.cpp:977">
    <![LOG[Download location found 1 - <a href="file://\\XYZDomain\SMSPKGE$\C000121C\]LOG]!><time="16:37:44.785+-660">\\XYZDomain\SMSPKGE$\C000121C\]LOG]!><time="16:37:44.785+-660" date="02-26-2014"
    component="ContentAccess" context="" type="1" thread="5160" file="downloadcontentrequest.cpp:977">
    <![LOG[Download request only, ignoring location update]LOG]!><time="16:37:44.785+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="5160" file="downloadcontentrequest.cpp:983">
    <![LOG[Location update from CTM for content C0000C25.1 and request {92A1F755-C4DC-4CDE-B1C3-DA7B63FA948D}]LOG]!><time="16:37:45.128+-660" date="02-26-2014" component="ContentAccess" context="" type="1"
    thread="3868" file="downloadcontentrequest.cpp:969">
    <![LOG[Download request only, ignoring location update]LOG]!><time="16:37:45.128+-660" date="02-26-2014" component="ContentAccess" context="" type="1" thread="3868" file="downloadcontentrequest.cpp:983"> 

    hi kamala
    I check cas.log and datatransferservices.log and execmgr.log........as the package is sucessfully downloaded to DPs, which i matched with source folder and DP smspkgZ$ package size is same but , i am having doubt that
    package is downloading in client which you can check in cas.log with package ID C000121C entry
    but when im checking execmgr.log it show it is waiting for this particular package content
    but i hecked the dataTransferservices.log it shows every folder of package is downloaded.
    now is it possible that client computer is not abale to download complete package from dp to client computer
    will program run from DP work in this scenario ,because in our environment we are only downloading from DP then running the program setting is used.
    thanks in advance.

  • [yaourt] Keep sources/build files only for specific AUR packages

    Hi,
    By default, packages are build in BUILDDIR=/tmp/makepkg, which itself usually is a virtual dir in RAM. I generally like this behaviour, so I don't wanna change the BUILDDIR variable to point to a dir on the harddisk, but for a few packages I'd welcome the sources/build dir to be kept, e.g. for *-git packages to reduce build time on consecutive updates. Is there a neat Arch-way to tell the makepkg system to use a different dir (i.e., one on the harddisk) for specific packages? It'd be even greater to be able to use wildcards as well, so I could just enable this option for all *-git packages.
    And as I said, I generally like the idea of building in RAM so the trick to just let BUILDDIR point to a dir on my hdd and put a command in some shutdown-script to delete all but the directories ending in -git wouldn't be perfect
    Cheers
    Last edited by epinephrine (2013-01-27 16:25:17)

    Oh you're right in that BUILDDIR isn't set by default. I use yaourt for building AUR packages, so this is a yaourt related question, oops. I'll ask in the appropriate forum...
    Some packages are only available as git packages, and that for a good reason. Some git repository maintainers follow the good working principle to always have their master branch stable and deployable and do development and testing in respective branches to keep master clean. E.g. I maintain 2 git packages on the AUR, and there are no other "stable" options, also as git makes sense for these packages.
    And sometimes you just need a more up2date version

  • Delete distribution point in specific package

    I need to delete already assign distribution points for specific package. Basically need to remove distribution point and add different distribution point to selected package . since sms_distributionPoint status property read only I cant change it to 3 (delete)
    . How can I do using C#.

    I already tried this. But it want allow me to delete. that explain under  (http://msdn.microsoft.com/en-us/library/cc144580.aspx) "When your application deletes an instance of
    SMS_DistributionPoint, the instance is not totally deleted until its related components are deleted. Instead, Configuration Manager sets the
    Status property to 3 (delete) to inform the application that the distribution point is marked for deletion". I cant update it to status 3 since status property is read only.
    I tried to do this several ways but didn't get true it. If you have any experience with this please send me the sample code.

  • Stack.xml file

    Hi,
        Currently we have NW7.0 SR3 (ABAPJAVA),  Now we are planning to upgarde to EHP1 through ehp1 tool. how i can generate stack.xml file for (ABAPJAVA) stack without solution manager. Kindly help me
    Regards,
    Sampath.

    Hi,
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/swdc/sps/index.do?pvnr=01200615320900001250&u=&session_id=saS000427859520110124070001SID%3aANON%3apwdf4962_OW1_01%3aBkxYmOjMQn50g5RGGRAOjSdi_oZwuReU3be5uAej-ATT
    Check here.
    You have NW 7.0 as source and EHP1 is present in target.
    Regards,
    Nirmal.K

  • How to get stack.xml for EHP2 Netweaver BI 7.0 Upgrade without SolMan?

    Hi Experts,
    We are planning for BI 7.0 EHP2 upgrade from BW 3.5
    SAP_ABA u2013 6.40 - 24
    SAP_BASIS u2013 6.40 - 24
    PI_BASIS - 2006-1-640 - 8
    SAP_BW u2013 3.50 - 24
    To Target version of NW BI 7.0 EHP2,
    In SAP Support Package Stacks, Itu2019s not showing SPS (SAP Support Package Stacks) for NW BI 7.0 EHP2 but itu2019s showing NW BI 7.0 EHP1, Please advise, how to download SPS for NW BI 7.0 EHP2 with stack.xml file.
    Thanks & Regards
    Raja

    Hi Experts
    After getting the stack.xml file, we started the process of upgrading our BW 3.5 system to BW 7.0 EHP2. We
    have downloaded all media list and EHPI tool. The EHPI tool latest
    version SAPehpi_111-10005800.SAR has been used and we are getting the
    following error.
    Release '640' is not supported by this tool.
    Request you to please suggest the solution.
    Regards,
    RajaMurugesan,PMP

  • Stack xml not allowing to update to SPS04 for solman 7.1

    We are currently running solman 7.1 SPS02.
    We want to update to SPS04.
    Here is the procedure we did for this.
    -Downloaded support packs using maintanance optimizer(of SMP) for
    system SMD.
    -Copied java support packs in EPS/in directory
    -Extracted and copied ABAP support package in EPS/in directory.
    -Extracted stack xml file from EPS/in directory.
    Now when we try to update ABAP stack using SAINT, after supplying stack
    xml, we find following information message and no support package gets
    displayed/selected in the queue.
    "The loaded stack configuration does not fit to the
    current system state"
    We tried using following xml files:
    -Genereated during maintanance transaction and kept in EPS/in
    -By saving xml files from maintainance transaction
    -Generated xml file from service market place using SPS02 source and
    SPS04 as target
    in all above cases, we get the same aforementioed error message.
    Anyone has any idea or faced similar issue?
    Regards,
    Nishit Padhya

    Hi Nishit,
    Please kindly refer the SAP Note 1302772 or the following SDN link for
    more information:
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16746
    When you use the SAPEHPI tool to install support pack stacks, this
    will require the stack.xml generated by MOPZ.
    Thanks
    Regards,
    Vikram

  • Help in creation of XML file for IDOC postings

    Hi All,
    Need help if anyone has knowledge/experience in creating XML files for IDOC processing.
    We need to design an input file (in XML format) for creation of IDOCu2019s for purchase Invoices through Interface.
    We have an existing input file, which is working correctly.  We are trying to modify this existing input file for a new Tax Code (Non-deductible inverse tax liability).   This tax code is working fine for manual postings.   But, through IDOC, tax postings are not correctly triggering.
    Could you please confirm if any one has experience on this, so that I can share more details for resolving.
    Thanks & Regards,
    Srini

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Issue while running a custom package:ORA-20100: File o2670336.tmp creation for FND_FILE failed.You will find more information on the cause of the error in request log. in Package PA_OPPORTUNITY_MGT_PVT Procedure modify_project_attributes ORA-20100: File o

    Hi Guys,
    We have created a custom package where in we are trying to call the standard API's of Oracle projects i.e PA_PROJECT_PUB.When we are trying to call these APIs we are facing the below issue.
    We have tried testing in two instances ,Initially it worked in both instances.
    Using the same API's multiple times we tested the same data set in these instances.
    For the first few runs it works fine.But when we go on using the same API's again and again for our testing we face now and then the below issue.
    Standard API's
    =========
    add_task
    update_project
    change_structure_status
    create_draft_plan
    Error:
    ORA-20100: File o2670336.tmp creation for FND_FILE failed.You will find more information on the cause of the error in request log. in Package PA_OPPORTUNITY_MGT_PVT Procedure modify_project_attributes ORA-20100: File o2670336.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log. in Package PA_PROJECT_PUB Procedure update_project:ORA-0000: normal, successful completionError while publishing the task
    Please let us know if anyone of has come across the same situation.
    Regards,
    Vijay

    But have issue only with validating invoice batch. I followed metalink ID's 605542.1, 167990.1,261693.1,1088553.1,749491.1, 461271.1 and few more.Was this working before? If yes, any changes have been done recently?
    Please see if these docs help.
    APXAPRVL: Invoice Validation Errors With MSG-00001 and REP-1419 [ID 333305.1]
    Invoice Validation Errors When Others:101505:Non-Oracle Exception Rep-1419 [ID 464125.1]
    Invoice Validation Fails with REP-1419 Error in Ap_approval_matched_pkg.Execute_matched_checks [ID 293425.1]
    Invoice Validation Failing On Fnd_file Could Not Write To File L0202306.Tmp [ID 461520.1]
    Invoice Validation (APPRVL) Errors ORA-20001 APP-SQLAP-10000 PSA_FUNDS_CONTROL_PKG.glxfck [ID 463184.1]
    Validate Invoice Error With ORA-20001: APP-SQLAP-10000: AP_FUNDS_CONTROL_PKG.Calc_QV [ID 432702.1]
    Invoice Validation Program Is Erroring Out [ID 382844.1]
    Error On Validation Of Invoices From Previous Periods [ID 412814.1]
    Thanks,
    Hussein

  • How do I create a specific packages for users where in only the admin has the access of which software the user can download?

    Is there any possibilities that the admin of the team can limit the packages of the user? Only the admin can add and remove software to be downloaded for specific users.

    You can include single app plans in team packages, but otherwise no. This will exclusively depend on the users' local permissions on the computer - if the can install one app, they can install all of them, be it only as a trial.
    Mylenium

Maybe you are looking for