Deployment xml file generated in different order

I am using Toplink Workbench 10.1.3.1.0. After making changes to mappings, the order of elements in my exported deployment xml file changes from export to export. The smallest changes to mappings - changes to queries, etc. - will cause the resulting export file to look drastically diferent from pervious version of deploymenty file. This causes quite an issue when useing a file comparision tool to audit changes bwteen versions of our deployment xml file.
Are there any known confiruration settings that address this or is it a known bug?

Proper school boy error here..
Turns out it was because I had left the 'Executable Name' as the original report name and hadn't replaced it with the XDODTEXE Java Conc Program.
Apologies for wasting peoples time..
Steven

Similar Messages

  • Regarding xml file sequence and sales order sequence not equal

    Hi frnds,
                                     The XML File generates after sorting the line items, the sorting is done alphabetically on material master codes but the when the program converts the XML to Sales orders, the line item numbers does not matches with the line item of the XML File, like to understand how the XML conversion happens and is it possible to keep the same sequence of the XML file?
    Regards,
    Jaya.

    And This is a xml details to read
    <ENV:Envelope TransactionID="234567" xmlns:ENV="schemas-hiwg-org-au:EnvelopeV1.0">
         <ENV:SenderID>ABC</ENV:SenderID>
           <ENV:RecipientID>XYZ</ENV:RecipientID>
           <ENV:DocumentCount>1</ENV:DocumentCount>
         <Documents>
              <PurchaseOrder RecordType="10" xmlns="schemas-hiwg-org-au:PurchaseOrderV2.0">
                     <TradingPartnerID>C42000</TradingPartnerID>
                     <MessageType>ORDERS</MessageType>
                     <VersionControlNo>2.0</VersionControlNo>
                     <DocumentType>220</DocumentType>
                </PurchaseOrder>
           </Documents>     
           <Document_Lines>
              <row>
                   <ItemCode>Nylon Black</ItemCode>
                   <Quantity>2</Quantity>
              </row>
              <row>
                   <ItemCode>Nylon White</ItemCode>
                   <Quantity>3</Quantity>
              </row>
         </Document_Lines>
      </ENV:Envelope>
    But this event is fileted with this result message
    "Mapping from LocalObjectType Envelope to object Type failed."
    I've tried to use ENV:Envelope logical objecttype instead of Envelope. But result is same.
    I hope someone can help me
    Thanks

  • How to trigger web service automatically when xml file generated at static

    Hi Experts,
    I have developed web service to read content from XML file.
    I need to setup like whenever new xml file generated on static location (eg:E:\xml_files) generated web service should trigger automatically.
    My requirement:
    1) XML FIle content: have 3 tags with nultiple records.
    2) Configured Weblogic Apploication server on JDev 11g
    3) Developed Java code to read XML content and store it in Oracle Database.
    4) created web service and called java class.
    above 4 points, which I did already.
    I appreciate if any one help me out, when ever new file created on static location, web service should triggered automatically and stored the data in to data oracle DB.
    Thanks,
    Phani

    Hope you are looking for a SOA Suite/OSB solution for this.
    If SOA Suite - You can configure a JCA File Read adapter to read off the XML file and then use a mediator/composite to invoke your WS.
    If OSB - You can configure a File read transport or a JCA Adapter to read off the XML file and then use a route node/service callout to invoke your WS.

  • Deploying xml file alone in sun application server 8.1

    Hi all,
    I am having an xml file which should be pasted or put in sun systemapplication server 8.1. so that i could make access of the xml file alone....
    i tried it..but i couldn't deploy a xml file alone...it needs any war file or ear file to be deployed other wise it deploys the whole project....
    even after deployed xml file with a project....i couldn't get address of the separate xml file...
    this is working easily in tomcat....as i pasted the xml file in webapps folder and now i amable to retrieve the file thru server....
    how could this be done in sun server.....
    pls help me....this is very important
    Urgent plsss

    if you download SJAS 8.2, Derby is included and pre-configured as a DataSource
    Using 8.1, you will need to add the jars to either the lib or domains/domains1/lib/ext directory and manually configure a DataSource using
    javax.sql.DataSource           org.apache.derby.jdbc.ClientDataSource
    javax.sql.XADataSource           org.apache.derby.jdbc.ClientXADataSource

  • Order of elements in deployment.xml file

    We work in a multi-developer environment, and we syncronize our java projects reqularly.
    However, when one developer makes changes to the toplink project and exports a new toplink-deployment.xml, its contents can be in an entirely different order than one generated previously.
    This isn't a big problem, but we often like to do "diffs" on files to see what has changed. When we are diffing on a file generated from one developer to another, it is pretty much useless.
    Is there any way that the order of the exported data can be done in the same order from machine to machine?
    We do refresh our entire structure from pvcs - including our *.mwp file.
    Any tips?

    Hi,
    Yes, unfortunately, the SUN 1.6 JVM will reorder the entries of any HashMap - therfore any Java implementation that uses Maps may have a different iteration order than what was observed in the past 1.4 and 1.5 releases of the JVM. Going forward all implementationation code should be HashMap order agnostic or implement their own sort order or use an extended implementation like LinkedHashMap which maintains insertion order.
    thank you
    /michael
    www.eclipselink.org

  • Xml file to B1 Sales Order

    Hi,
    I'd like to read xml file which is not standard B1 xml file and created new sales order.
    Thi is a data mapping xsl tempate
    <xsl:template match="b1im:B1IMessage/b1im:Body/b1im:Payload[./@ObjectTypeId=&apos;Z.F.AnySystem_FileIn&apos;]">
      <BOM>
        <BO>
           <AdmInfo>
              <Object>17</Object>
             <Version>2</Version>
          </AdmInfo>
         <Documents>
           <row>
              <DocDate>20100617</DocDate>
             <DocDueDate>20100617</DocDueDate>
            <CardCode><xsl:value-of select="Envelope/Documents/PurchaseOrder/TradingPartnerID"></xsl:value-of></CardCode>
         </row>
       </Documents>  
       <Document_Lines>
         <row>
         <xsl:for-each select="Envelope/Document_Lines/row">
         <ItemCode><xsl:value-of select="ItemCode"></xsl:value-of></ItemCode>
         <Quantity><xsl:value-of select="Quantity"></xsl:value-of></Quantity>
         <Currency>USD</Currency>
            <Rate>1</Rate>
                                  <TaxCode>0</TaxCode>
                             </xsl:for-each>
                             </row>
                        </Document_Lines>
                   </BO>
              </BOM>
         </xsl:template>

    And This is a xml details to read
    <ENV:Envelope TransactionID="234567" xmlns:ENV="schemas-hiwg-org-au:EnvelopeV1.0">
         <ENV:SenderID>ABC</ENV:SenderID>
           <ENV:RecipientID>XYZ</ENV:RecipientID>
           <ENV:DocumentCount>1</ENV:DocumentCount>
         <Documents>
              <PurchaseOrder RecordType="10" xmlns="schemas-hiwg-org-au:PurchaseOrderV2.0">
                     <TradingPartnerID>C42000</TradingPartnerID>
                     <MessageType>ORDERS</MessageType>
                     <VersionControlNo>2.0</VersionControlNo>
                     <DocumentType>220</DocumentType>
                </PurchaseOrder>
           </Documents>     
           <Document_Lines>
              <row>
                   <ItemCode>Nylon Black</ItemCode>
                   <Quantity>2</Quantity>
              </row>
              <row>
                   <ItemCode>Nylon White</ItemCode>
                   <Quantity>3</Quantity>
              </row>
         </Document_Lines>
      </ENV:Envelope>
    But this event is fileted with this result message
    "Mapping from LocalObjectType Envelope to object Type failed."
    I've tried to use ENV:Envelope logical objecttype instead of Envelope. But result is same.
    I hope someone can help me
    Thanks

  • How to view XML file generated by Reports 6i in browser ?

    Hi,
    I have generated a report in XML file format. However, when I open this file in a browser, it displays the contents in the browser in the following fashion :
    <?xml version="1.0" ?>
    - <!-- Generated by Oracle Reports version 6.0.8.8.3
    -->
    - <MSIO1O>
    - <LIST_G_CMEM_CD>
    - <G_CMEM_CD>
    <STATUS>Inactive</STATUS>
    <CODE1>106</CODE1>
    <NAME1>-</NAME1>
    <STATUS_DATE1>11-OCT-00</STATUS_DATE1>
    <EXCHANGE1>BSE</EXCHANGE1>
    </G_CMEM_CD>
    I want to display this content in a user-friendly mode. Because the user can not understand in the above format.
    Does IE or Netscape support the XML file ??
    I have heard that to view the XML file, one has to install XML Parcels. Is it true ??
    I am using Reports 6i & IE 5.0
    Your help will be appreciated.
    Thanks.
    M@yur
    null

    What you are seeing in your browser is XML.
    IE 4 and above will display the XML correctly.
    XML is not ment to be beautiful for this you get other formats HTMLCSS etc.
    To get XML to be more nicely output you need to apply XSL on top of it. You can specify XSL tag in the reports XML prolog property.

  • XML file for loading different classes in application ?

    Hi,
    I want to configure a small application ( a simulator ) using a XML file. The XML file determines the classes, whih should be loaded, and initialize the variables (values set in the XML files). I want to have different modules (same functionality, different implementations) and which module is loaded, is determined by the XML file ( a scenario ).
    I am not sure, how can I implement it ? Should I use Java Beans with XMLBeans ? Is there a standard way for doing this ? I will appreciate any advice.
    Thanks in advance.
    Bobi

    I used the java class loading capability using the following code snippet
    public void loadPlugin(String entrypoint, String name)
              Plugin plugin;
              Class c;
              try
                   c = Class.forName(entrypoint);
                   plugin = (Plugin)c.newInstance();
                   plugin.setName(name);
                   plugin.setConnection(DBHandler.getConnection());
                   plugin.setParameters(_pluginReader.readParameters(name));
                   if (plugin != null && _plugins != null)
                        _plugins.add(plugin);
              catch (Exception e)
                   e.printStackTrace();
         }I have to add that I have an interface called Plugin that specifies the above mentioned method stubs.

  • How to change XML version in outbound XML file generated in XI

    Hi, I am getting following two records in the beginnning of my out bound XML file.
    <?xml version="1.0" encoding="utf-8" ?>
    <ns0:MT_WPUUMS01_Salesdata xmlns:ns0="http://ws-sapretail-pos.com/salesdata">
    Is there any control in XI to modify these two lines, in outbound files.
    Also, for inbound files, is there any way to process messages successfully, even if XML files from other systesm comes in different formats (xml version tag and nso tag lines)

    <?xml version="1.0" encoding="utf-8" ?>
    <ns0:MT_WPUUMS01_Salesdata xmlns:ns0="http://ws-sapretail-pos.com/salesdata">
    these two lines will be added when you create the  Message type name
    MT_WPUUMS01_Salesdata  is the message type name
    http://ws-sapretail-pos.com/salesdata"> is the name of your namespace......
    so if you want to chage these two lines in each XML build your MT and namespace accordingly.......
    even when you are importing the XML from o ther systems, you dnt have to worry about these tages as you import them in external definitation and select them only in message interface........should not be a problem if you import the XML from other systems
    whole conecpt is when you add these two lines it will convert the XSD to XML so when you have the XML form other system you only need to crer ate the WSDL out of it...
    let me know if i am not clear or if i understood your question wrong....

  • Reading XML file generated through XMLGEN

    Hi,
    I have the following problem and I hope someone can give me an advise.
    I generated a simple XML document through the packages XMLGEN.
    This document is stored in a table in CLOB column.
    After this document has been processed (changed) from the web server's ASP pages, I want to read this (changed) XML document (again in the a table in a CLOB)
    to compare it against relational data.
    There is not external DTD or schema of this XML.
    I was thinking to read the elements from the XML/CLOB one-by-one and process them as needed.
    I'm reading already over one week the Oracle manuals, but I can't find any good samples that would help me.
    Does anyone know a nice PL/SQL sample to solve this problem?
    Here is a sample of the XML data:
    >>>>>>>>>
    ?xml version="1.0"?>
    <Subscriber-Detail>
    <Subscriber>
    <Member-ID>0250149556</Member-ID>
    <DIVISION-ID>003</DIVISION-ID>
    <UNIT-ID>004</UNIT-ID>
    <Last-Name>PUBLIC</Last-Name>
    <First-Name>JOE</First-Name>
    <Birthday_DT>29/06/1961</Birthday_DT>
    <Address>2200 PEATON PLACE</Address>
    <City>WOLVERHAMPTON</City>
    <Salary>71500.00</Salary>
    <Smoker_YN>Y</Smoker_YN>
    </Subscriber>
    </Subscriber-Detail>
    <<<<<<<
    Environment: Oracle 9i R2 - no JAVA, pure PL/SQL
    Any help much appreciated.
    TIA
    Thanks
    Fred

    Will these help ?
    How to use PL/SQL to read and manipulate data from a xml file
    How to Read XML tags....

  • How to rename the XML file generated during payment run

    Hi,
    We have a requirement to rename the XML file during payment run, format some fields of XML file and upload it onto Application server with the new XML file name. All these activities need to be performed during payment run F110.
    Please let know if there is any User exit or Enahancement to achieve these functionalities.
    Thanks !
    Regards,
    Ravinder

    Hi,
    We have achieved the second functionality also i.e. populating the additional nodes or custom nodes of an extended tree.
    This is what we have done...
    We have copied the standard exit FM: DMEE_EXIT_TEMPLATE_EXTEND_ABA into a custom one and assigned it to each (custom) node in 'Source' tab. Line item text FPAYP-SGTXT will not be returned via this FM, so we fetched it explicitly from BSEG table using the input FPAYP-DOC2R (this field will have the company code, document number, fiscal year and item no, all concatenated).
    Thanks,
    /Ravinder

  • Error while deploying ear file generated from weblogic to ocj4

    Hi All,
    I have an .ear file which has been generated from weblogic server.I tried to deploy it on ocj4 aby created a new project in eclipse and deploying it on ocj4.
    When I try to run my project it gives me an error:
    2008-12-15 19:13:54.811 NOTIFICATION J2EE JSP-0008 Unable to dispatch JSP Page : Exception:oracle.classloader.util.AnnotatedLinkageError: duplicate class definition: javax/xml/rpc/Service
         Invalid class: javax.xml.rpc.Service
         Loader: Test.web.TSOptyQGateWeb:0.0.0
         Code-Source: /C:/OC4J_10.1.3.4/j2ee/home/applications/Test/TSOptyQGateWeb/WEB-INF/lib/jaxrpc.jar
         Configuration: WEB-INF/lib/ directory in C:\OC4J_10.1.3.4\j2ee\home\applications\Test\TSOptyQGateWeb\WEB-INF\lib
         Dependent class: oracle.jsp.runtimev2.JspPageInstFacade$DeclaredAction
         Loader: oc4j:10.1.3
         Code-Source: /C:/OC4J_10.1.3.4/j2ee/home/lib/ojsp.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\OC4J_10.1.3.4\j2ee\home\oc4j.jar
         The original class instance was defined in the shared-library oracle.ws.jaxrpc:1.1, and oc4j:10.1.3 does import that loader. This may be a search-order problem.
    Can anyone help??

    Hi,
    I checked the log-files, but there are no helpful informations, but:
    07/04/23 12:08:04 -  Start updating EAR file...
    07/04/23 12:08:04 -  start-up mode is lazy
    07/04/23 12:08:20 -  com.sap.engine.deploy.manager.DeployManagerException: com.sap.engine.services.deploy.container.DeploymentException: Cannot update archive file Docsndownloads.war
                         com.sap.engine.services.deploy.ear.exceptions.BaseIOException: Error during replacement of substitution values. Reason:
                          java.io.IOException: Stream closed
    and
    Apr 23, 2007 12:08:20... Error: Aborted: development component 'Dokusunddownloads'/'sap.com'/'localhost'/'2007.04.23.12.07.47'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy API:
    com.sap.engine.deploy.manager.DeployManagerException: com.sap.engine.services.deploy.container.DeploymentException: Cannot update archive file Docsndownloads.war
    com.sap.engine.services.deploy.ear.exceptions.BaseIOException: Error during replacement of substitution values. Reason:
    java.io.IOException: Stream closed
    thanks,
    Lu

  • DTD for deployment  xml file for providers

    Hi all,
    where can I find the DTD for the deployment file that is to be used in .par file for the custom providers for Portal Server 6.0 and 6.2. ?
    Thanks,
    Klara

    in case you mean portlets then it is:
    portlet.xsd contains reference to http://www.w3.org/2001/xml.xsd.
    in case you mean providers, e.g. smpleMailservice:
    /ps-base/SUNWam/dtd/sms.dtd
    or
    /ps-base/SUNWam/dtd
    with all the named dtd's
    cheers,
    Ulf

  • How to rerun P45  once the live run happend and XML files generated

    Hi All,
    I have run the P45s live run and upon clicking on the B2A manager button, it has taken me to the efiling screen but the efiling has ended up with connection error with the Government Gateway due to the expiry of certificate
    We have now installed a new certificate and while trying to submit the P45s we have an issue.
    I have reset the IT65 to original status by deleting the OT record that was created and the deletion of Leaver date.
    It allows me to run the P45s but the B2A manager button does not appear.
    How do i proceed with efiling.  Please advise.
    Many Thanks in advance
    Veena

    Hi Veena,
    An earlier post by you regarding P45 is as below
    Starter report P45(3) / P46 efiling for UK
    from my understanding though i have not worked on GB Payroll you have said that you deleted IT 65 details of leaver,however there must be clusters generated in system from where the earlier data needs to be deleted and may be that is why you are facing the issue.
    In Indian payroll when we execute text file for efiling of tax after challan mapping all the data compiles and sits in PCL cluster and therefore we are unable to generate form 16 with proper output,here we delete the clusters and rerun again the mappings and then check form 16.
    Hope this might help you,Experts have suggested you earlier also,they may correct me for this.
    Salil

  • Generating VO XML File wih alias names for the view attributes

    Hi,
    I am using the WriteXML() method on a VO to generate the XML. I need to map the generated xml to a rtf template and get the PDF generated. I have some view attributes for those I want to give a meaningful alias names, and for the repeated columns say "Name" for each Name field that I select from different tables it gets reflected as Name, Name1 and so . I want to give them proper alias names like Name as Buyer_Name and Name1 as Supplier_name so that its easy to comprehend and also easier to map to the rtf template. I gave alias names to those columns But the alias names of the view attributes are not getting reflected in the XML file generated. The XML tags are still on the attribute Name and not the aliases. Can someone suggest a workaround for this
    Thanks a lot in advance
    Rakesh

    Just to confirm that this is not a Library or deployment setup problem, Now, I changed the deployment scope to include business components in the ViewController to just to be sure it was being picked up in the ViewController too. I Created a separate AppModule in the ViewController and Added the VO to it, It Ran Properly including the Addition and Commit Control.

