How to transform with xquery from CDATA to XML

Hi everyone
I want to transform from CDATA to XML and I don´t know how to do.
anyone can help me please?
I'm using OSB OEPE PS3, I have artifacts: person.PROXY, person.BIZ, BIZ-Person.WSDL, PROXY-Person.WSDL, Person-response.xq and Person.xsd.
I Use Message Flow Within Route, Routing (Request and Response Actions)
To Request Xquery transformation is ok, for Response Action I need help. I receive a String and inside with CDATA:
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
+<soapenv:Body>+
+<executeResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">+
+<executeReturn xsi:type="xsd:string">+
+*<![CDATA[<example-data rows="1"><person><id>123</id><name>JHON</name><surname>MAGNESS</surname>+*
*+<code>123456789V</code></person></example-data>]]>+*
+</executeReturn>+
+</executeResponse>+
+</soapenv:Body>+
+</soapenv:Envelope>+
I want to map from CDATA to XML like this (Person.xsd):
<xs:schema xmlns="http://www.domain.com/XSD/Persons" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://www.domain.com/XSD/ABCD" targetNamespace="http://www.domain.com/XSD/Persons" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://www.domain.com/XSD/ABCD"
<xs:complexType name="Persons">
          <xs:sequence>++
               <xs:element name="id" type="xs:string"/>
               <xs:element name="surname1" type="xs:string" minOccurs="0"/>
               <xs:element name="surname2" type="xs:string" minOccurs="0"/>
               <xs:element name="name" type="xs:string" minOccurs="0"/>
               <xs:element name="code" type="xs:string"/>
          </xs:sequence>
     </xs:complexType>
Edited by: user10070593 on Aug 29, 2012 10:58 PM
Edited by: user10070593 on Aug 29, 2012 10:58 PM
Edited by: user10070593 on Aug 29, 2012 11:00 PM

Hey Patrick / Vlad thank you very much for your help :)
I have solved it like this:
Within my proxy in Message Flow (*using Routing -- Route -- Response Action*)
I'm using the elements Assing and Replace
In Assing element (expression: Person-response.xq, variable: varBStoPS)
In Replace element (xpath : executeResponse/executeReturn/text() , in Variable: body, expression:
*$varBStoPS*)
Now, within Person-Response.xq , I am using the parameter: *$anyType1*, but this is a string, I don´t know to use a FOR loop in Xquery, as I can apply it to the XML mapping (Person.xsd)?, Knowing I get the list:
*+<example-data rows="1"><person><id>123</id><name>JHON</name><surname>MAGNESS</surname>+*
*+<code>123456789V</code></person></example-data>+*
Person.xsd:
<xs:element name="processResponse">
          <xs:complexType>
               <xs:sequence>
                    <xs:element ref="ns1:HeaderMsgABCD"/>
                    <xs:element name="bodyResponse">
                         <xs:complexType>
                              <xs:sequence>
                                   <xs:element name="PersonsCollection">
                                        <xs:complexType>
                                             <xs:sequence>
          <xs:element name="Persons" type="Persons" minOccurs="0" maxOccurs="unbounded"/>
                                             </xs:sequence>
                                        </xs:complexType>
                                   </xs:element>
                              </xs:sequence>
                         </xs:complexType>
                    </xs:element>
                    <xs:element ref="ns1:ErrorMsgABCD"/>
               </xs:sequence>
          </xs:complexType>
     </xs:element>
