Need info on the request elements of OSM CreateOrderBySpecification websvc

We are planning to develop integration from siebel to osm using AIA . We are creating the mapping for OSM webservice called CreateOrderBySpecification which will create order in osm.The request of CreateOrderBySpecification webservice have an element called Data(of type xsd:add) which will included another xml in it and is dependent on the details of order specification which is also a part of request itself.Could anyone help us in what will be the content(i.e, the content of xml) of the data element of the request for CreateOrderBySpecification and how it will be decided, and what will be the corresponding fields in siebel from where we can get these values.

Hi,
The answers you seek are all in Siebel bookshelf:
Question 1: http://download.oracle.com/docs/cd/E14004_01/books/SystAdm/SystAdm_SrvrCompParam7.html#wp1008245
Question 2: http://download.oracle.com/docs/cd/E14004_01/books/SystAdm/SystAdm_SrvrInfAdm.html#wp1003500
Regards,
mroshaw

Similar Messages

  • I need to get the complete element including tag. How to parse this xml?

    I am sure there should be some solution to this. I have XML file like this
    <test>
    <data value="123" color="RED">
    <type>single</type>
    </data>
    <data value="13323" color="BLUE">
    <type>double</type>
    </data>
    </test>
    I need to parse this XML and get the data element(s). The problem is that I need to get the complete data element include tags like
    "<data value="123" color="RED"><type>single</type></data>". I need to parse the complete XML file and get every data element including tag and send it to another upstream process.
    Any solution to this will be appreciated. I am little familiar with SAX. Is there any solution around using xerces SAX parser.
    Other solution is also appreciated.
    Thanks

        DocumentBuilder builder = factory.newDocumentBuilder();
        document = builder.parse(srcFile);
        NodeList list = document.getElementsByTagName("data");
        Node node = list.item(0); // Loop this
        TransformerFactory tFactory = TransformerFactory.newInstance();
        Transformer transformer = tFactory.newTransformer();
        DOMSource source = new DOMSource(node);
        StreamResult result = new StreamResult(outputstream);
        transformer.transform(source, result);
    Using XSLT will be lot easier.No it won't. Extending DefaultHandler is easy.Do you really think so?
    Hardly 10-15 lines.

  • Need urgent help :'The requested resource does not exist error'

    Hi All,
    I am getting 'The requested resource does not exist error' when trying to acess http://machinename:50000/irj
    Even when i access http://machinename:50000, i get the same 'The root directory does not exist' error. I checked in visual admin, there is no other application deployed except my application.
    Any clues? Pls help
    thanks
    bhawna

    HI ,
    Did succeed to solve your problem. I am running into same problem.
    Any help is welcome.
    Thank u very much.

  • Need to eliminate the request existing from earlier user and create my own

    Hi gurus!
    I have a program in SBX which I have to make changes to . When I go in the change mode a pop up screen pops out saying that u201CA new task will be created for the user  XXXX: u201Cand the request number is given  with desc. This particular user is no longer with us and the changes he made to the report is no longer required . So I am not sure If I should be going ahead with adding my request under his and go ahead with changes. What I have thought is to copy the PRD copy in SBX so that the changes are overwritten and the earlier existing request goes of and I create a new request . How do I copy the report from the prod so that I donu2019t get the request that has been there from the provious owner . I want to completely wipe of the request he had created. Even if I donu2019t have to copy from PRD how do I just eliminate his request and generate my own request fresh.
    Thanks

    >
    Aarav  Agnihotri wrote:
    > Yes , Retriving the through version management is ok but I wanted to get the latest version that is on PRD and then make the changes to that . SO how do I import it from PRD and then start making chnages.
    >
    > Thanks
    Use version management in PRD to determine the transport number and then use version management in DEV to restore to that version.
    Rob

  • I am building a new PC and need to swap the PS Elements 10 Licence from the old machine to the new - the old machine will be scrapped

    I am building a replacement PC, and want to install PS Elements 10 on the new machine. It is currently on the old machine and that machine will be scrapped once the new one is running - how do i go about this ?

    You are allowed to have the software installed and activated on two machines, but since you are scrapping the current one, you should deactivate the software on it if you are able to.... open the program and choose Help -> Deactivate.   If you are not able to access the machine to do this, then you should contact Adobe Support by chat or phone and have them do it.... Contact Customer Care
    All you need to do is install the software on the new machine (assuming it is compatible).  If you need to download PSE10 you can find it thru the following page...
    Download Photoshop Elements products | 11, 10
    You will need the serial number to activate the software.  If you do not have it at hand, you might be able to find it in your Adobe account online.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Need to exclude the empty elements after mapping in xslt.

    Hi Team,
    I have a requirement. I need to invoke a wsdl which will have some po details. I'm using transformation to map the value from my local bpel variable to invoke variable. It is mostly a one-one mapping. no functions no looping and no complex transformation. Now the requirement is that I need to only send the elements which has the value also to add, there is no particular element which can be empty. There can be three elements empty or four or any. I need to map all and then I need to send only the elements those has values. Below is my mapping.
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
      <mapSources>
        <source type="XSD">
          <schema location="POTest.xsd"/>
          <rootElement name="POTestProcessResponse" namespace="http://xmlns.oracle.com/POTest"/>
        </source>
      </mapSources>
      <mapTargets>
        <target type="XSD">
          <schema location="POTest.xsd"/>
          <rootElement name="POTestProcessResponse" namespace="http://xmlns.oracle.com/POTest"/>
        </target>
      </mapTargets>
      <!-- GENERATED BY ORACLE XSL MAPPER 10.1.3.3.0(build 070615.0525) AT [THU OCT 17 10:53:26 GMT 2013]. -->
    ?>
    <xsl:stylesheet version="1.0"
                    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
                    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
                    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
                    xmlns:ns1="http://xmlns.oracle.com/POTest"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:ora="http://schemas.oracle.com/xpath/extension"
                    xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
                    xmlns:ns0="http://www.w3.org/2001/XMLSchema"
                    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
                    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
                    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
                    exclude-result-prefixes="xsl ns1 ns0 xref xp20 bpws ora ehdr orcl ids hwf">
      <xsl:template match="/">
        <ns1:POTestProcessResponse>
          <xsl:attribute name="OrderDate">
            <xsl:value-of select="/ns1:POTestProcessResponse/@OrderDate"/>
          </xsl:attribute>
          <ns1:name>
            <xsl:value-of select="/ns1:POTestProcessResponse/ns1:name"/>
          </ns1:name>
          <ns1:street>
            <xsl:value-of select="/ns1:POTestProcessResponse/ns1:street"/>
          </ns1:street>
          <ns1:city>
            <xsl:value-of select="/ns1:POTestProcessResponse/ns1:city"/>
          </ns1:city>
          <ns1:state>
            <xsl:value-of select="/ns1:POTestProcessResponse/ns1:state"/>
          </ns1:state>
          <ns1:zip>
            <xsl:value-of select="/ns1:POTestProcessResponse/ns1:zip"/>
          </ns1:zip>
        </ns1:POTestProcessResponse>
      </xsl:template>
      </xsl:stylesheet>
    Here I just mentioned only some elements but there are lot of other elements which can also be empty. If I keep on putting an if condition for each and every element it will messup the code. which I don't want to do due to lot of elements that needs to be checked. I tried with following templates.
    1)
    <xsl:template match="*[not(child::node())]"/>
      <xsl:template match="@*|node()">
    <xsl:if test=". != '' or ./@* != ''">
       <xsl:copy>
         <xsl:apply-templates select="@*|node()" />
       </xsl:copy>
    </xsl:if>
    </xsl:template>
    2)
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
      <xsl:strip-space elements="*"/>
      <xsl:template match="node()|@*">
        <xsl:copy>
          <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
      </xsl:template>
      <xsl:template match="*[not(node())]
      |
       *[not(node()[2])
       and
         node()/self::text()
       and
         not(normalize-space())
      "/>
    3)
    <xsl:template match="/">
        <xsl:apply-templates select="*"/>
      </xsl:template>
      <xsl:template match="*">
        <xsl:if test=". != ''">
          <xsl:copy>
            <xsl:element name="name()">
              <xsl:copy-of select="@*"/>
              <xsl:apply-templates/>
            </xsl:element>
          </xsl:copy>
        </xsl:if>
      </xsl:template>
    But none of them is working. Kindly help. It is the only issue which is blocking.
    Help is greatly appreciated.
    Regards,
    Venkatesh.

    I received the following errors:
      Line Number:(55) : Error: "xsl:strip-space" XSL Element Currently not Supported
      Line Number:(31) : Error: <xsl:template match="/"> and <xsl:template name="..."> are the only permitted <template> elements in the XSL
      Line Number:(53) : Error: <xsl:template match="/"> and <xsl:template name="..."> are the only permitted <template> elements in the XSL
      Line Number:(56) : Error: <xsl:template match="/"> and <xsl:template name="..."> are the only permitted <template> elements in the XSL
    Below is the complete transformation code.:
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper
      <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
      <mapSources>
        <source type="XSD">
          <schema location="POTest.xsd"/>
          <rootElement name="POTestProcessRequest" namespace="http://xmlns.oracle.com/POTest"/>
        </source>
      </mapSources>
      <mapTargets>
        <target type="XSD">
          <schema location="POTest.xsd"/>
          <rootElement name="POTestProcessResponse" namespace="http://xmlns.oracle.com/POTest"/>
        </target>
      </mapTargets>
      <!-- GENERATED BY ORACLE XSL MAPPER 10.1.3.3.0(build 070615.0525) AT [THU OCT 17 10:20:35 GMT 2013]. -->
    ?>
    <xsl:stylesheet version="1.0"
                    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
                    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
                    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
                    xmlns:ns1="http://xmlns.oracle.com/POTest"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:ora="http://schemas.oracle.com/xpath/extension"
                    xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
                    xmlns:ns0="http://www.w3.org/2001/XMLSchema"
                    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
                    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
                    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
                    exclude-result-prefixes="xsl ns1 ns0 xref xp20 bpws ora ehdr orcl ids hwf">
      <xsl:template match="/">
          <ns1:POTestProcessResponse>
          <xsl:attribute name="OrderDate">
            <xsl:value-of select="/ns1:POTestProcessRequest/@OrderDate"/>
          </xsl:attribute>
          <ns1:name>
            <xsl:value-of select="/ns1:POTestProcessRequest/ns1:name"/>
          </ns1:name>
          <ns1:street>
            <xsl:value-of select="/ns1:POTestProcessRequest/ns1:street"/>
          </ns1:street>
          <ns1:city>
            <xsl:value-of select="/ns1:POTestProcessRequest/ns1:city"/>
          </ns1:city>
          <ns1:state>
            <xsl:value-of select="/ns1:POTestProcessRequest/ns1:state"/>
          </ns1:state>
          <ns1:zip>
            <xsl:value-of select="/ns1:POTestProcessRequest/ns1:zip"/>
          </ns1:zip>
        </ns1:POTestProcessResponse>
      </xsl:template>
        <xsl:strip-space elements="*" />
    <xsl:template match="*">
    <xsl:if test=".!='' or count(@*)!=0">
      <xsl:copy>
       <xsl:apply-templates select="*|@*|text()" />
      </xsl:copy>
    </xsl:if>
    </xsl:template>
    <xsl:template match="@*">
    <xsl:copy-of select="." />
    </xsl:template>
    <xsl:template match="text()">
    <xsl:value-of select="." />
    </xsl:template>
    </xsl:stylesheet>

  • Need info on the approach for building admin forms for authoring

    Hi,
    I have a requirement to store the content in the content repository. I have two levels of data to be stored i.e. continents & countries; both continents & countries have their individual properties; continent contains countries node. I need to build a mechanism to store the content at a particular location in the JCR. The content authors should be able to add, edit or delete the continents & countries.
    What's the best way to build this admin form? Should the custom node types be created? Should a custom action type to be built? To support dynamism on UI i.e. add, edit & delete in a single form - how can it be done efficiently?
    If someone can provide me pointers, I will start with my build. Let me know if you need more information.
    Thanks,
    Chetanya

    Justin,
    The approach you listed sounds easy to implement.
    However I want to understand why out of all we choose cq:Page and why not nt:unstructured or sling:orderedFolder? Can sorting be enabled in this case?
    Also I have various scenarios where I need to store different form of data. Another example is storing product information in a alphebetical manner. There are lot of products to be stored and needs to be displayed in a tab format. The tab looks something like this A-E, F-L, M-S, T-Z, which should be configurable. Do you recommend creating one page per alphebet e:g A, B, C... and add all products (component) starting with A under page A, and so on? Or is there a better way to implement?
    Can something like calendar event be used here where in year, month and day node gets created first and then the event node is added. If so, in the above scenario how can the nodes A, B, C... be autocreated when products are added? Also the products need to be always sorted.
    Thanks,
    Chetanya

  • Need info about the parameter _FIX_CONTROL in a BW environment

    Hi ,
    I have done some research about the parameter FIXCONTROL and went through the SAP note 1165319.
    We have a task at hand where SAP has recommended a new value to be added to this parameter in a BW production environment.
    Now in the above note there are an entire set of values which this parameter can take up.
    I have understood to some extent that this has to do with this Fixes if case of any issues.
    last month we have upgraded the oracle version of the database from 10.2.0.2 to 10.2.0.4.
    Can anyone help me in understanding what this MergeFix is all about?
    I need to better understand this concept.
    Thank you.
    Regards,
    Hari Kishan.

    Hello,
    still not sure if I fully understood your question; but the recommended approach regarding patches is:
    1) Apply all the interim patches recommended by SAP. For Oracle 10.2.0.4 these will those from SAP note 1137346. The merge fix from SAP note also 1165319 is mentioneded there.
    And by the way, SAP note 1137346 is updated about once a month; new patches may be added, old ones may be removed. SAP recommends to follow accordingly; but if there aren't any problems, you might want to you keep your current state for a longer period.
    2) Read all the SAP notes mentioned there. You may have to do additional tasks like setting Oracle parameters, FIXCONTROL or others. The value you have to set now may or may not be mentioned in one of these notes, I can't know.
    3) If you encounter some problem, first search in SAP notes, or if necessary open a support call with SAP. You may then have to apply additional patches and set addtional values for FIXCONTROL.
    And yes, this way the list of required patches may become specific to each customer, as customer requirements are specific.
    But it would be difficult to find the exact list of needed patches in advance.
    I think a BW consultant who is familiar with Oracle installations will tell you something similar. One who is very experienced in your scenario might also be able to recommend additional patches in advance.
    regards

  • Need info about the integration Process.

    HI ,
    I would like to know about the different components of Integration Process like about the Receiver etc..
    and how do we relate the properties of each component with the container.
    Thanks in advance

    hi Syed
    An integration process is an executable, cross-system process for processing messages. In an integration process you define all the process steps that are to be executed and the parameters relevant for controlling the process.
    You implement integration processes when you want to define, control, and monitor complex integration processes that extend across enterprise and application boundaries. The design and processing of integration processes is also known as cross-component Business Process Management (cross-component BPM, ccBPM).
    http://help.sap.com/saphelp_nw04/helpdata/en/68/6bfd3f9149ca42e10000000a1550b0/frameset.htm
    follow this thread to learn how to define an IP
    http://help.sap.com/saphelp_nw04/helpdata/en/68/6bfd3f9149ca42e10000000a1550b0/frameset.htm
    You use a correlation to assign messages that belong together to the same process instance. A correlation joins messages that have the same value for one or more XML elements. A correlation is therefore a loose coupling of messages: at design time, it enables you to define which message a receive step must wait for, without knowing the message ID
    http://help.sap.com/saphelp_nw04/helpdata/en/68/6bfd3f9149ca42e10000000a1550b0/frameset.htm
    regards
    sandeep
    If helpful reward points

  • Need info about the IOS for 4503

    Hi There,
    we are running a cisco 4503 with bootflash:cat4000-i5s-mz.122-20.EW4.bin  IOS on that, we are informed to upgrade the IOS on that. However, no info on which IOS has to be deployed on that. Hence, can some one please suggest the latest and upgraded IOS for the Cisco 4503 switch.
    The memory details are below
    Switch#  Show verion
    Cisco Internetwork Operating System Software
    IOS (tm) Catalyst 4000 L3 Switch Software (cat4000-I5S-M), Version 12.2(20)EW4, RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2006 by cisco Systems, Inc.
    Compiled Fri 13-Oct-06 11:35 by tinhuang
    Image text-base: 0x00000000, data-base: 0x011F879C
    ROM: 12.2(31r)SG2
    Dagobah Revision 226, Swamp Revision 34
    PT_HE_Main_110.254 uptime is 4 weeks, 1 day, 18 hours, 33 minutes
    System returned to ROM by reload
    System restarted at 17:10:55 IST Mon Feb 24 2014
    System image file is "bootflash:cat4000-i5s-mz.122-20.EW4.bin"
    cisco WS-C4503 (MPC8245) processor (revision 4) with 524288K bytes of memory.
    Processor board ID FOX103809BG
    MPC8245 CPU at 400Mhz, Supervisor V
    Last reset from Reload
    156 Virtual Ethernet/IEEE 802.3  interface(s)
    98 Gigabit Ethernet/IEEE 802.3 interface(s)
    511K bytes of non-volatile configuration memory.
    Configuration register is 0x2101
    Switch # dir
    Directory of bootflash:/
        1  -rwx    11343796   Dec 5 2006 11:28:14 +05:30  cat4000-i5s-mz.122-20.EW4.bin
    59244544 bytes total (47900620 bytes free)
    Switch #
    Thank you
    Peter

    Latest and greates IOS selection menu can be found here.
    Make sure you take the time to read the Release Notes.  

  • Need Info about the E71

    Hi i am planning to buy Nokia E71 , I just need to be sure if i can use the sound recorder without the limitation of length because i want to use this phone to recoard my lessons at school. Thanks
    Solved!
    Go to Solution.

    According to the user's manual and the help utility of the application, the upper limit is 60 minutes, presumably regardless of the available memory.
    Please note that there are two choices in relation with the record quality, high and MMS compliant. I would try both to see which one is more appropriate.
    I haven't experienced with it.
    mgoksoy

  • Need info regarding the infoobjects

    Hi All,
    My question is:
    when we display where used list for an infocube(an example), it will display the list of queries where it is been used in the system in the info-object format.(BW object list format like 4EPSFH54S2SE etc.,)
    Using this information how to find the technical name or the description of this query.
    Thanks with regards,
    Vinay

    you can use the table RSRREPDIR to get the necessary information...
    rgds, Ghuru

  • Need  info about the  Netweaver in BI certificate

    Hello, all,
    As Ravi said, there are 8 questions in BI certification about Netweaver. can any one give me some tips how to prepare this parts?
    I lose the link to the thread of Ravi, I can not find his email address.
    if you aosl have his ppt, could you please send a copy to me?[email protected]
    Thnaks a lot
    Ravi wrote in another thread:
    These are the sections that would be tested in the certification exam.
    1) Data Modeling --> 8 questions (BW 330 covers these questions)
    <b>2) Netweaver - Technical scenarios --> 8 questions (the PPT that i sent would cover this)</b>
    3) Authorization --> 4 questions (BW365)
    4) Warehouse Management --> 20 questions (BW310)
    5) Extraction --> 12 questions (BW340, 350)
    6) Reporting --> 20 questions (BW305, 315)
    7) BPS --> 8 questions (BW370 or TBW45)

    Can any one help me?

  • Need info on the class that is used for BUILHEADER Genil query

    Hi All,
    Can some one pls let me know the class that is called by executing the query BUILHEADER.
    I m facing a strange error, everytime when i search and open any account other than sold to party in WEBUI, I am noticing soldto party in the Roles Assignment block. But the business partner in the backend is not having hte role sold to party. i am not finding how this defaulting is happening automatically.
    Any pointers/clues on this will be very very helpful.
    Thanks,
    Udaya

    Hello Udaya,
    The class is CL_BUIL_HEADER Copy it and redifine method GET_RESULT_TABLE.
    then goto SPRO I'm not remember exactly where you should change the SAP class into yours.
    Sorry it was on ICWC5.0 and not CRM2007
    Eli Steklov
    Edited by: Eli Steklov on Jul 16, 2008 3:52 PM

  • Need info on the Delta Issue

    Hi Experts,
    I initialized the delta load for MAster Data Extractor and got in 500k records into BW system.Immediately after this was done completed executed the Delta Load and i see another 15k records coming.
    How is this possible? I will appreciate if anybody can explain this.From my understanding  once you run the INIT and then execute the Delta it should be bringing in only deltas.In this i am pretty sure nobody could have changed 15K records within few minutes.
    Thanks in Advance

    Hi kedar,
    Yes it did get 0 records,when i ran it second time.
    But my question is why did it get so many records for Delta when i ran the delta immediately after running the INIT.I was expecting either 0 records or some small number when i ran the delta but never expected 100K records in delta.Please help me understand here if i am missing anything.
    thanks

