Need Sapxmltoolkit.jar

Dear friends,
                         Where do i download sapxmltooklit.jar file? I need it very urgently....please help me....if anybody has..it..please inform me..

Hi,
  You can find it inside eclipse plugins itself.
C:\Program files\SAP\IDE\IDE70\eclipse\plugins\com.sap.ep.unitTest_7.00
Regards,
Harini S

Similar Messages

  • How to run a jar file which needs another jar to be in the class path

    Hi,
    I need to execute a jar, which needs another jar to be in the classpath.
    If I run like
    java -classpath <jar1 name> -jar <main jar>
    It is giving classnotfoundexception, where as the class is available in the <jar1 name>.
    so, currently I am doing like this
    In the manifest file i have given like
    Main-Class: <class name>
    Class-Path: <jar name> <jar name2>
    then it is running fine. But, if I want to change the jar location again I need to changed the manifest file.
    Is there any way to do this? Pls help me.

    How about
    java -cp jar1.jar;jar2.jar com.acme.MainClass
    You won't need to worry about the manifest file after that and you can make a bat files (or .sh file in *nix) for it.                                                                                                                                                                                                                                                                                                                                                                       

  • Error in Muenchian method in XSLT mapping using sapxmltoolkit.jar

    Hi,
    The following example produces a different result in SAP from that of Altova, Microsoft providers. It is a resonably complex Muenchian transformation that I have reduced this to the core issue:
    Have tried with SP14 but same result on every delivered version of sapxmltoolit.jar
    I am trying to extract a unique set of locationCodes to assemble an IDOC for each locationCode - breaking out the relevant order lines.
    <b>My question is twofold:</b>
    a) is the behaviour of sapxmltoolkit errannt to the spec?
    b) is there another way to produce this list or work around?
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:output method="xml" version="1.0" indent="yes"/>
      <xsl:key name="partner-ids" match="PRODQNTY/LOCNQNTY" use="locationCode"/>
      <xsl:template name="buildIdoc" match="ORDER">
        <ORDERS05>
          <xsl:for-each select="PRODQNTY/LOCNQNTY[count(.|key('partner-ids',locationCode)[1])=1]">
            <xsl:sort select="locationCode" data-type="number"/>
            <xsl:comment><xsl:value-of select="locationCode"/> Location Code</xsl:comment>
            <xsl:comment><xsl:value-of select="../lineNo"/> Line Number</xsl:comment>
            <IDOC BEGIN="1"></IDOC>
          </xsl:for-each>
        </ORDERS05>
      </xsl:template>
    </xsl:stylesheet>
    <b>Sample input document:</b>
    ?xml version="1.0"?>
    <ORDER loops-id="ORDER">
      <PRODQNTY loops-id="PRODQNTY">
        <lineNo>1</lineNo>
        <productCode>9990007454</productCode>
        <LOCNQNTY>
          <locationCode>001</locationCode>
          <quantityOrdered>6</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>004</locationCode>
          <quantityOrdered>3</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>005</locationCode>
          <quantityOrdered>2</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>006</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>007</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>009</locationCode>
          <quantityOrdered>3</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>021</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>082</locationCode>
          <quantityOrdered>2</quantityOrdered>
        </LOCNQNTY>
        <unDefData></unDefData>
        <segmentCount>0</segmentCount>
      </PRODQNTY>
      <PRODQNTY loops-id="PRODQNTY">
        <lineNo>2</lineNo>
        <productCode>1864503696</productCode>
        <LOCNQNTY>
          <locationCode>001</locationCode>
          <quantityOrdered>4</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>004</locationCode>
          <quantityOrdered>2</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>005</locationCode>
          <quantityOrdered>2</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>006</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>007</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>009</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>021</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
        <LOCNQNTY>
          <locationCode>082</locationCode>
          <quantityOrdered>1</quantityOrdered>
        </LOCNQNTY>
      </PRODQNTY>
    </ORDER>
    <b>Expected Output:</b> - from Altova - 1 record per locationCode
    <?xml version="1.0" encoding="UTF-8"?>
    <ORDERS05>
         <!--001 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--004 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--005 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--006 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--007 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--009 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--021 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
         <!--082 Location Code-->
         <!--1 Line Number-->
         <IDOC BEGIN="1" />
    </ORDERS05>
    <b>Output from sapxmltoolkit.jar</b> - 1 record per locationCode per PRODQNTY line so I get a non unique set of locationCodes: (every location twice in this example - and with 16 order lines, every location 16 times and 128 IDOCs (instead of 8 IDOCs).
    <?xml version="1.0" encoding="utf-8"?>
    <ORDERS05>
      <!--001 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--001 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--004 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--004 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--005 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--005 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--006 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--006 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--007 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--007 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--009 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--009 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--021 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--021 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
      <!--082 Location Code-->
      <!--1 Line Number-->
      <IDOC BEGIN="1"/>
      <!--082 Location Code-->
      <!--2 Line Number-->
      <IDOC BEGIN="1"/>
    </ORDERS05>

    A bit more heartache & trials and I solved it
    The key defition is unstable in XSLT the way I defined it
    Simple change to the XSLT: remove the PRODQNTY node reference from the match attribute:
    <b>incorrect key:</b>
    <xsl:key name="partner-ids" match="PRODQNTY/LOCNQNTY" use="locationCode"/>
    <b>correct key:</b>
    <xsl:key name="partner-ids" match="LOCNQNTY" use="locationCode"/>
    And the "group-by or Muenchian method" loop statement:
    <xsl:for-each select="PRODQNTY/LOCNQNTY[count(.|key('partner-ids',locationCode)[1])=1]">
    Hopes this helps someone else....
    Regds Doug.

  • Changes to sapxmltoolkit.jar from PI7.0 to PI7.1

    Hi.
    This question is about "XSLT Mapping with Java Enhancement".
    We have build numerous interfaces that uses java functions in a XSL mapping.
    This works fine in PI7.0, but when porting to PI7.1 it stops to work.
    SAP gives examples how to make this work:
    PI7.0: http://help.sap.com/saphelp_nw70/helpdata/EN/55/7ef3003fc411d6b1f700508b5d5211/frameset.htm
    PI7.1: http://help.sap.com/saphelp_nwpi71/helpdata/en/83/2200cb50d345c793336d9a1683163e/frameset.htm
    The examples are identical, but again, it dosnt work on PI7.1.
    In PI7.1 the sapxmltoolkit.jar has been renamed to "sap.comtcsapxmltoolkit~sapxmltoolkit.jar". Trying to use the xsl process on standard XSLT transformations work fine.
    When trying the mentioned PI7.1 example, it throws an exception (TransformerConfigurationException), with the following Error Message: "ERROR:  'The first argument to the non-static Java function 'concat' is not a valid object reference."
    When trying with the PI7.0 sapxmltoolkit.jar, it works like a charm!
    Hope someone can help resolve this problem...
    Regards...
    Peter

    Hi Stefan.
    Thanks for a quick reply.
    It works now.
    Wonder how I missed that check button
    Regards...
    Peter

  • Need Weblogic.jar from Weblogic server 9.2

    Hi All,
    I need weblogic.jar from Weblogic server 9.2.
    but i dont want to download & install Weblogic Server 9.2.
    Is thereany way i can get only the .jar file?
    Thanks & Regards,
    BOB

    We are having this problem as well. I e-mailed BEA support, but they just said we needed to include the jar in the EAR (this is all supposed to be assembled automatically by the workshop).
    For us the issue seems to be the files not being put into the EAR automatically as they are with other types of projects. If we have to manually copy/jar up our class files then we might as well just use notepad and some batch files and skip BEA altogether.
    Edited by jmckitt at 09/18/2007 11:04 AM
    Edited by jmckitt at 09/18/2007 11:05 AM

  • Need WebLogic.jar for download

    I need WebLogic.jar for development .Kindly let me no from where can i get?

    Go to support.oracle.com
    Search for document id 763603.1
    OR
    edelivery.oracle.com and use the BEA WebLogic Media Pack
    Did you try creating a wlfullclient.jar?
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13717/jarbuilder.htm#BABCGHFH

  • I need xmlparsev2.jar

    Hi Guru's,
    I need xmlparserv2.jar which is compatible with SAP J2ee Engine
    have any worked on this
    points will be awarded
    Thanks and regards
    Sadik.A

    Hi Sadik,
    Is this Oracle related?
    <a href="http://www.google.com/search?hl=en&lr=&q=%2Bdownload+%2Bxmlparserv2.jar&btnG=Search">This</a> Google search returns <a href="http://www.oracle-base.com/misc/TSHSQL.php">this</a> link, which has a link to <a href="http://www.oracle-base.com/downloads/OracleSupportFiles.zip">this</a> Zip file, which does contain a file named xmlparserv2.jar.
    Perhaps that'll be usefull to you,
    Patrick.

  • I need xmlparserv2.jar

    Hi Guru's,
    I need xmlparserv2.jar which is compatible with SAP J2ee Engine
    have any worked on this
    points will be awarded
    Thanks and regards
    Sadik.A

    Hi Sadik,
    Is this Oracle related?
    <a href="http://www.google.com/search?hl=en&lr=&q=%2Bdownload+%2Bxmlparserv2.jar&btnG=Search">This</a> Google search returns <a href="http://www.oracle-base.com/misc/TSHSQL.php">this</a> link, which has a link to <a href="http://www.oracle-base.com/downloads/OracleSupportFiles.zip">this</a> Zip file, which does contain a file named xmlparserv2.jar.
    Perhaps that'll be usefull to you,
    Patrick.

  • Need Few Jars for RAS Server use!!!

    com.crystaldecisions.sdk.occa.infostore.*,
    com.crystaldecisions.sdk.plugin.desktop.common.*,
    com.crystaldecisions.sdk.framework.*,
    com.crystaldecisions.sdk.occa.security.*,
    com.crystaldecisions.sdk.exception.SDKException,
    com.crystaldecisions.sdk.occa.managedreports.IReportSourceFactory,
    java.util.Locale,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"
    Hi all,
    The above mention are few classes available in some jars.
    Can anbody help me to find and download those Jars.
    Thanks in advance,
    Saravanakumar.

    Could you not save money and buy a photon for use with your existing server? You could install 2 HBAs and use it in split bus mode.
    For true redundancy however, you need 2 servers ideally in 2 locations. ;o)

  • I need servlets.jar Can anyone send it?

    Hi all,
    I am working on a windows nt 4 staion. My problem is that I need to compile servlets but everytime I try to install the JSDK, I have a probleme NT don't want to install it.
    Could anyone send me servlets.jar to [email protected]?
    Thanks for your help
    Cecile

    Hi
    I shall send it to you today.
    bye

  • Need some jar files

    Hi,
    I am going to implement an IResourceListFilter, so need jar files for :-
        com.sapportals.wcm.repository.service.layout.customizing.IParameters
        com.sapportals.wcm.service.resourcelistfilter.ICollectionListFilter
        com.sapportals.wcm.service.resourcelistfilter.IResourceListFilter
        com.sapportals.wcm.service.resourcelistfilter.IResourceListFilterService
    Please let me know from where I can get these.
    Regards,
    Saurabh Mathur

    Hello Saurabh,
    I think this is the par file you are looking for:
    com.sap.km.cm.service.par
    Cheers,
    Hermann

  • Knowlwdgemanagement Java development . I need some jar files related to KM

    Hi Gurus,
    I try to develop KnowledgeManagement application in NWDS. So, i need to install some jar files . How can i install jar files in to my application and were can i findout those JA?R files.
    Points will be revert back.
    Thanks,
    Sumanth

    Hi Sumanth,
    you will find the require jar files on your portal server's file system. They are somewhere under:
    \usr\sap\<J2E>\<JC01>\j2ee\cluster\server0\apps\sap.com
    Best way to find the required jar files is to use a tool like JarFinder, ClassLocator, WinRar, etc.
    In NWDS menu choose => Project => Properties => Java Build Path => Libraries. There you can add the required jar files to your project's build path.
    Best regards,
    MArtin

  • Need some Jar help

    Hi all -
    For the project I'm working on now, I need the apache HSSF POI for some excel file work. My project compiles fine, then I attempt to jar it and run the jar off a remote server. Once it gets to my FileHandling class, it throws an exception and gives me:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/poi/hssf/usermodel/HSSFWorkbook
            at com.esposito.afcfilehandling.AFCFileOutput.<init>(AFCFileOutput.java:21)
            at com.esposito.afcmainmethod.AFC.main(AFC.java:42)Note - this builds and runs fine in the IDE (eclipse)
    Can anyone please help?

    Your classpath is setup correctly inside of your IDE. However, your distribution apparently has a bad classpath or a missing jar.

  • Help needed with jar file

    hi, first of all sorry if my post is in wrong forum...but my application is done using swing so i am posting this here....and regarding my question...
    I have made an GUI using Java swings and my application is working fine. Now i want to make an executable jar file for my GUI. I have read some tutorilas on making jar files and this is what i have done...
    i have created a manifest file called mainClass.txt which has
    Main-Class: MainWindow ,where MainWindow is my main class name.
    Then i ran the jar utility with this command line:
    jar cmf mainClass.txt example.jar *.class
    With this line, I told jar to create a JAR file (option c) with modifications to the manifest file (option m) as specified within mainClass.txt, naming the JAR file (option f) as example.jar and including everything that matches the pattern *Class
    everything is file till now but my problem is ...I have some library files from JFreechart software included in my GUI to generate barcharts..How can i include these library files in my example.jar file..
    Kindly help me
    Thanks
    byee

    I had this problem too. I ran my program out of JCreator and it worked flawlessly. I jarred it up into and Executable Jar and I would get a runtime error explaning I have not included the correct libraries.
    What I did was look at the error, for example say it said something like:
    org.uhoh.PathSys ClassDefNotFound (or something similar to this)
    What I did was extract the library that contained that class file. Then in my project file where I kept my classes I made the folder org, then in org I made uhoh. Inside uhoh I copied over PathSys.class.
    I hope I addressed the problem you speak of. I am only a novice but this is how I figured it out. If anyone knows a better way let us know =D

  • JAR file which needs other JAR files

    Hi,
    I try to run a jar file, which imports some external classes. These classes are in the library "reader.jar", which is added to the classpath. But if I start it with ...
         D:\TestProject>java -cp ./reader.jar -jar viewer.jar
    ... I get an error: java.lang.NoClassDefFoundError: de/readers/TestReader
    If I copy the file "reader.jar" to "... j2sdk1.4.2/jre/lib/ext", I can start
    "viewer.jar" successfull with ...
         D:\TestProject>java -jar viewer.jar
    Why can't I add "reader.jar" to the classpath or why is it not used by Java?

    When you run JAR's, you can not use the classpath defined at the command prompt (well, you can use it, it is just ignored). The JAR has its own class path defined in its manifest file. Add:
    CLASS-PATH: reader.jar
    to the manifest file of the viewer.jar and it should work.

Maybe you are looking for

  • How do i stop my iPhone iTunes from Shuffling songs?

    I cannot figure out how to stop my iPhone Music/iTunes from shuffling songs but instead to play them in order.

  • ABAP Mapping doubt

    Hi. I'm trying to do an abap mapping. I've read weblogs from Robert Eijpe. The samples contained in the weblog worked fine but i have a doubt. ABAP class had a parameter called SOURCE. This parameter contains the XML but i think is contained in only

  • How to check for Optional Oracle 10gR2 components installed?

    Hi How can I get a list of all optional oracle database components/features installed (some of them may require additional license)? I was going through list of directory objects in a database and I spotted "ORACLE_OCM_CONFIG_DIR" in one of the datab

  • Mass approval functionality for SRM work items

    Hi, We want to implement mass approval functionality for SRM workflow, so that any user is able to approve/reject multiple requests at one go through UWL. Please guide if it is possible to implement this functinality for task id TS40007952. Regards,

  • Is it possible to find all images below 300dpi in a document?

    Hi there, I'm hoping this is a quick question. I've had a look on google but to no avail. Is it possible to find all images within an indesign document that are below 300dpi. I've got a lot of images placed in a document, quite a lot were low res (no