Person-response.xq:
xquery version "1.0" encoding "Cp1252";
(:: pragma parameter="$anyType1" type="xs:anyType" ::)
(:: pragma bea:global-element-return element="ns0:processResponse" location="../XSD/ Person-response.xq" ::)
declare namespace xf = "http://tempuri.org/oracle/xquery/Person-response/";
declare namespace ns1 = "http://www.domain.com/XSD/ABCD";
declare namespace ns0 = " http://www.domain.com/XSD/Persons";
declare function xf:XQ_SEARCH_PERSONS_RESPONSE($anyType1 as element(*))
as element(ns0:processResponse) {
<ns0:processResponse>
<ns0:bodyResponse>
     <ns0:PersonsCollection>
<ns0:Persons>
<ns0:id>{ data(0) }</ns0:id>
<ns0:surname1>{ data(0) }</ns0:surname1>
<ns0:surname2>{ data(0) }</ns0:surname2>
<ns0:name>{ data(0) }</ns0:name>
<ns0:code>{ data(0) }</ns0:code>
          </ns0:Persons>
     </ns0:PersonsCollection>
</ns0:bodyResponse>
</ns0:processResponse>
declare variable $anyType1 as element(*) external;
xf:XQ_SEARCH_PERSONS_RESPONSE ($anyType1)
Edited by: chromosoma on Aug 30, 2012 12:47 PM
Edited by: chromosoma on Aug 30, 2012 12:50 PM
Edited by: chromosoma on Aug 30, 2012 1:00 PM

Similar Messages

  • How to transform data received from file adapter

    hi',
    I am reading the data from XML file using file adapter, now I want to write the same contents which I have read from this file to a different/new XML file, the issue is I am unable to perform a transform here, when I use a transform with source element as the output of the file read and target as the input to the new file it is writing an empty file,
    I have checked the audit trail which showsme that the transform is empty.
    please tell me how can I transform the element which I have received from one file to make them as input to next file
    thanks
    Yatan

    thanks James for input, this is my XML and XSD files
    XML file:
    <?xml version="1.0" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.example.org"
    targetNamespace="http://www.example.org"
    elementFormDefault="qualified">
    <emp>
    <name>yatan</name>
    <age>28</age>
    </emp>
    </xsd:schema>
    XSD File:
    <?xml version="1.0" encoding="windows-1252" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.example.org"
    targetNamespace="http://www.example.org"
    elementFormDefault="qualified">
    <xsd:element name="readfile">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="name" type="xsd:string"/>
    <xsd:element name="empid" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    I am reading XML file, I will describe my process.
    1.) File adapter>read operation ---> receive activity
    2.) Transform > source(receive input variable) <--->target(Invoke input variable)
    3.) File adapter > write operation ---> invoke activity
    Now when I am deploying this process it is sucessfully completing and able to read the file.
    when I check the audit trail receive activity shows XML data but when I check the transform it
    shows empty as below, however the write activity is performed which creates a xml file but no values in the elements
    transform in audit trail
    <Invoke_1_Write_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="readfile">
    -<readfile xmlns:ns0="http://www.example.org" xmlns="http://www.example.org">
    <ns0:name/>
    <ns0:empid/>
    </readfile>
    </part>
    </Invoke_1_Write_InputVariable>
    this is the code for my .bpel file
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Wed May 19 15:04:22 IST 2010
    Author: yatanveer.s
    Purpose: Empty BPEL Process
    -->
    <process name="ReadXMLFile2"
    targetNamespace="http://xmlns.oracle.com/ReadXMLFile2"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    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:ns4="http://xmlns.oracle.com/pcbpel/adapter/file/FileReadSync/"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:client="http://xmlns.oracle.com/ReadXMLFile2"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/file/ReadFile/"
    xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
    xmlns:ns3="http://www.example.org"
    xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/file/WriteFile/"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <partnerLink myRole="Read_role" name="ReadFile"
    partnerLinkType="ns1:Read_plt"/>
    <partnerLink name="WriteFile" partnerRole="Write_role"
    partnerLinkType="ns2:Write_plt"/>
    </partnerLinks>
    <variables>
    <variable name="Receive_1_Read_InputVariable"
    messageType="ns1:readfile_msg"/>
    <variable name="Invoke_1_Write_InputVariable"
    messageType="ns2:readfile_msg"/>
    </variables>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <receive name="Receive_1" partnerLink="ReadFile" portType="ns1:Read_ptt"
    operation="Read" variable="Receive_1_Read_InputVariable"
    createInstance="yes"/>
    <assign name="Transform_1">
    <bpelx:annotation>
    <bpelx:pattern>transformation</bpelx:pattern>
    </bpelx:annotation>
    <copy>
    <from expression="ora:processXSLT('Transformation_3.xsl',bpws:getVariableData('Receive_1_Read_InputVariable','readfile'))"/>
    <to variable="Invoke_1_Write_InputVariable" part="readfile"/>
    </copy>
    </assign>
    <invoke name="Invoke_1" partnerLink="WriteFile" portType="ns2:Write_ptt"
    operation="Write" inputVariable="Invoke_1_Write_InputVariable"/>
    </sequence>
    </process>

  • How to play with javascripts from command line?

    This is a problem that I always have no clue how to deal with.
    To begin with, take a look at this page: http://jsharer.com/file/1345737.htm
    If you click on "[TUTHE@ManYv][D`z][FLCL][05][H264_Vorbis][E4273181].mkv", after a little while a little window pops up and if you right click on the "点击此处开始下载", you can copy the direct download link.
    I previously used a simple bash script using curl to parse direct download links from this site. I like to do it at command line. It was easy because the link used to be directly shown in the page source code (though I had to call curl twice for it, it was fine.)
    But now I can't. It's all javascript. I ain't got no idea how to deal with this kind of stuff. I made my attempt to look at the page source, all I can tell is that the <div id="download_block"> part and the <div id="lord_content"> line seems to be important.
    I want to use my old good command line instead of click click click!
    Can somebody help me with this? Or please just give me some hints. It'd be fully appreciated. Thanks!

    If you know python, the package community/python-mechanize lets you automate a lot of this kind of thing. You can tell it to go to url so-and-so, simulate a click on the third link matching regexp such-and-such, preserving cookies the original page gave you, and so on.
    Has made most of my webpage scraping a hell of lot easier.
    EDIT: but I don't know whether it processes embedded Javascript, perhaps not.
    Last edited by Profjim (2009-09-03 11:22:37)

  • How JAVA works with collection from function

    All,
    I have a DB function which returns object collection of values. Could someone please tell me how java talks with the function and get the value?
    Thanks

    This is database function. my question is how java get those values from the function.
    Could you please post some sample code also?
    CREATE OR REPLACE
    Type T_PREO_RoleINFO is Object
    ROLE_ID NUMBER(10),
    ROLE_NAME VARCHAR2(20))
    CREATE OR REPLACE
    TYPE T_RoleInfo IS TABLE OF PREORDER.
    T_PREO_RoleINFO
    Function F_GetUserRole(Userid in number)
    return T_RoleInfo as
    V_Role T_RoleInfo;
    begin
         select T_PREO_RoleINFO(PREO_Role.ROLE_ID,PREO_Role.ROLE_NAME)
         BULK COLLECT INTO V_Role
         from preorder.PREO_Role, preorder.PREO_User_Role
         where PREO_Role.Role_id = PREO_User_Role.Role_id
         and PREO_User_Role.user_id = userid;
         return V_Role;
    end;

  • How to populate target directory from the source XML in Receiver File Adap?

    Hi All,
    Our scenario is IDoc - XI -(Receiver File adapter) File. Is it possible to populate complete "Target Directory" from the source XML message??
    Lets say we added field to maintain target directory in Idoc structure and some how populated value to it, then grab this target directory from the IDoc-XML and pass in Comunication Channel. I think its possible through Variable Substitation ...just want to make sure and if sombody has done the similar scenario their inputs would be great.
    Thanx
    Navin

    Hi,
    Please see the belowlinks
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii
    /people/sriram.vasudevan3/blog/2005/11/21/effective-xsl-for-multimapping-getting-source-filenames-in-legacy-legacy-scenarios
    Re: Dynamic  File Name for Receiver File Adapter
    Variable Substitution
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    try with adapter specific
    Example code...
    String newfilename="";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    // Get Sourcefilename
    String oldfilename=conf.get(key);
    //extract first 3 chars of source filename
    newfilename=oldfilename.substring(0,2);
    //get the date
    java.text.SimpleDateFormat dateformat = new java.text.SimpleDateFormat( "yyyyMMdd" );
    dateformat.format( new java.util.Date() );
    //append sourcedateL
    newfilename=newfilenamedateformat"L";
    // determine if prod/ dev / qa
    map = container.getTransformationParameters();
    senderService = (String) map.get("SenderService");
    if(senderServcie.equald("Prod"){
    newfilename=newfilename+"P";
    // change to new file name
    conf.put(key, newfilename+".tmp");
    Change it according to your requirement
    Regards
    Chilla..

  • How to remove namespace link from the output XML

    i have to remove 'xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions"' (namespace) from the output xml file which is generated from the BIP. I need my output XML file without that namespace link, this namespace link is coming for each element.
    Anybody know how to do that please help.
    output xml file
    <?xml version="1.0" encoding="UTF-8" ?>
    <Reports version="2.00">
    <deliveryNote xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <subjectId />
    </deliveryNote>
    <deliveredReports xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <referDate>[Delivery note->H4]</referDate>
    </deliveredReports>
    <simpleReports xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <numberOfReports>2</numberOfReports>
    <nReport>
    <reportName>Xyz</reportName>
    <reportVersion>1.0</reportVersion>
    <observations>
    <numberOfObservations>15</numberOfObservations>
    <columnObservation>
    <y>9</y>
    <rO>
    <x>14</x>
    <o>11</o>
    <o>21</o>
    <o>121</o>
    </rO>
    </columnObservation>
    </observations>
    </nReport>
    </simpleReports>
    </Reports>
    my xslt file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions" >
    <xsl:output method="xml" encoding="UTF-8"/>
    <xsl:template match="/">
         <xsl:element name="Reports">
              <xsl:attribute name="version">2.00</xsl:attribute>
                   <deliveryNote>
                        <subjectId></subjectId>
                        </deliveryNote>
                   <deliveredReports>
                        <referDate>[Delivery note->H4]</referDate>
                   </deliveredReports>
                   <simpleReports>
                        <numberOfReports>2</numberOfReports>
                        <nReport>
                                  <reportName>Xyz</reportName>
                                  <reportVersion>1.0</reportVersion>
                                       <observations>
                                       <numberOfObservations>15</numberOfObservations>
                                       <columnObservation>
                                            <y>9</y>
                                            <rO>
                                                 <x>14</x>
                                                      <xsl:for-each select="TEST_XML/LIST_R1/R1">
                                                           <o><xsl:value-of select="xdoxslt:lpad(COL1,10,' ')"/></o>
                                                      </xsl:for-each>
                                            </rO>
                                       </columnObservation>
                                       </observations>
                             </nReport>
                        </simpleReports>
              </xsl:element>
    </xsl:template>
    </xsl:stylesheet>

    Please post the same in BI Publisher forum
    BI Publisher
    Thanks,
    Vino

  • How to remove a node from a target xml payload in reciever file channel

    i have a scenario where i have to remove a node from my target xml file in receiver file channel and want xml as the output file. I don't want a fixed length file. How to do that in receiver channel? Do we need to use file content conversion for that?

    that will result in giving you a fixed file or a separator defined file.
    it will not give you an XML file.
    In case you want a XML file, instead of using variable substitution, use Dynamic configuration and adapter specific properties.
    Some ref:
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/frameset.htm

  • How create report with data from table and some columns results function ?

    Hi,
    How can i create on apex report region with some columns (of the report) as returned from a table and the other columns as results of plsql functions ?
    for example , I want to create a report like that:
    device last_date error_msg stop/start
    kodak1 06/04/08 null >>
    kodak2 08/03/08 good msg --^--
    kodak3 08/04/08 err msg >>
    3 rows returned
    where the 3 first columns are data returned from the table and the forth column is the result of plsql function (returned for example false) and on that i want to display a button of start ( >> in this example ) or stop ( --^-- in this example)

    Thomas,
    There is no problem here -- this is fully suported scenario.
    1. Bind Table dataSource to Customers node.
    2. Bind individual cell editors to any attribute of customer or any nested node like Address, say create column with InputField as editor, then for "value" property select Customer.Address.Street.
    Your nested nodes (like Address) must be non-singleton, set singleton=false on context designer tab.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • How to record with "guvcview" from the AUR.

    http://wiki.archlinux.org/index.php/Web … uvcview.29
    In the Archwiki on the webcam page, it suggests GTK UVC Viewer from the AUR. I don't quite like cheese for video recording. I was excited after I played with the resolution and framerate and such in guvcview for the first time. I then was ready to start recording a test video. However, I can't find how to start/stop recording once I've started guvcview. I would appreciate knowing how to record video in it.

    Hi! I just saw this image: http://screenshots.debian.net/screensho … _large.png
    I seem to be missing the bottom row of buttons.
    As I was typing this, I thought to stretch the window down... There they are! Sorry for bothering the forum with such a silly mistake. >.<

  • How to work with folios from external systems?

    I need to group a content into a hierarchical structure using folios. I need to add document to the particular slot in the folio. Documents are generated by the external application and checking-in thru the SOAP interface. There is no services regarding folios for SOAP in UCM. Is there any solution to resolve this problem? It is possible to use workflow processes to route documents to particular slots during the SOAP check in action?

    The services exist to do what you want, but they are not documented. I suggest logging a service request with support in order to request an Enhancement Request to prompt the documentation to be created. the more requests that come in the more priority can be given as far as I understand it.
    If you know how to customize the CS pretty well you can go look at the Folios component in the CS custom directory (remember not to directly modify it however) and look at the service definitions and that may give you some ideas. If you do not know how to read the service definitions ( and some are not clear since they call Java sub methods that are not exposed clearly) you can look at the Customizing guides in the documentation.

  • How to transfer with thunderbolt from iMac to MacBook Air?

    I have a new MacBook Air and I'm trying to migrate files from my iMac over a Thundertbolt connection. It doesn't work. Anyone else have this problem?

    You have not told us which versions of OS X either machine is running.
    Assuming both are running Mavericks (as they should be), this describes how to migrate using Thunderbolt:
    http://support.apple.com/kb/HT5872

  • How to deal with hiss from redlining

    I wanted to see what I could do about a tiny bit of hiss from redlining in a couple places, tops 3 frames each. In STP I tried the noise reduction process, added a limiter. Then I tried Analyze feature for 'Pops & Clicks'. I exported each version, then combos, then tried just with the denoise filter.
    I'm not sure I noticed that much difference. Is my process right? Is there a better way? Is there a better app available to use in the FCS suite? Is there going to be a problem no matter what?
    Thanks.

    When you record audio digitally, you can NEVER go over 0dB. If it goes into the red at all, it can distort. I've learned to record at low levels and remove noise and add gain in post. Sorry I don't know of an easy fix for this problem. If it really sounds like a hiss, you can probably apply a quick EQ fix to the frames it affects.

  • How to start with XQuery

    Hello,
    I am interested in implementing Xquery. I need to have XDK to make use of Oracle XQuery prototype.
    I have windows XP at home. Is there anyway I can work on XQuery(since XDK needs windows NT). Is there any other XQuery system that works on windows XP.
    Thanks
    Mary

    Refer to
    http://www.xml.com/pub/a/2003/10/01/xquery.html

  • How to create a report from multiple dynamic XMLs

    Hi,
    I'm trying to build a consolidated report that gets data from multiple XML files and each XML file is different. Although the presentation of the data will be similar, the contents of the XMLs will vary and the number of XMLs to merge will also vary.
    What I would like to understand is the following:
    * Is it possible to generate a report template based on dynamic columns where the column names, their format and number is different for each business object?
    * Is it required to generate an XML with the entire data or can the template read information from different XML files? and if so how it can be done. Please notice that the formatting of each XML may be different.
    * Is it possible to use the services to generate the reports directly? Something around these lines was mentioned in one of the sessions but it was also mentioned that it's still WIP.
    I've been using the standalone version and although I can get the desired result, I couldn't merge data from multiple XMLs.
    Is the new BIP version available, or an enterprise version that I can use?
    Thanks in advance,

    Hi Rich,
    Even i had a similar kind of problem. I wanted to fetch data from BI through the XMLA Connector which are created in Query Designer and then i wanted to fetch these fields and rearrange them and put it in a report format by colouring certain fields. Can the same can be done in WebDynpro.

  • How to reate with TC  XSLT_TOOL SEPA CT XML structure for Italy?

    Hi gurus,
    I'm running ECC 5.00 on support package 10, no SEPA notes can be implemented for this release.
    I'm then creating a custom program in order to manage the creation of the XML file using XSLT_TOOL according to SEPA CT tree.
    Have you any suggestion on how to proceed?
    Thanks
    Riccardo F.

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

Maybe you are looking for

  • From EncoreCS3 DVD-9 VIDEO_TS folder to replication house via DDP (mastering steps in GEAR etc.)

    Ok, the "solution" or steps I'm trying to provide here is not complete, just the way I see it now. We will do it this way as we want to deliver the DVD-9 dual layer DDP master to the replication house. The intention is that this should be corrected o

  • PR Work Flow Issue

    Hi folks, Please help me asap.... For PR release Stratergy let us assume that A1(ist approver), B1(2nd approver) , C1(top - last approver) are the approvers of the hierarchy and there is no prerequiste for the A1 should approve for B1 to approver...f

  • Java system maintenance (like SSAA)

    Hi Guys, do you know if is there some document/guide that contains steps for regural maintenance of Java systemes (or directly for SAP EP)? Like check the J2EE logs, check system logs, check DB size, .... There is transaction SSAA in ABAP systems so

  • Why is my new (refurbished) iMac running so slowly?

    I just opened my refurbished iMac 27" (mid 2010 2.8 ghz Intel Core i5) today and transfered all my data from my Macbook Pro. Everything went smoothly until I installed the OS X 10.6.8 (I think) update that I was prompted to do. When my computer resta

  • Générer un document pdf à partir des rubriques de l'aide en ligne

    Bonjour Lorsque je veux générer un pdf de mon aide en ligne, j'ai un message d'erreur me disant que Microsoft Word n'est pas installé sur mon poste alors qu'il y est que je l'utilise. Que faire pour générer de la documentation pdf et / ou word à part