Maybe you are looking for

  • My Macbook keeps glitching and freezing

    Since March 18, 2013 I have been dealing with glitches from my MacBook Pro. It freezes up and won't allow me to move my mouse or anything. Is this occuring with anyone else? The screen also glitches and beeps repeatedly at me because I have to use th

  • Unknown error code (-39)

    So I was DLing a podcast recently, and as it was DLing, my computer froze. Now, when I try to download it, I get this error: "There was a problem downloading 'title'. An unknown error occurred (-39). Please check that the URL is correct and the conne

  • Outlook credential problem

    We migrated our Exchange server from 2007 to 2013. My email worked fine for two months. Now I have a problem. A couple times per day, my outlook 2013 prompts me for credentials. In most cases, this problem is fixed automatically. Even I don't enter t

  • SQL Ports For SCCM 2012 (Stand alone Server)

    Is there any reason to open port 1433 and 4022 if the SCCM server is a stand alone? It keeps displaying the error in the monitoring tab if i don't open the ports. The SQL  and SCCM  are on the same server.

  • JDeveloper 10.1.2

    Good Afternoon, When I install JDeveloper 10.1.2 I get issues with my bc4j.ear path. My bc4j.ear is located in my J: but it shows in an I: drive that I dont even have. I went to Tools --> Embedded OC4J Server Preferences --> Applications --> bc4j -->