XML page created by ASP?

I need to create a dynamic XML file that will be read by
another ASP page. The XML file source data is an SQL database.
TABLE:
ClientNumber
ClientName
Thanks.

Hi,
We have a free Dreamweaver extension that does this - XML
Table Export.
http://www.interaktonline.com/Products/Free-Products/XMLTableExport/Overview/
Alexandru
> I need to create a dynamic XML file that will be read by
another ASP page. The XML file source data is an SQL database.
>
> TABLE:
> ClientNumber
> ClientName
>
> Thanks.

Similar Messages

  • How to create a asp page in dreamweaver cc 2014

    How in the hec do I create an asp page in Dreamweaver CC.
    I installed the database, server behaviors.  I can create a PHP page and add database connections for that type but not Asp?
    Help anyone?
    Thanks Traci

    Create a new HTML document.
    Go to File > SaveAs > filename.asp
    Nancy O.

  • Jdev10.1.3: Create an UIX XML Page; Problem: No UIX-Item available...

    hello, i am new to jdev. at the moment i'm trying to complete the tutorial "Developing Applications with Oracle ADF UIX". (http://www.oracle.com/technology/obe/obe9051jdev/uixTutorial/lesson_UIX.htm)
    my problem: i followed the instructions until i was told, to create an uix-xml page. the picture in the tutorial indicates that there should be an available adf-uix item, but in my jdev there isn't. i know, the tutorial is using an older version of jdeveloper but at least, there should be something similar to the adf-uix item in my jdev.
    i thought there is no need in installing some sort of uix files... or am i wrong?

    Hi,
    Oracle recommends JSF instead of UIX for new projects. If you want to use UIX, take JDeveloper 10.1.2 or 10.1.2.1 instead of 10.1.3.
    Regards,
    Georg

  • "XML page cannot be displayed" error

    Using XML output on a table with more than a few rows falls over with a "XML page cannot be displayed" error. Sometimes only the error is displayed, sometimes some rows are displayed with this error at the end of the page (eg the DEMO_STATES table)
    Can anyone advise if there is some sort of limiter at work here?
    Thanks,
    Barry

    i'm pretty sure that error comes up when your browser (ie, specifically, i believe) can't render the xml data it's received. i'm also pretty sure, as the full message implies, it's because it doesn't know what style sheet to use when you go to that page. in short, it's a browser config issue. one way to bypass it (to at least prove that it's a browser issue) would be to create a link to your page, right click the link, and do a "Save Target As...". the resulting file will be your valid XML one. fwiw, i've had better luck controlling the manner in which my xml data is received when i use mozilla or netscape (but i'd imagine there's just some setting you'd toggle in IE to avoid your issue).
    hope this helps,
    raj

  • XML Page cannot be displayed error on interactive reports

    Hi, I am having trouble with a user downloading an interactive report as a CSV output. When a user tries to download the interactive report (as it is displayed when the web page loads, no alterations), they are getting this error:
    The XML Page cannot be displayed.
    Cannot view XML input using XSL style sheet. Please correct the error and then click the refresh button, or try again later.
    A name was started with an invalid character. Error processing resource 'http.............'.
    This is only happening with a small group of users which doesn't include me, so it has been very hard to troubleshoot. I can download the report and open in Excel without any problems.
    I am using Apex version 3.2 and IE 8. The user did not have multiple windows or tabs open logged into ApEx at the same time.
    Has anyone ever had this problem before? I could not find a thread with the same issue.
    Thanks!

    i'm pretty sure that error comes up when your browser (ie, specifically, i believe) can't render the xml data it's received. i'm also pretty sure, as the full message implies, it's because it doesn't know what style sheet to use when you go to that page. in short, it's a browser config issue. one way to bypass it (to at least prove that it's a browser issue) would be to create a link to your page, right click the link, and do a "Save Target As...". the resulting file will be your valid XML one. fwiw, i've had better luck controlling the manner in which my xml data is received when i use mozilla or netscape (but i'd imagine there's just some setting you'd toggle in IE to avoid your issue).
    hope this helps,
    raj

  • XML page cannot be displayed - Servlet error

    Hi,
    I am trying to extract XML data from a source using a servlet.But i am getting this error when i run my servlet in IE :
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    The download of the specified resource has failed. Error processing resource 'http://serverA.h.c.com:9300/p2pd/cog...
    </dataset>
    Can someone please guide me why i am getting this error? Here is the servlet code that i am using :
    package com.cognos.demo;
    import javax.servlet.http.*;
    import java.io.*;
    import com.cognos.developer.schemas.bibus._3.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * To change this generated comment edit the template variable "typecomment":
    * Window>Preferences>Java>Templates.
    * To enable and disable the creation of type comments go to
    * Window>Preferences>Java>Code Generation.
    public class XMLGenerator extends  HttpServlet
         //Logging information goes here
          public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException
              response.setContentType ("text/html;charset=utf-8");
              response.setCharacterEncoding("utf-8");
              String xml = null;
              RunReport reportRunner= new RunReport();
              CRNConnect connect=new CRNConnect();
              String url="http://serverA.h.c.com:9300/p2pd/servlet/dispatch";
              String nameSpace="ADS_NS";
              String uid="cognos";
              String pwd="abcd45";
              Logon sessionLogon = null;
              int REP_XML=1;
              try {
              connect.connectToCognosServer(url);
              catch (Exception e)
                   e.printStackTrace();
                   //System.out.println("Not able to connect to Cognos Server");
                   response.getWriter().print("Cannot connect to Cognos server");
              sessionLogon=new Logon();
              String logonOutputSource = "";
              String reportOutput=null;
              //Till the user gets logged in or he exits
              while (!Logon.loggedIn(connect)) {
                   try
                        logonOutputSource = sessionLogon.quickLogon(connect,uid,pwd);
                        //System.out.println("Connected to the Cognos server..");
                        System.out.println(logonOutputSource);
                   catch(Exception ex)
                        System.out.println("Error : Unknown host ");
                   if (!Logon.loggedIn(connect)) {
                        response.getWriter().print("Unable to logon");
                        System.exit(0);
              //Report Processing here
              //String reportName=args[0].trim();
              //locate the selected report
              BaseClassWrapper selectedReport=null;
              selectedReport=reportRunner.findReport(connect);
              reportOutput=reportRunner.runReport(connect,selectedReport,REP_XML,false);
              xml=reportOutput;
              //System.out.println("Main:" + reportOutput);
              System.exit(0);
              try
                   response.getWriter().print(xml);
                   response.getWriter().flush();
              catch (IOException e)
                   response.getWriter().print("Unable to publish xml");
                   System.out.println(e);
    }I am using some classes to extract xml data from a data source and retrieve that as a string and then i am displaying it using response object.
    Any help in this regard would be highly appreciated.
    Thanks,
    Shishir.
    Edited by: Invinc4u on Dec 15, 2008 6:56 AM

    i'm pretty sure that error comes up when your browser (ie, specifically, i believe) can't render the xml data it's received. i'm also pretty sure, as the full message implies, it's because it doesn't know what style sheet to use when you go to that page. in short, it's a browser config issue. one way to bypass it (to at least prove that it's a browser issue) would be to create a link to your page, right click the link, and do a "Save Target As...". the resulting file will be your valid XML one. fwiw, i've had better luck controlling the manner in which my xml data is received when i use mozilla or netscape (but i'd imagine there's just some setting you'd toggle in IE to avoid your issue).
    hope this helps,
    raj

  • Using XML to create files through API

    Hi.
    I created a new custom type - a subclass of "Document", with a few private attributes.
    I wrote a small XML file that creates an instance of that type.
    I have no problem using that XML with FTP or with the web interface - it parses the XML automatically and creates my custom file.
    However, when I try to use the java API to do the same, it just copies the XML file into IFS, but doesn't parse it or creates the custom file that is defined in it.
    I am using the IFSFileSystem.createDocument method, with parsing set to true, and "null" for the callback parameter.
    Of course, the XML parser is registered (as I said, it works with FTP and web interface).
    Please help.
    Thanks, Edo.

    Sure .. you can use XML as the data source. If you have DW8,
    you can even
    do it right in the Dreamweaver Interface.
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "melneum" <[email protected]> wrote in
    message
    news:e7n37t$40m$[email protected]..
    > Is it possable to use xml to create user lists that can
    then be searched
    > to
    > allow access to a section of a site like you can do with
    asp? I would
    > prefer
    > not to use any database stuff on a site i am currently
    working on but need
    > a
    > secured login area.
    >
    > Any ideas??
    >

  • XML Page cannot be displayed -- whitespace is not allowed at this location

    To create an online training program I am using Captivate 3
    to create the videos then move the published flash file into
    Contribute 3 to create the XML and HTM files. Using the same
    publishing steps most videos play; however, some videos do not. I
    noticed in the FTP that videos which work will display text when I
    open the XML file and those that do not I receive the error message
    below:
    "XML page cannot be displayed"
    "Cannot view XML imput using XSL style sheet."
    "Whitespace is not allowed at this location. Error processing
    resource"
    When I click on the flash files in the FTP the videos that
    play and ones that do not play both will allow me to play the
    video. I need for HealthStream (the web site my videos are stored)
    to connect to the FTP but receive the message "error parsing the
    XML document and content cannot be launched" due to the error
    reading the XML document (located above).
    Please help resolve the XML issue.

    Downloaded Captivate 3 demo to check it out. Nice program,
    bit expensive though...
    From what I saw so far the xml-export and inport feature is
    used to create swf-files in different languages. Correct?
    I don't see Contribute creating any xml or html when
    importing the swf created by Captivate, so what do you mean exactly
    by that?
    Is it a feature (that I don't know yet) that you can load xml
    files dynamically into the swf's for different languages? From the
    help in Captivate I understand that you open your project, then
    import the translated xml, publish and then you have a translated
    swf. So I don't see why there is xml on your server. I only see the
    swf's that function like they should. Inlighten me please and we
    will search for more answers...

  • Re-displaying an xml page

    Hi,
    I have created an xslt page as per Dreamweaver tutorials and
    then linked my xml page to this xslt page. When a user logs on I
    get them re-directed to the xml page. If they decide to press a
    particular button they then move on to another page, lets call it
    pageA.html. But, here is my problem, if a user press the back
    button to go back to the xml page, the browser displays page can
    not be displayed message.
    I would appreciate any help.
    Many thanks,
    Polly Anna

    Brent,
    You can override refreshShuttleIterators in JhsDataAction.
    Steven Davelaar,
    JHeadstart Davelaar.

  • Invalid UTF8 encoding when including XML page in XSQL

    Hello
    I'm creating an XSQL page that includes an XML page generated using PSP
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <page xmlns:xsql="urn:oracle-xsql" connection="sgvrt">
    <xsql:include-xml href="http://epdesccs.pdvsa.com:7777/pls/sgvrt/xml_indicadores_epm"/>
    </page>
    I'm not using <xsql:include-owa> because I get another error "Node not in document". When I run the XSQL I get:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <page>
    <xsql-error action="xsql:include-xml">
    <message>Invalid UTF8 encoding.</message>
    </xsql-error>
    </page>
    The page that is being generated by the PSP is:
    <?xml version="1.0" standalone="no" encoding="ISO-8859-1"?>
    <indicadores_gestion_epm xmlns:ind="urn:intesa-ind">
    <fecha>Junio 2001</fecha>
    <ind:indicador><ind:descripcion>Costo de Generacisn de Potencial por Perforacisn (Conv.)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>48,21</ind:real_valor><ind:unidad_medida>M$/Bl</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacisn de Potencial por Perforacisn (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>M$/Bl</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Exploracion Aqo Actual (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>22,48</ind:real_valor><ind:unidad_medida>$/BPE</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Exploracion Promedio (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>19,98</ind:real_valor><ind:unidad_medida>$/BD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Incorporacion de Reservas Probadas y Probables de Crudo (GD)</ind:descripcion><ind:plan_valor>647</ind:plan_valor><ind:real_valor>2</ind:real_valor><ind:unidad_medida>MMBLs</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Incorporacion de Reservas Probadas y Probables Gas (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>4</ind:real_valor><ind:unidad_medida>MMMPC</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Contribuciones a las Reservas Probadas de Gas (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>5</ind:real_valor><ind:unidad_medida>MMMPC</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Produccion Disponible Promedio de Crudo (GD)</ind:descripcion><ind:plan_valor>362,8</ind:plan_valor><ind:real_valor>1401,66</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Capacidad de Produccisn de Crudo</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Contribuciones a las Reservas Probadas de Crudo (GD)</ind:descripcion><ind:plan_valor>1750</ind:plan_valor><ind:real_valor>1750</ind:real_valor><ind:unidad_medida>MMBLs</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo Unitario de Operacisn (Conv.)</ind:descripcion><ind:plan_valor>0</ind:plan_valor><ind:real_valor>,01</ind:real_valor><ind:unidad_medida>$/BL</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo Unitario de Operacisn (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>102,53</ind:real_valor><ind:unidad_medida>$/BL</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Disponibilidad de Gas (Acumulado)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MMPCD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Produccion de Crudo Entregada a RSC Promedio</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacion de Potenc. RA/RC (Conv.)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>3,15</ind:real_valor><ind:unidad_medida>M$/BD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacion de Potenc. RA/RC (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>M$/BD</ind:unidad_medida></ind:indicador>
    </indicadores_gestion_epm>
    So the two pages have encoding="ISO-8859-1" so why is the XML Parser sending an <message>Invalid UTF8 encoding.</message>.

    Hello
    I'm creating an XSQL page that includes an XML page generated using PSP
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <page xmlns:xsql="urn:oracle-xsql" connection="sgvrt">
    <xsql:include-xml href="http://epdesccs.pdvsa.com:7777/pls/sgvrt/xml_indicadores_epm"/>
    </page>
    I'm not using <xsql:include-owa> because I get another error "Node not in document". When I run the XSQL I get:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <page>
    <xsql-error action="xsql:include-xml">
    <message>Invalid UTF8 encoding.</message>
    </xsql-error>
    </page>
    The page that is being generated by the PSP is:
    <?xml version="1.0" standalone="no" encoding="ISO-8859-1"?>
    <indicadores_gestion_epm xmlns:ind="urn:intesa-ind">
    <fecha>Junio 2001</fecha>
    <ind:indicador><ind:descripcion>Costo de Generacisn de Potencial por Perforacisn (Conv.)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>48,21</ind:real_valor><ind:unidad_medida>M$/Bl</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacisn de Potencial por Perforacisn (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>M$/Bl</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Exploracion Aqo Actual (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>22,48</ind:real_valor><ind:unidad_medida>$/BPE</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Exploracion Promedio (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>19,98</ind:real_valor><ind:unidad_medida>$/BD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Incorporacion de Reservas Probadas y Probables de Crudo (GD)</ind:descripcion><ind:plan_valor>647</ind:plan_valor><ind:real_valor>2</ind:real_valor><ind:unidad_medida>MMBLs</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Incorporacion de Reservas Probadas y Probables Gas (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>4</ind:real_valor><ind:unidad_medida>MMMPC</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Contribuciones a las Reservas Probadas de Gas (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>5</ind:real_valor><ind:unidad_medida>MMMPC</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Produccion Disponible Promedio de Crudo (GD)</ind:descripcion><ind:plan_valor>362,8</ind:plan_valor><ind:real_valor>1401,66</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Capacidad de Produccisn de Crudo</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Contribuciones a las Reservas Probadas de Crudo (GD)</ind:descripcion><ind:plan_valor>1750</ind:plan_valor><ind:real_valor>1750</ind:real_valor><ind:unidad_medida>MMBLs</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo Unitario de Operacisn (Conv.)</ind:descripcion><ind:plan_valor>0</ind:plan_valor><ind:real_valor>,01</ind:real_valor><ind:unidad_medida>$/BL</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo Unitario de Operacisn (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>102,53</ind:real_valor><ind:unidad_medida>$/BL</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Disponibilidad de Gas (Acumulado)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MMPCD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Produccion de Crudo Entregada a RSC Promedio</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>MBD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacion de Potenc. RA/RC (Conv.)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>3,15</ind:real_valor><ind:unidad_medida>M$/BD</ind:unidad_medida></ind:indicador>
    <ind:indicador><ind:descripcion>Costo de Generacion de Potenc. RA/RC (GD)</ind:descripcion><ind:plan_valor>N/D</ind:plan_valor><ind:real_valor>0</ind:real_valor><ind:unidad_medida>M$/BD</ind:unidad_medida></ind:indicador>
    </indicadores_gestion_epm>
    So the two pages have encoding="ISO-8859-1" so why is the XML Parser sending an <message>Invalid UTF8 encoding.</message>.

  • Import XML Page through Unix Box

    Hi,
    I have created say xxx.xml page. Now I want to import this in database, so I am using import command from command prompt C:\jdev\jdevbin\jdev\bin.
    So to Import any page, I would require C:\jdev\jdevbin\jdev\bin and import utility on my local machine.
    Is there any way to import pages in to database from unix server, so that I don't have to install JDEV folder on my local machine.
    Thanks in Advance

    You can use the XML Importer of JRAD Tools.
    oracle.jrad.tools.xml.importer.XMLImporter
    Please see the dev. guide for more details.

  • Designing XML Page using JDeveloper

    Dear Members,
    Iam using JDeveloper 9i Verson to develop OAF Pages and deploy on Oracle Applications 11i.
    In this OAF XML Page I have a table where user inputs data into it.
    During design time, I create regions, message text input and use spacers to design the layout as per the user requirement. I feel this method is bit hectic.
    In Oracle Forms we can just drop and drag the fields to design the layout as per the user requirement. Dont we have this drag and drop option to design the layout in JDeveloper?
    I request the members to throw some light on this issue.
    Many thanks in advance.
    Best Regards,
    Arun Reddy D.

    Hi Arun,
    Drag and Drop functionality is not available in R11 or R12 JDeveloper, but OAF provides different types of Regions for different type of requirements, which ease the development.
    Still sometimes(only sometimes) we need to adjust the Items using spacer.
    Regards,
    Reetesh Sharma

  • Moving pages created documents between macs

    I need to move pages created documents from imac to air lap top (running new pages in Mavericks) and to ipad (running ios pages). Get message on Imac (running pages 9) that xml document missing. Moving these documents is important for writing and editing them.  I hesitate to upgrade the imac (snow leopard) to the new pages for fear I will lose all my previous documents created in pages 9.  Help!

    Thank you, I checked the IPad and sure enough I do have version 2.01 and it makes the documents unreadable in Pages 09.  It will transport them if they are made into Word documents and then they are read as Page documents in Pages09.  Unfortunately if they were not created as word processing documents in the first place, this won't work.  Is there a way to back up IOS pages to v.1.71 on my IPad and IPhone?  If not, will know that IOS will not work for documents.  You would think Apple would have not created this mess since I am surely not the only person writing documents on these devices and needing to move them around for changes and editing!!
    Thanks for your help and Peter, your comment about ICloud is also helpful.  I have never used it, was tempted, and now will not use that either.  Again, Apple getting ahead of themselves and their customers. Love them but get frustrated by them often.:--))

  • The XML page cannot be displayed

    Hi,
    i have problem when i run report in modul Purchasing.
    This is new report. I create use .rdf but for output, i set to XML
    the error is :
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    An invalid character was found in text content. Error processing resource 'http://oraapps.moratelindo.co.id:8000/OA_CGI/FND...
    <VENDOR_NAME>CENTRADO PRIMA INT
    When i click Refresh, output is "+Authentication failed+."
    See screen capture above:
    [http://my.jetscreenshot.com/demo/20120321-szyn-45kb.jpg]
    So, what can i do about that problem.
    Thanks
    Edited by: adewe on Mar 21, 2012 11:13 AM

    when concurrent complited then press view output
    you can see html page with +...Cannot view XML input using XSL style sheet...+
    see code of page and post top 10 or may be more rows for identify xml
    ps: may be you use xsd or dtd
    Edited by: AlexAnd on Mar 20, 2012 9:59 PM

  • XML page & report template

    Hi There,
    I'm trying to make a default xml report that displays my sql query.
    I do not want to use the exportXML template, since no pagination is possible that way. (at least, I think it is)
    Now, i've made a XML page (only a xml header, nothing else) and a xml report (generic column template).
    Everything works as expected, but at the end of the xml, there is a javascript section :
    <script type="text/javascript">
    <!--
    //-->
    </script>
    When logged in as a developer it displays :
    <script type="text/javascript">
    <!--
    //-->
    </script><!-- Code generated for user with developer privileges. -->
    <script type="text/javascript">
    function popupInfo()
    ....snip....
    </script>
    <table cellpadding="0" border="0" cellspacing="0" summary="Developer Toolbar" align="center">
    ....snip....
    </table>
    <script type="text/javascript">
    if(GetCookie('ORA_WWV_QUICK_EDIT') != null){
    if(GetCookie('ORA_WWV_QUICK_EDIT') == 'SHOW')
    quickLinks('SHOW');
    </script>
    My question : is there a way to not get these things in my output ?
    Thanks in advance.

    nobody an idea ?

Maybe you are looking for

  • IDOC reading in ABAP

    Hey, found a lot of threads to this issue. Just want to know if I understood correctly. I created an own IDOC and the communication from XI to SAP system works. Until now I've got a dummy implementation as process code, which I want to implement corr

  • Manual update of Forecast/Demand and Stock data in SNC5.1

    Can we update the Stock in Hand at customer's place when we receive these values every monday by email? So after getting these figures on every monday we want to update it in SNC5.1 manually. Is it possible? If yes then how? What is the impact? Thx

  • Need Alternate Download Link for iTunes

    Greetings, I have a frustrating dilemma that I am hoping to find assistance for. I offer computer support to a small rural community. Most of the people here are elderly and using dial-up access or a very slow DSL service. Here is my frustration - my

  • Which SAP Functional Module to choose?

    Hi Folks, Glad to be a part of the SCN community. I am current working in a SAP Staffing Company doing both SAP Recruitments & Resume Marketing. As I deal with SAP Technologies have developed my interest to enter into the SAP world. I am not from tec

  • PSE 12 Fuji compatibility

    I have PSE12 on Mac OS 10.10.2 Yosemite.  All my editing is with raw images.  PSE Raw works with my Fuji x-t1 but I now have an additional Fuji x100t and cannot edit my raw files from this camera.  What is the best thing to do?   Any help would be mu