Xml iview not working in EP 7

I am trying to fetch RSS feeds through XML iview in EP 7 - it is giving the error "<b>Error while using XML iView, please contact your system administrator</b>".
I did the same successfully in EP 6 without any problem. The settings i have configured for the XML iview are same for EP 6.0 and EP 7.0. I even checked the proxy settings in Service configuration and it is all right.
Any suggestions on this?
I have checked with a number of feeds to confirm that the error is not feed dependant.

A colleague of mine have raised an OSS on this. Still no reply from SAP. Now it is a bit urgent for me as I have to solve this ASAP.
If you find the solution please let me know. I think this problem is rarely reported since most organisations are still on EP 6.0.
There seem to a problem of RSS support of the EP7 platform.
Message was edited by:
        Subhabrata Mukhuti
    05.11.2007

Similar Messages

  • Why ribbon XML does not work in Excel 2007?

    I installed 4 VSTO Excel add-ins on an Excel 2007 PC today. The two that use a visual designer ribbon worked fine. But the 2 that use a Ribbon (XML) did not. The add-in starts ok. But the ribbon does not show. Why would that be?
    I wrote two more add-ins to demonstrate the problem. One puts an OK button on the ribbon using the visual designer. That add-in installs on the excel  2007 PC and works as it should. But the 2nd, an add-in that uses Ribbon (XML) to put a button on the
    ribbon, does not work.  The add-in does not display on the ribbon.
    Here is the code of the Ribbon (XML) add-in project.  How to get a ribbon (XML) ribbon to display in excel 2007?
    thanks,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml.Linq;
    using Excel = Microsoft.Office.Interop.Excel;
    using Office = Microsoft.Office.Core;
    using Microsoft.Office.Tools.Excel;
    namespace ExcelAddIn4
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    protected override Office.IRibbonExtensibility CreateRibbonExtensibilityObject()
    return new Ribbon1();
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    <?xml version="1.0" encoding="UTF-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    <ribbon>
    <tabs>
    <tab idMso="TabAddIns">
    <group id="ContentGroup" label="Content">
    <button id="Button1" label="ok" screentip="Text"
    onAction="Button_OnAction" supertip="Inserts text at the cursor location"/>
    </group>
    </tab>
    </tabs>
    </ribbon>
    </customUI>
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Reflection;
    using System.Runtime.InteropServices;
    using System.Text;
    using System.Windows.Forms;
    using Office = Microsoft.Office.Core;
    // TODO: Follow these steps to enable the Ribbon (XML) item:
    // 1: Copy the following code block into the ThisAddin, ThisWorkbook, or ThisDocument class.
    // protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
    // return new Ribbon1();
    // 2. Create callback methods in the "Ribbon Callbacks" region of this class to handle user
    // actions, such as clicking a button. Note: if you have exported this Ribbon from the Ribbon designer,
    // move your code from the event handlers to the callback methods and modify the code to work with the
    // Ribbon extensibility (RibbonX) programming model.
    // 3. Assign attributes to the control tags in the Ribbon XML file to identify the appropriate callback methods in your code.
    // For more information, see the Ribbon XML documentation in the Visual Studio Tools for Office Help.
    namespace ExcelAddIn4
    [ComVisible(true)]
    public class Ribbon1 : Office.IRibbonExtensibility
    private Office.IRibbonUI ribbon;
    public Ribbon1()
    public void Button_OnAction(Office.IRibbonControl control)
    MessageBox.Show("Button_OnAction");
    #region IRibbonExtensibility Members
    public string GetCustomUI(string ribbonID)
    return GetResourceText("ExcelAddIn4.Ribbon1.xml");
    #endregion
    #region Ribbon Callbacks
    //Create callback methods here. For more information about adding callback methods, visit http://go.microsoft.com/fwlink/?LinkID=271226
    public void Ribbon_Load(Office.IRibbonUI ribbonUI)
    this.ribbon = ribbonUI;
    #endregion
    #region Helpers
    private static string GetResourceText(string resourceName)
    Assembly asm = Assembly.GetExecutingAssembly();
    string[] resourceNames = asm.GetManifestResourceNames();
    for (int i = 0; i < resourceNames.Length; ++i)
    if (string.Compare(resourceName, resourceNames[i], StringComparison.OrdinalIgnoreCase) == 0)
    using (StreamReader resourceReader = new StreamReader(asm.GetManifestResourceStream(resourceNames[i])))
    if (resourceReader != null)
    return resourceReader.ReadToEnd();
    return null;
    #endregion

    Hello Steve,
    Most probably you have got an error in the ribbon XML markup. See
    How to: Show Add-in User Interface Errors for more information.
    I have noticed the following xml namespace:
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    Use the following one instead:
    <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
    Also make sure that specified idMso values exist in Office 2007.
    You can read more about the Fluent UI (aka Ribbon UI) in the following series of articles in MSDN:
    1.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    2.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    3.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • Xml code not working with new version

    Hi,
    my following code is not working with the xalan 2.7.0 version. Any one can help to convert this to work on new version.
    import java.io.*;
    import java.util.*;
    import org.xml.sax.*;
    import org.apache.xalan.xslt.*;
    public class XML2Edifact
    public static void main(String args[])
    throws SAXException, IOException
    if(args.length < 3)
    throw new IllegalArgumentException(
    "Usage is XML2Edifact in.xml xsl.xsl out.edi");
    InputStream sin = new FileInputStream(args[0]),
    sxsl = new FileInputStream(args[1]);
    OutputStream sout = new FileOutputStream(args[2]);
    EdifactFormatter formatter = new EdifactFormatter(sout);
    XSLTProcessor processor =
    XSLTProcessorFactory.getProcessor();
    XSLTInputSource in = new XSLTInputSource(sin),
    xsl = new XSLTInputSource(sxsl);
    XSLTResultTarget out = new XSLTResultTarget(formatter);
    processor.process(in,xsl,out);
    }

    Solved, had to repair the Z10 with the PC!  Would have thought that upgrading software would have saved the environment so that this step was not needed (played with this for several weeks on-and-off).

  • IView not working when added to workset

    Hi all,
          I have come across a very strange scenario.
    I have deployed a PAR file created in NWDS & created an iView out of it. When I preview the iView, it works fine. But when I add the iView to the workset and assign a role to the workset & try viewing the iview, it doesn't work!! There's no error msg displayed. The log file lists a <b>NameNotFoundException</b>.The iView contains inputfields & buttons. there's a <b>Fileupload</b> UI element in the iView. That alone works. None of d other button click events work. What could be the reason? Can someone help me?
    Any help in this regard will be rewarded.
    Regards,
    M.Subathra

    Hi Subathra,
    When you are able to see the iView from preview and not from the iView link, then there is sure to be a error in the creation process. Do the following:
    1. Run the application from the Content Administration->Web Dynpro->Deployed contents.
    2. From the browser address, copy the workspace and application name.
    3. Edit the iView properties and replace the workspace and application name, with the copied ones.
    Ensure there is no blank space prefix/suffix to workspace or application name.
    Regards,
    Srinivasan T

  • XML Rendering not working in Safari

    Hi all,
    Just updated my official unlock iPhone 3G S to 3.1 yesterday. Used Safari on it last night and waptrick.com wouldn't render (1st time I went there). It just showed its source, which is in XML (I think). A friend's unofficial unlock 3G 3.0 Safari showed the page fine. I've never noticed this before and I'm not sure how to proceed. Nothing on the web/Google has listed this. Is it settings? HELP! Cheers.
    Sryn

    Hi Shay,
    Thank you for the quick answer.
    No it does not work on the ipad or iphone.
    It works on chrome for the ipad!
    PPR does not work for the second click on the same button.
    In you example it will accept the first click but ignore the rest of the clicks on the same button.
    We are about to create a ADF app for the ipad and this is a major showstopper.
    Hope we can find some sort of workaround, that does not involve dropping PPR.
    Regards Johnny

  • XML Validation Not Working.

    Hi Dear Experts.
    I have an scenario Proxy to JDBC - Dual Stack , on Receiver Agreement I checked the option Validation by Integration Engine . I made a test in Test Message on NWA Task and the validation is fine. However when I sent the message from ABAP Proxy the validation is not working.
    Can you help me?
    Regards.

    Can you see your xsd in NWA??
    NWA → Cache Monitoring → Mapping Runtime.
    or
    PIMON → Monitoring → Mapping Runtime → Cache Monitor
    @Sarojkanta Parida : IN PI 7.4 version we dont need to place xsd in any location, We just need to select Schema Validation option in Sender/Receiver Agreement, and it will be activated.
    Regards
    Osman

  • Web.xml mapping not working

    I have a servlet located at com.conversion.web called leftNavReader.java
    I'm trying to access this servlet on my localhost with the following URL: http://localhost:8080/Conversion/start
    but I keep getting this error:
    HTTP Status 404 - /Conversion/start
    type Status report
    message /Conversion/start
    description The requested resource (/Conversion/start) is not available.
    Here is what my web.xml looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app>
         <display-name>DataConversionWeb</display-name>
         <servlet>
              <servlet-name>start</servlet-name>
              <display-name>Start</display-name>
              <servlet-class>com.conversion.web.leftNavReader</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>start</servlet-name>
              <url-pattern>/start</url-pattern>
         </servlet-mapping>
    </web-app>
    Does anyone have any idea why I'm getting this error?

    Since the spaces may cause problems and I have
    everything in the My Projects directory, I decide to
    just start from scratch. Very good.
    But... someone else
    installed eclipse for me and set that up, so I may
    need some help with that, not sure if you can help.As far as I know Eclipse can also be Unzipped to any folder, and
    theres a file called eclipse.exe , one would simply double click on that to invoke eclipse. I don't think you would have to re-install Eclipse.
    You could create a new project, and set
    C:\dev\projects\Conversion\ as your Eclipse Workspace .
    But lets put Eclipse on hold for now, we can still configure this whole project manually without Eclipse, which will help you understand what's going on under the hood. Also, in the beginning it's simpler to configure independent of the IDE.
    So I recommend that you save your work, uninstall
    Tomcat 6.0.x and re-install it on a path thatdoesn't
    have any spaces in it.
    For example:
    C:\dev\tomcat\ So I've uninstalled tomcat and re-installed in
    c:\dev\tomcat as recommended...Good, I assume that immediately under C:\dev\tomcat\ folder you see folders like bin, conf, webapps etc
    Assuming that Tomcat was Unzipped to the above
    folder. and there isn't another main folder underthe
    above folder, set you system envrionment variable
    CATALINA_HOME to the above folder.How do I do this?On MS Windows, click Start ---> Settings ----> Control Panel
    Look for System , --> Doubl Click on System -----> Click on the Advanced tab ----> then under the "System Variables" panel ------> Click on New button -------->
    in the Variable Name: type CATALINA_HOME
    in the Variable Value: type C:\dev\tomcat
    Then click Ok , that will set CATALINA_HOME to C:\dev\tomcat
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    There's a RUNNING.txt file under Tomcat's folderthat
    explains configuring it. Tomcat expects JAVA_HOMEto
    be set to your JDK's root folder . Again if JDK is
    installed on a path that has spaces then Irecommend
    installing it on a path with no spaces forexample:
    C:\dev\jdk\
    Similarly , follow the above steps to set JAVA_HOME to C:\dev\jdk
    Also, under System Variables you may see a variable called Path
    If it doesn't exist , then create a new one, if it already exists then add the following to the Path variable. (notice how the semi colon is used as a separater)
    ;%JAVA_HOME%/bin;%CATALINA_HOME%/bin;
    By setting the above you will be able to call
    java , javac and Tomcat's startup.bat and shutdown.bat from anywhere on the DOS Command line.
    >>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~I've moved the jdk to the director as recommended,
    but not sure hot to set the JAVA_HOME.See above...
    I haven't even gotten through the rest of your post
    yet, as I need to work on getting Eclipse set up
    again too Leave Eclipse for later ---- it will just complicate things for now.
    Once you have the project runnun under Tomcat we can figure out Eclipse.
    and I figure I might as well set up my
    "new" project using Virtual Hosts from the beginningLeave Virtual Host for later ------ it is easy to understand , I will explain it later , once you have the above basic set up running.
    and do this right... This is quite the learning
    experience ;)First , second and third time it is... but if you do this often, it will get much easier.

  • Client-cert auth impl in web.xml does not work in Oracle Application Server

    Hi,
    I am new to implementing security features on the web applications.. I have developed a new web service using jdev1012 and deployed in OAS 10.1.2. Its working fine according to the business requirements, but I am in need of implementing client-cert authentication to enable the web service available to only those who have client certificate.
    My server details are:
    Oracle Application Server 10g Release 2 (10.1.2)
    Server certificate is in place and SSL mode have been already enabled.. able to access my web service through https://<mydomain.com>/myws/TreqWS as well able to see the WSDL file through https://<mydomain.com>/myws/TreqWS?WSDL.
    I tried to include the following in my web.xml file as part of implementing CLIENT-CERT authentication.
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WSCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>CLIENT-CERT</auth-method>
    <realm-name>WSCollection</realm-name> <!-- am not sure about this realm-name and its purpose -->
    </login-config>
    It is not woking as expected, though I have restarted my oc4j container after including this content to the web.xml file. i.e, I am able to invoke the web service though my sample java client program, though I donot have client certificate/keystore.
    I believe I am missing something..Can anyone help me in this regard to implement CLIENT-CERT authentication successfully?
    Thanks,
    Ms

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • Iviews not working in SAP Portal in DHTML viewer

    Hi
    We are using BOXI 3.0 with SAP Integration Kit with SAP R/3 and SAP Portal.We are implementing Single Sign On from SAP Portal to BOXI 3.0 and have created few iviews in SAP Portal pointing to the reports in BOXI 3.0.
    The Single Sign On works fine when the viewer in the Iview is selected as Java or Activex Viewer but goes in the logon loop when the viewer is selected as html_frame(i.e dhtml viewer).Have followed the installation and user guides very closely as well.Any help will be greatly appreciated.
    Thanks and Regards
    Kamal

    Hi Ji
    Thanks for your reply.Yes we are using the master iview templates provided in the XI R3 media.
    There are few things noticed in this case which I would like to point out:
    1)Our environment is a distributed environment where Server 1 is the BO Server and Server 2 is the Web Server.
    2)When we are trying to the run the sample iviews(Alert and Thumbnail) we are getting the error as below:
    "Error: Server not found or server maybe down (FWM 01003) null"
    Point to note here is that this error is reproduced when the CMS System is selected/entered wrongly but how come the message is showing Server02 which is the webserver instead of Server01.
    3)When we trying to run Iview template it is redirected to login loop where the SAP Authentication is not seen.
    Regards
    Kamal

  • CS2 AS: Scripted "Import XML" is not working (like manual import does)

    I have problem where importing a XML (merge import + delete unmatched) by script simply doesnt work, where the manual import works 100% fine!!??
    (I'm exporting the XML, refill it with new text data (localisation process actually), and bring the xml back to commit the change in the Indesign document).
    With the script, the XML get imported as a child in the XML
    I have xml structure like:
    root
    node
    and get something like
    root
    node
    root
    node
    My code looks like this (sorry for the formatting):
    tell application "Adobe InDesign CS2"
    tell XML import preferences
    set create link to XML to false
    set ignore unmatched incoming to true
    set ignore whitespace to false
    set import style to merge import
    set import text into tables to false
    set import to selected to false
    set repeat text elements to false
    set remove unmatched existing to true
    end tell
    try
    import XML (document 1) from pFilePath
    on error pmsg
    display dialog pmsg
    end try
    end tell
    Is there something obvious that i'm misssing??
    ps: I have checked the XML structure correspondance already.. but i dont think that's the cause of problem as the manual import is working.
    Thanks for any help!
    Eric

    Hi Eric,
    If you can see the behavior in the user interface, you can see it in scripting. I think it makes perfect sense to have the XML import preferences set at the document level, because some documents need one set of preferences; other documents need another. I think (hope) that the user documentation covers the differences between application and document preferences (if not, I do, in my book).
    If you see a preferences object on both the application and the document, assume you want to use the document preferences. Unless you're trying to set preferences for new documents.
    Thanks,
    Ole

  • XMl Export not working as it should...

    Hi there guys
    Have been owrking on this concert for the last 4 days. 4 Seperate Color Projects 3 have an average of 600 clips and the last one has around 1200. There are also 3 dissolves on the last sequence. All were created in Color by using the Send to Color command from FCP. They are all rendered and the first 3 are back in FCP (Using Export XML from Color)and relinked with no problem to the graded media. This morning we tried to create the XML for the last sequence, when loading into FCP it completes the import but the timeline is empty. THe size of the XMl is also suspect (3.4MB) where the other ones average around 20MB.
    Now we still have all the media and it's graded, but have been unable to get a proper XML from Color so we can relink back in FCP.
    Any suggestions will be welcomed.
    Regards
    Patrick Morgan
    www.bluegiraffe.tv

    You are well in excess of the comfort number with 1200 or so events. That may or may not be the actual problem, though. "Dissolves", or maybe you mean keyframed transitions(?), don't usually pose any obstacles, either.
    If the Send to... FCP isn't working, then the other possibility to start the ball rolling, is to attempt to brute force load the XML file with no apps running, so that neither FCP nor COLOR are resident. Find the correct XML, right click (default is open with COLOR), change to FCP and give it a go.
    This approach surprised me a couple of days ago. I had a render crash. Usually, that means COLOR won't remember it did anything and one is obliged to start the render all over again. But I exported an XML, opened it and lo and behold, all the grades appeared up to 88 which was "offline". The rest were original source media. SAVE. Went back to COLOR and loaded the render queue with everything from 88 to 143. Render. Successful. SAVE. And then, for the h&LL of it, I sent out another XML. I thought I'd hack the two sequences together. To my wonderment, the sequence loaded intact with all grades resident, even though 1-87 had no status back in COLOR. Interesting.
    jPo

  • VERY URGENT :  BW Iview not working from EP

    Pls note : Everything works OK when we use a HTTP version of BroadVision.
    Dear Portal Gurus,
    <b>What I want to do :
    ====================</b>
    I want to integrate a BW Report into EP.
    This BW report has a first page with drop down boxes in it.If we click on the drop down box it branches to the second page of the report which is a filtered result set.
    <b>How I have implemented it :
    ===========================</b>
    <b>Approach 1 :
    </b>
    I created a BW iview and embedded the URL.
    I have set rules in  Apache Reverse Proxy to scan URLs which has the pattern /SAP/BW/  and /SAP( and direct the requests to the BW system ( e.g. SAPBWHOST.SUBDOMAIN.DOMAIN...)
    The second rule is used bcoz when we click on the drop down it creates a URL with the format /SAP(.....)/BW...
    <b>Problem with Approach 1 :
    </b>
    Apache Reverse Proxy does not seem to handle the second rule.When Apache encounters a URL with /SAP(....)/BW I get an error message /SAPBW(....)/BW.
    <b>Approach 2 :
    </b>
    As a work around and also since we might have multiple BW systems in future...to make things easy for the future...we have created an alias at the BW side e.g. /BWABC.
    So the expectation was that the requests would always start with /SAPABC and we would have a rule in Apache Reverse proxy to direct the request to BW system to handle it.
    The problem with this appraoch is it no longer creates URLs with /SAP(..)/BW.
    The request has /SAPABC.... then all other request have /SAP/..mime/ ... different types all starting with /SAP/
    I cannot have a rule in Apache to route requests with /SAP/ to BW as /SAP/ goes to ITS currently.
    In this second aproach I have created a URL Iview which starts with the Revsers Proxy name (HTTPS://..subdomain.domain) since if I use a BW Report Iview it always creates request like /SAP/BW/....I think it is coming from its PAR file.
    <b>Problem with Approach 2 :
    </b>
    The first page is visible but when I click on the drop down I get the message <u><b>"Web application processing terminated"</b></u>
    I initially created a URL Iview with the URL HTTP://SAPBW HOST....BEX URL and it works good with all the pages.But I cannot use this approach since if I come from outside my company's network it will error(it does) out since the domains are different,which is the correct behaviour(as told by my Reverse Proxy people)
    The SSO is working perfect between EP and BW.
    <b>System Info :</b>
    ==============
    We have a lead Portal which is Broadvision.The user enters into a HTTPS://...Domain.com website and the request goes thru Apache ---> EP...The request is NOT HTTPS,but it is HTTP as HTTPS is terminated at the Cisco switch before it reaches Apache/EP.So inshort the request uses HTTP Protocol but contians HTTPS in the request as a variable
    We are using EP 6.0 SP12.
    EP,BW 3.5 are HTTP systems.
    Pls let me know how to fix these issues.
    Thanks.
    Josh
    Message was edited by: Josh Mannings

    Josh,
    With Approach1 try adding a Rewrite Rule after your Proxy Pass statements.
    Something like this
    RewriteRule ^/(sap\(.*) http://host.sap.com:8010/$1 [P,L]
    Apache does not like the ( ),but using this rewrite rule should take care of that.  Remember to make sure that the Mod_Rewrite Module is loaded.
    Hope this helps.
    Keith

  • Importing xml is not working

    Hello i am trying to import an xml file into a document but its not allowing the import.
    Let me clarify a bit, i have allready imported the same xml in about 50-60 different documents without any problems, but now i have a document that does not allow me to import the xml.
    After looking a bit deeper i found the following:
    You can see that the parameter "Only import elements that match existing structure" is checked. When i uncheck this param, the xml is imported correctly.
    Now i tried to simulate is via scripting but with no success.
    Here's what i tried:
    InDesign.app.xmlImportPreferences.importToSelected = true;
    InDesign.app.xmlImportPreferences.importStyle = XMLImportStyles.MERGE_IMPORT;
    InDesign.app.xmlImportPreferences.ignoreUnmatchedIncoming = false;

    And the document import xml settings are the same as in the screenshot? Also, you are using extendscript, my example is actionscript and i've noticed quite some differneces between the 2 in the past (although they use the same API).
    Edit: There is also the fact that i didnt test your code ( ignorent as i am) and didnt see that your example actually DOES work. Thank you very much for your help,
    On a sidenote: can you explain me why it works if you call:
    InDesign.app.activeDocument.xmlImportPreferences
    but not when you call:
    InDesign.app.xmlImportPreferences
    My thought was that when you call it on the document, then it's only for the current document, but when you call it on the application, then it is for all documents that get processed by that application.
    Is this wrong? Or is it the way it is meant to be?

  • Xml report not working after compiling original standard form FNDRSTND

    Dear all,
    I add my some code behind the button of view output in standard FNDRSUN.fmb form, I compile it and was working fine. After few days we bounce
    the application and realize that xml report are not opening. I take original form and compile it, after bouncing it start working fine.
    But when we did the same exercise in production, Problem still persist
    Please need your solid assistant.
    Thanks

    Please post the details of the application release, database version and OS.
    Are you saying you can't open XML reports log/output files after you bounce the application services? If yes, what is the error? Can you find any errors in the OPP/CM/DB log files?
    Can you share the code you have implemented to view the output files?
    Thanks,
    Hussein

  • Xml schema not working in excel 2010 - xml corrupt

    I originally posted this thread in Microsoft Answers but was suggested to post here...
    I upgraded from xl2003 to xl2010. I'm trying to map xml schemas to xl2010 (using the source pane just as I did for xl2003) and the mapping works fine until I save the file and reopen it. Once I reopen the file and try accessing the map through the XML source
    pane, I get an error identifying the xml map is corrupt as follows:
    "The operation cannot be completed because the XML map is corrupt
    To fix this problem, remove the associated xml map from the workbook and then add the XML map back to the workbook.
    /schecma/element[1][@name = 'returnData']/complextype[1]/complexContent[1]/extension[1]Undefined <complexType>, '{http://www.....' is used as a base type."
    I've tried this in xl2007 and it works fine. I also read some blogs about xl2010 xml features and in some I found that this new version has enhanced security xml features.
    Any help would be appreciated.
    "innovation is the key to success"

    Interesting to note this is still a problem, but even more interesting is as to why Excel works fine the first time you bring in the xsd, but not after you save it.  I found information that says it's related to resolving externally referenced xsds,
    which is fine, but again, why does it work the first ime and not the second?   If it were a problem with external xsds then it should never work at all so I think that answer is bogus.
    Something has to be getting corrupted on the save and it's not important enough to MS to spend the time to fix it.

Maybe you are looking for

  • Come on Apple - this is not enough!

    Come on Apple - this account mess has to be streamlined! Really! My setup: 3 different Macs, 2 iPhones, one iTunes Library, my wife, me. We both use all 3 Macs and have our own accounts on each machine. We have both our own MobileMe account. (Wife ha

  • MySQL 5.5, Crystal Report for Visual Studio not working when hosted IIS

    Software and Component detail Microsoft visual studio 2010 MS .NET Framework Version 4.0.30319 RTMRel MYSQL SERVER Database Version 5.5 MySQL Connector 6.6.4 64 Bit MySQL ODBC Driver Version 5.2.a Crystal Report for Visusl Studio 64 Bit 13.0.5 (CRfor

  • Conversion from YYYYMMDD to Julian Date in BPEL

    Hi, My requirement is to convert date format from YYYYMMDD to Julian Date (CYYDDD) in BPEL. C - Stands for Century Would like to know a way to achieve this conversion in BPEL. Please suggest. Appreciate your quick help. Thanks Priyanka G

  • Screen protector... need to buy one today, input?

    Howdy. I bought a case mate case for the phone and love it. It came with a screen protector which works great until my nephew somehow managed to peel it back. now I have bubbles and fingerprints so I want to get a new one. Im traveling tomorrow for a

  • Can you make a DVD without a menu?

    We need to make a DVD of a Quicktime movie I created. I can do it just fine using one of the supplied themes. Looks great. But in this circumstance I need to make it so the movie keeps playing continuously in a loop. Is there a way to make it do that