Loading of data from XML into Portal

Hi,
I have a XML schema generated from a Word document, containing chapters and appendices in diffrent levels.
Is it possible to load this document into Portal text items, keeping the chapter/appendix structure?
Regards,
Nathalie

Several third-party tools support converting a DTD into a "first-cut" XML Schema. It likely will need a lot of subsequent work to get it into a useable format -- since for example, all of the datatypes would need to be string.
The tools I've personally used to accomplish this (and surely there are others) are:
[list]
[*]XML Authority from Extensibility
[*]XML Spy 3.0 from Icon Software
[list]
The canonical format for XSU insert is precisely the default output format you would get by using XSU to generate XML for a select * from tablename statement.

Similar Messages

  • How to load the data from informatica into bw & how to report the data

    Hi friends,
    how to load the data from informatica into bw & how to report the data
    using cognos.(i.e how to access the data in sap bw using cognos 8 BI suite).
    Thanks,
    madhu.

    Inorder to report BW data into Cognos you can extract data from using Open Hub to the DB table from which Cognos reads.
    For BW informatic integration refer following docs:
    http://www.aman.co.il/aman/pfd/DataInteg_BR.q103cd.pdf.pdf
    http://h71028.www7.hp.com/enterprise/cache/3889-0-0-225-121.html
    http://devnet.informatica.com/learning/ePresentations.asp
    http://72.14.203.104/search?q=cache:C741L86Q19oJ:devnet.informatica.com/showcase/resources/Essbase_DataSheet.pdfinformaticapowerconnect(BI)&hl=en&gl=in&ct=clnk&cd=3
    http://www.informatica.com/customers/utilities_energy/fpl_group.htm
    http://www.informatica.com/solutions/resource_center/technote_sapbw_65241004.pdf#search=%22Informatica%20to%20Bw%22

  • Lookout 6.2 loading buffered data from PLC into Citadel database?

    We are testing a Lookout small process application <200 I/O that is designed for continuous application. This is not a critical process, therefore we don't want to commit to duplicate Lookout Systems. However, we would like to buffer 24 words(16bit) in the PLC for 5-10 minutes so we would not loose that data when the computer running Lookout does a restart for example.
    Our problem is how do we get this data into LookOut Citadel database in the proper time frame.
    If loading this data into Citadel is not possible with the original trace, can we load into another database file and view this data separately?
    Any suggestions would be appreciated!
    Solved!
    Go to Solution.

    First, you need to be able to get the data as well as the timestamp from the PLC.
    With all the data and timestamp, you can use the Logger object to log data to Citadel. Take a look at this example. The Logger_discrete object.
    http://zone.ni.com/devzone/cda/epd/p/id/3816
    But the problem is that the data is not logged to the original trace. It is logged to the logger object trace.
    Ryan Shi
    National Instruments

  • Import/insert data from XML into Oracle database tables?

    Hi. (I am using JDeveloper 10.1.3.3.0 and Oracle 10g)
    I have been able to export the data from one of my database tables by using a View Object and .writeXML.
    Now, I want to take an xml file that is formatted in the same way as what is spit out by the writeXML and put that info in my database table. I followed online examples and have tried using .readXML like so:
    Element element = XMLDoc.getDocumentElement();
    vo.readXML(element, -1);
    I know it is sort of working, because at first I got an error message that one of the required attributes was missing. So, I added that attribute to my xml file and ran my code. No errors. But, I checked my database, and the new records were not added.
    Is there something I have done wrong? Or is there perhaps something I left out? I also noticed there were several versions of readXML like readFromXML. Which one should I use and how?
    Thanks.

    KUBA, I changed my code to match your example:
    DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    File xmlFile = new File("C:/myfilehere.xml");
    Document doc = db.parse(xmlFile);
    Element element = doc.getDocumentElement();
    vo.readXML(element, -1);
    vo.getDBTransaction().commit();
    I still get no errors, but my database table has no new records.
    Any ideas why?
    Thanks.

  • Loading ntext data from MSSQL into Oracle - field locations vary

    Good afternoon/evening everyone
    I'm looking for a practical solution to a data migration issue I am running into. Here's the detail.
    1. Source database is Microsoft SQL Server 2008 R2
    2. Destination database is Oracle 11g R2.
    3. Migration strategy: Use MSSQL Management Studio Export Wizard to export all tables into flat files and then use SQL*Loader to load into Oracle.
    Sounds easy...Here's the problem I'm running into:
    1. Several tables have ntext data.
    2. The location of ntext attribute within the table varies by table.
    3. The number of ntext attributes in the source table varies by table.
    4. I'm using a field delimiter to split the data.
    What I am running into:
    1. There is nothing within the data for the ntext field that is common that would allow me to use a CONTINUEIF to cause the multiple physical records to be concatenated into a logical record.
    2. The number of physical records very for creating the logical record.
    3. Other data exists after each ntext attribute that is either ntext or non-ntext data.
    What I'm looking for:
    1. Would like to use SQL*Loader, if possible; otherwise I'll write a PL/SQL procedure to read the data, row for row, and load it into the appropriate fields.
    2. Looking for ideas from the Forum experts to provide some Control File syntax that would accomplish what I'm trying to do. I'm out of ideas.
    I would appreciate some assistance and some ideas if you have any.
    Thanks in advance
    Stephen Karniotis
    [email protected]

    is this what you are looking for?
        select replace('this a text with\X0D\X0Ain it', '\X0D\X0A', chr(13) || chr(10)) from dualyou can do the replace directly when loading by putting "replace(:fieldname, '\X0D\X0A', chr(13) || chr(10))"
    next to the field in the controll file you use with sql*loader (including the " signs). Or you can use it in an update statement.
    greetings
    Freek D

  • How to load a data from XML when a data is clicked in a datagrid

    Hi,
         I have populated a datagrid with XML data. My requirement is like, whenever a user clicks on a particular data i need to load a popup based on the data that he has selected.
         I'm using advanced datagrid in this process and i'm not able to trace the element that the user has selected in the datagrid.
         It would be great if someone could help me on how to trace this particular element and how to load the corresponding xml values. It really a burning issue in my project.

    Will this work for you:
    dataGrid.selectedItem.@yourfieldname
    with popup:
    var popupWindow:TitleWindow = new TitleWindow;
    popupWindow = showPopupWindow(DisplayObject(FlexGlobals.topLevelApplication), yourclassname);
    popupWindow.someproperty = dataGrid.selectedItem.@yourfieldname
    public function showPopupWindow(parent:DisplayObject, WhatToShow:Class):TitleWindow
         var popupWindow:TitleWindow =
         TitleWindow(PopUpManager.createPopUp(parent, WhatToShow, true));
          PopUpManager.centerPopUp(popupWindow);
          return popupWindow;
    Nothing to write home about, but hope it helps a bit.

  • Problem in load data from XML in Flex 4

    Hi Everyone,
    I tried all the possible ways which ever i know to load the data from XML to Flash Builder (Flex 4). Actually i want to load the data from XML to Datagrid. The project is executed without any error and warnings but the data is not loaded into datagrid. i will paste the coding below if anyone know the solution please let me know. Waiting for reply.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="userRequest.send(); ">
    <fx:Declarations>
         <s:HTTPService id="userRequest" url="xdata.xml" useProxy="false" resultFormat="e4x" />
    </fx:Declarations>
    <mx:DataGrid id="dgUserRequest" x="20" y="160" dataProvider="{userRequest.lastResult.user}" >
         <mx:columns>
              <mx:DataGridColumn headerText="User ID" dataField="id"/>
              <mx:DataGridColumn headerText="User Name" dataField="name"/>
         </mx:columns>
    </mx:DataGrid> 
    </s:Application>

    It is better to add result handler to the HttpService and debug to see the actual structure of the xml.

  • How to load data from Quikbooks into PeopleSoft General Ledger module ?

    Folks,
    Hello.
    My client's data is currently stored in Quikbooks.
    After install PeopleSoft FSCM 9.0, I need to load the data from Quickbooks into PeopleSoft General Ledger module. But I don't know how to use PeopleSoft Integration Broker to integrate with Quikbooks.
    Can any folks tell me how to load data from Quikbooks into PeopleSoft General Ledger module ?

    Hi,
    If the data load is one time process, then you can use PL/SQL or datamover to load the data to PeopleSoft application.
    If you want to load the data in real time, then you need to create In-bound and out-bound nodes to perform the transaction.
    Thanks
    Soundappan

  • Loading Textual Data from HttpService Would Not Show Up on TextArea

    Hi,
      I have something fairly strange here that I have a little problem getting it to work. I am loading some data from XML and attempt to format it a little more on Actiosncript and print it out on the TextArea. For some reason, it would not show up, even though when I used Alert.show it does spit out the entire xml data set. Based on this, I know my data has been loaded correctly, but I am not sure why it is not showing up on my page.
    Here is the code,
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:states>   
            <mx:State name="view">
              <mx:RemoveChild target="{intro}"/>
                <mx:AddChild relativeTo="{applicationcontrolbar1}" position="before">
                    <mx:TextArea editable="false" id="viewText" width="450" height="279" text="{messageInfo}"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Script>
            <![CDATA[
                import mx.events.ItemClickEvent;
                import mx.controls.Alert;
                import mx.rpc.events.ResultEvent;
                import mx.rpc.events.FaultEvent;
                [Bindable]private var message:XMLList;
                [Bindable]private var messageInfo:XMLList;
                private var savedIndex:int = 99999;
       private function clickHandler(event:ItemClickEvent):void {
                    if (event.index == savedIndex) {
                        //don't do a thing
                    else {
                        savedIndex = event.index;
                          navigateToURL(new URLRequest("../"+ event.item.data));
                private function toggleButtonBar_itemClick(evt:ItemClickEvent):void {
                    currentState = evt.item.data;
                    if(evt.item.data == "view") view();
               private function view():void{
                  currentState="view";
                  userView.send();          
               private function httpService_fault(evt:FaultEvent):void {
                    var title:String = evt.type + " (" + evt.fault.faultCode + ")";
                    var text:String = evt.fault.faultString;
                    Alert.show("There is an error! Type " + title + " " + text);
               private function httpService_result(evt:ResultEvent):void {
                    messageInfo = XML(evt.result).messages.message;
                    Alert.show(messageInfo);
                    message = XML(evt.result);
                    var message_name:String = "";
                    var message_phone:String = "";
        for each (var message:XML in messageInfo.messages.message) { 
              viewText.text += "Name " + messageInfo.name + "\n";
              viewText.text += "Phone " + messageInfo.phone + "\n";               
            ]]>
        </mx:Script>
    <mx:HTTPService id="userView" url="messages.xml" resultFormat="e4x"
      fault="httpService_fault(event);" result="httpService_result(event)" />
    <mx:PhoneNumberValidator id="pnVal" source="{your_phone}" property="text"/>
    <mx:EmailValidator id="emailVal" source="{your_email}" property="text"/>
        <mx:Array id="dp">
            <mx:Object data="view" label="View"/>
        </mx:Array>
        <mx:Panel id="panel" title="My Home" height="70%">            
        <mx:TextArea id="intro" width="77%" height="100" borderStyle="none" paddingLeft="10" color="black">
                <mx:htmlText><![CDATA[Welcome to my page.]]></mx:htmlText>
            </mx:TextArea>
             <mx:ApplicationControlBar id="applicationcontrolbar1">
            <mx:ToggleButtonBar id="toggleButtonBar" color="#FFFFCC"
                    dataProvider="{dp}"
                    itemClick="toggleButtonBar_itemClick(event);" />
        </mx:ApplicationControlBar>           
        </mx:Panel> 
    </mx:Application>
    Note, there are other items in the array, but those are not relevant to the question of the topic here, and therefore I am not posting the code for those sections.
    When I click on the View button, it does give me the correct state, but I get a blank box of textArea with no data when I know there is output from Alert.show in the view(). What have I missed?
    Thanks for your help.

    Thanks for the pointer. As a matter of fact, I found out that it is because of my xml nodes messing up, and that the text was displayed as white for someb reason. With a white background, of course I would not see a thing.
    Thanks again.

  • Standard Proxy enhanced unable to fill the data from xml to the structure

    Hi All,
      We have enhanced a standard proxy structure in PI, generated the proxy in the target system SCM, but the call transformation is not filling the data from xml into the appended field.
    Am i have to do any thing to fill the data.
    Thanks.
    Chaitanya Naru

    Hi Srikant,
    You can use the following code. This works for me.
      Remember to set the multiplicity of the User structure to 0...N or 1...N
    IGPStructure inputStructure = m_context.getInputStructure();
    Collection inputItems = inputStructure.getStructures("User");
    if(inputItems == null){
    return;
    for (Iterator iter = inputItems.iterator(); iter.hasNext();) {
    //get input item structure and fill context
    IGPStructure item = (IGPStructure) iter.next();
    String attrName=
    item.getAttributeAsString("AttrName");
    Thanks & Regards,
    Dipankar

  • Extract Data from XML and Load into table using SQL*Loader

    Hi All,
    We have a XML file (sample.xml) which contains credit card transaction information. We have a standard SQL*Loader control file which loads the data from a flat file and the control file code is written as position based method. Our requirement is to use this control file as per our requirement(i.e) load the data into the table from our XML file), But we need help in converting the XML to a flat file or Extract the data from the XML tags and pass the information to the control file and in turn it loads the table.
    Your suggestion is highly appreciated.
    Thanks in advance

    Hi,
    First of all go to PSA maintanance ( Where you will see PSA records ).
    Goto list---> Save-> File---> Spreadsheet (Choose Radio Button)
    > Give the proper file name where you want to download and then-----> Generate.
    You will get ur PSA data in Excel Format.
    Thanks
    Mayank

  • Load data from XML files into BI

    Hi All,
    Can any one guide me through the steps which involve in loading data from XML files into BI?
    Thanks
    Santosh

    Hi James,
    I have followed upto step No: 12 .
    Please could you let me know how to link the XML file on my local drive to BI,
    I am not able to find figure out where to specify the path of the XML file to be loaded into BI.
    Thanks In Advance
    Regards,
    San
    1. Create a Infosource(ZIS), with transfer structure in accordance with the structure in the XML file. (You can open the XML file with MS Excel.This way you can get to know the structure).
    2. Activate the transfer rules.
    3. After activation ;from the Menu Bar , Select Extras>Create BW Datasource with SOAP connection.
    4.Now Activate the Infosurce again, this creates an XML based Datasource(6AXXX...)
    5.These steps would create two sub nodes under the Infosource(ZIS).
    6.Select Myself system and create a data package and execute it run in Init mode(without Data Transfer).
    7. This would create an entry in RSA7(BW delta Queue)
    8. Again create another Delta Infopackage under it, and run it. Now the Datasource(6AXXXXXX..) would turn green in RSA7.
    9.In Function builder(SE37) select your FM( do a search ,F4, on the datasource 6AXXX....) .
    10.Inside this RFC based FM , from the Menu Bar select Utilities>more Utilities>Create Web services>From Function module.
    11.A wizard will guide you through the next steps .
    12.once this is done a Web serrvice would be enabled in WSADMIN. Select your FM and execute it.
    13.From here you can upload the data from XML file into BW delta queue.
    Edited by: Santosh on Nov 30, 2008 2:22 PM

  • Loading multiple data from a XML file?

    Hi,
    I'm having trouble loading multiple data from the same XML file. In this XML file I have a list of dishes I want to add into a menu. So, how can I load multiple data from different branches of the XML file into my text fields?
    Thanks in advance,
    Rafael Carignato

    I'm not quite sure what you are trying to do.  I have this working with a .JSON file that loads "multiple" date into "multiple" fields in Edge - Is that what you mean?
    Here's an example:
    $.getJSON('slides.json', function(data) {
              for(var i=0;  i<data.length;  i++)
                                  var s = sym.createChildSymbol("slide", "stage");
                                  s.$("photo").css({"background-image":"url('"+data[i].image+"')"});
                                  s.$("title").html(data[i].title);
                                  s.$("price").html(data[i].price);
                                  s.getSymbolElement().css({"position":"absolute",
                                                      "left": i*225+50+"px",
                                                      "top":"100px"});
    Each name above (photo, title, price) has an element on the stage (or in my case, a symbol) and my .JSON file has has a "branch" for each of these:
    "image" : "images/7783.jpg",
    "title" : "SNOCONUTS",
    "price" : "12.00"
    Hope that helps...
    James

  • Extract data from xml file and insert into another exiting xml fil

    hello,
    i am searching extract data from xml file and insert into another exiting xml file by a java program. I understood it is easy to extract data from a xml file, and how ever without creating another xml file. We want to insert the extracted data into another exiting xml file. Suggestions?
    Regards,
    Zhuozhi

    If the files are small, you can load the target file in a DOM document, insert the data from the source file and persist the DOM.
    If the files are large, you probably want to use a StAX or SAX.

  • Srollpane scrolls when loaded data from XML, not when loaded data from ASP

    Hi,
    I load into scrollpane a swf, which has a dynamicly loaded
    data. If I use the XML file, it works (the scrollbar is visible),
    but if I use a asp file, which creates xml, it doesn't work (the
    scrollbar is not visible). Any ideas?

    Hi,
    let say I have a A.swf and a B.swf. In A.swf I have a
    scrollpane in to wich the B.swf is loaded. Below is the code in
    B.swf. If I load the data from a asp file, the scrollbar in the
    scrollpane is not visible, but if I use the xml file, the scrollbar
    is visible.
    What I've meant is that I think that Flash gets the same form
    of data, no matter if I use the asp or xml, because the asp creates
    the same xml form as I use in the xml file. I hope this makes any
    sense.

Maybe you are looking for

  • Restrict order type with respect to customer.

    Hi SD experts There is a requirement that there are two sales doc type OR and ZOR for the same sales area , however i want the settings in such a way that one customer in the same sales area can be able to create the ZOR but not the OR. however the o

  • Compiling Packages like PKG_READ_BLOB_IMAGE.pks

    Hi All, Can anyone help me how to compile or use the packages like PKG_READ_BLOB_IMAGE.pks or PKG_READ_BLOB_IMAGE.pkb Thanks Arif

  • Is it possible to get an iPhone as an iPod...?

    I was just wondering. I do not have an iPhone but is it possible to get an iPhone without the AT&T contract? I guess my real question is can you get a refund of AT&T services when you cancel it right after buying iPhone? I thought it would be cool be

  • Trying to trigger multiple analog measurements with each pulse of a 500PPR encoder

    I am trying to take multiple analog measurements form 6 sensors with each pulse of a 500 ppr encoder and write these to a file.  Problem I have run into is I am not getting 500 readings with 1 revolution of the encoder the most I have received is 187

  • FileUpload in Web dynpro

    Hi Iam creating an application in web dynpro.In that Label Name - FileName UI Element - FileUpload I created One Node "FileUpload" under that "FileResource" one attribute,  i had taken.I mapped that attribute  to the "Resource" Element. In the Java D