Maybe you are looking for

  • IF EXIT and Checkbox.. need help

    Hi there, i have a Problem. I am new in ABAP and try out now a lot of thing. Now i have a problem and i dont know how to solve it... Here is my Code.. After that i tell you my problem. *& Report  Z_TEILNEHMERLISTE_EINFUEGEN REPORT  Z_TEILNEHMERLISTE_

  • Line Items in PO..

    Hi Guys, I want to clarify few things. We are receiving Raw coal, Limestone, clincker...and have different PO for different Items. When material is coming on weigh bridge there is one line item created for every trip  in the PO for the particular mat

  • Just to say thanks to the Ad

    SSR and friends, You guy dealt professionnaly with my rants during my frustration with my Zen Touch. I got it replaced by Tech Support. It works great now. I went ahead and bought a second one that came in yesterday. Both work great so far. Thank you

  • Can I boot into a PC laptop on an iMac using Bootcamp through a eSATA to Thunderbolt connection?

    Can I boot into a PC laptop on an iMac using Bootcamp through a eSATA to Thunderbolt connection?  Work forces you to use their computers, but it would be nice to use an iMac and extra displays while at home.

  • Zoom into selection, progressively?

    Can I setup Illustrator to zoom in and out from the selected object(s) instead of mouse point on ALT and centre otherwise?