Required attribute version missing from element xsl:stylesheet

Tools:
Jdeveloper : 10.1.3.3
Error:
Every time I add transform process activity and try to create mappings I am not able to save them.
In source view I see this error "Required attribute version missing from element xsl:stylesheet".
I cannot continue and do not understand how to proceed.
Any ideas ?

We have the same problem here from time to time. This has to be some kind of bug in JDeveloper. There is nothing wrong with our xsl files! But for some reason JDeveloper complains about the version attribute of xsl:stylesheet which in all the cases I've seen IS THERE!
Sometimes restarting JDeveloper helps - sometimes not. I even ended up reinstalling JDeveloper a few times.
I hoped this would be fixed in 10.1.3.3 (we use 10.1.3.2) but sadly it's not it seems.

Similar Messages

  • Problem in runing xalan( says: stylesheet requires attribute: version)

    I have test.xml & test.xsl (listed bellow).When i go to transform it
    by using xalan with the command line as:
    E:\xmlExamples>java org.apache.xalan.xslt.Process -IN test.xml -XSL test.xsl -OUT test.html
    I get the error:
    file:///E:/xmlExamples/stocks.xsl; Line 2; Column 71;
    file:///E:/xmlExamples/stocks.xsl; Line 2; Column 71; XSLT Error (javax.xml.transform.TransformerCon
    figurationException): javax.xml.transform.TransformerException: javax.xml.transform.TransformerExcep
    tion: stylesheet requires attribute: version
    Please help me out..
    //test.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet href="e:\xmlExamples\test.xsl" type="text/xsl">
    <company>
              <employee><name>X</name></employee>
              <employee><name>Y</name></employee>
              <employee><name>Z</name></employee>
    </company>
    //test.xsl
    <?xml version="1.0" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" version="1.0">
    <xsl:template match="/">
    <html>
    <head>
    <title>emp</title>
    </head>
    <body bgcolor="#ffffcc" text="#0000ff">
    <xsl:apply-templates/>
    </body>
    </html>
    </xsl:template>
    <xsl:template match="company">
    <B>COMPANY</B>
    <xsl:for-each select="emloyee">
         <i><xsl:value-of select="name"/></i>
    </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>

    try this xsl:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html" encoding="utf-8"/>
         <xsl:template match="/">
              <html>
                   <head>
                        <title>emp</title>
                   </head>
                   <body bgcolor="#ffffcc" text="#0000ff">
                        <xsl:apply-templates/>
                   </body>
              </html>
         </xsl:template>
         <xsl:template match="company">
              <B>COMPANY</B>
              <xsl:for-each select="emloyee">
                   <i>
                        <xsl:value-of select="name"/>
                   </i>
              </xsl:for-each>
         </xsl:template>
    </xsl:stylesheet>

  • XSL-1009: Attribute 'xsl:version' not found in 'xsl:stylesheet'

    I'm just starting to test XML in Oracle 8.1.7 for NT, and received the following error while testing the Oracle provided "xslsample" procedure. I modified the "iden.xls" stylesheet and added version="1.0", but still receive the same error.
    execute xslsample('C:\XML\Sample','family.xml','iden.xsl','family.out','errors.txt');
    Parsing XML document C:\XML\Sample/family.xml
    Parsing XSL document C:\XML\Sample/iden.xsl
    The id is16777216
    The id is16777217
    XSL Root element information
    Qualified Name: xsl:stylesheet
    Local Name: stylesheet
    Namespace: http://www.w3.org/XSL/Transform/1.0
    Expanded Name: http://www.w3.org/XSL/Transform/1.0:stylesheet
    A total of 1 XSL instructions were found in the stylesheet
    BEGIN xslsample('C:\XML\Sample','family.xml','iden.xsl','family.out','errors.txt'); END;
    ERROR at line 1:
    ORA-20100: Error occurred while processing: XSL-1009: Attribute 'xsl:version'
    not found in 'xsl:stylesheet'.
    ORA-06512: at "SCOTT.XSLPROCESSOR", line 22
    ORA-06512: at "SCOTT.XSLPROCESSOR", line 346
    ORA-06512: at "SCOTT.XSLSAMPLE", line 59
    ORA-06512: at line 1
    null

    There is a bug in the demo stylesheet. In iden.xsl the line:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">should instead be:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  • MissingFieldException[ The following required field is missing from the lau

    Hi, I'm new to this forum so please put this thread in the right place if I have made a mistake.
    But here's my problem:
    I'm using jre 7 with the latest version.
    I downloaded and wanted to launch a Java based .jar game, which runs perfectly for the other users but my JRE gives the following error:
    Application error - unable to launch the application.
    MissingFieldException[ The following required field is missing from the launch file: <jnlp>]
         at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main.access$000(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    On the forum where is the game developed i got the following answer:
    ''+it seems your OS/jre installation tries to start the jar as an applet which fails, because it's a regular application and not an applet. is there any way you can convince your jre to start LS as an application? i would like to give better/more detailed advice, but i'm not running windows, so i can't check for myself/try to work out a step-by-step guide.+ ''
    As I have browsed the internet for hours and haven't come up with a solution I'm asking for some help.

    That error seems to indicate that the JNLP file is broken because it is missing the starting starting <jnlp> XML tag; I'll take a guess and just say that it is completely empty. Since it works for other users, apparently somehow when you download it on your computer you end up with a broken file. No idea why, no way for me to know why either. I don't have access to your computer. All I can say is: try in another browser and if that doesn't work, try on another computer. If it works there, well then you may have to face the fact that your computer might need a clean install.
    And PS: this is a Java programming forum, not technical support for whatever game you want to play that just happens to use Java.

  • Error: The following required field is missing from the launch file: jnlp

    PLEASE help me.
    I was at Starbuck's today trying to install new software for my new wireless internet card and when I finished I could no longer access any of my applications that require java... I have a macbook pro dual platform computer. When I try to access www.bayphoto.com to download my application it says: (see below) (which I think is strange because it's all about Starbuck's and it should be my java code- I think...). Like I said - I have no idea what's going on or how to fix this. Please help me or at least tell me whom to call- I feel so stupid- I just need help- ATT? Starbuck's? Sun?
    Error: The following required field is missing from the launch file: <jnlp>
    Under the "exceptions" tab it says:
    MissingFieldException[ The following required field is missing from the launch file: <jnlp>]
         at com.sun.javaws.jnl.XMLFormat.parse(XMLFormat.java:88)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(LaunchDescFactory.java:52)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(LaunchDescFactory.java:64)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(LaunchDescFactory.java:72)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Launcher.java:214)
         at com.sun.javaws.Launcher.prepareToLaunch(Launcher.java:127)
         at com.sun.javaws.Launcher.launch(Launcher.java:95)
         at com.sun.javaws.Main.launchApp(Main.java:305)
         at com.sun.javaws.Main.continueInSecureThread(Main.java:213)
         at com.sun.javaws.Main$1.run(Main.java:108)
         at java.lang.Thread.run(Thread.java:613)
    Under the "launch file tab" it says:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>AT&T Wi-Fi Service @ Starbucks</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="description" content="Starbucks Entertainment presented by AT&T Hotspot" />
    <meta name="keywords" content="AT&T, Starbucks, Wi-fi, Wifi, Hotspot, coffee, music, books, games, fresh sheet, third place, online" />
    <meta name="author" content="Starbucks Entertainment" />
    <link rel="shortcut icon" type="image/ico" href="/favicon.ico" />
    <script type="text/javascript" language="javascript" src="/dhtml/master.js"></script>
    <script type="text/javascript" language="javascript" src="/dhtml/x_core.js"></script>
    <script type="text/javascript" language="javascript" src="/dhtml/x_event.js"></script>
    <script type="text/javascript" language="javascript" src="/dhtml/x_xhr.js"></script>
    <script type="text/javascript" src="/dhtml/att/dhtml.js"></script>
    <style type="text/css">
    copied from starbucks master.css
    body {
         background:#200D06 url("/graphics/att/themes/sbux/hotspot_bkgd.jpg") repeat-x scroll;
         color:#555555;
         font-family:Arial,Helvetica,sans-serif;
         font-size:small;
         line-height:1.5em;
         margin:0pt;
         padding:0pt;
         text-align:center;
    #wrap {
         font-size:95%;
         margin:0pt auto;
         text-align:left;
         width:980px;
    #starbucksframe {
         margin:15px 0pt 0pt;
         padding:0pt;
    /*our addendae*/
    div#header {
         height:95px;
         width:980px;
         background-image:url("/graphics/att/themes/sbux/header_bg.jpg");
         background-repeat:no-repeat;
         margin:0px;
         background-top:0px;
         background-left:0px;
         background-color:transparent;
    div#btn_ctti {
         position:absolute;
         top:10px;
         margin-left:388px;
    div#sbux_lfrm {
         display:inline;
         font-size:10px;
         color:#FFFFFF;
         margin-left:245px;
         top:49px;
         position:absolute;
         line-height:10px;
         font-family:verdana,arial,helvetica,sans-serif;
    div#sbux_lfrm form {
         margin:0px;
    div#sbux_lfrm a, div#sbux_lfrm a:link, div#sbux_lfrm a:hover, div#sbux_lfrm a:active, div#sbux_lfrm a:hover {
         color:#FFFFFF;
    div#sbux_lfrm form label {
         display:none;
         visibility:hidden;
    div#sbux_lfrm form input, div#sbux_lfrm form select {
         font-family:verdana,arial,helvetica,sans-serif;
         vertical-align:middle;
    div#sbux_lfrm input.example {
         color:#656565;
    #sbux_lfrm_row1, #sbux_lfrm_row2 {
         margin:0px;
    #sbux_lfrm input#username, #sbux_lfrm input#password, #sbux_lfrm input#password_pw {
         width:136px;
         margin-right:6px;
         font-size:10px;
    #sbux_lfrm select#roamRealm {
         width:130px;
         font-size:10px;
         color:#656565;
         margin-right:6px;
    #sbux_lfrm_row2 {
         position:absolute;
         top:21px;
         left:-4px;
    div#aupAgree_row {
         margin-top:4px;
         position:relative;
         left:-4px;
    div#aup_box {
         float:left;
         position:relative;
         top:-3px;
    div#aup_text {
         float:left;
         line-height:10px;
    div#tm_badge {
         width:115px;
         height:94px;
         float:right;
         margin-right:0px;
         margin-top:0px;
    div#password_value {
         display:inline;
    div#hidden_pw_field {
         display:none;
         visibility:hidden;
    div#sbux_lfrm.css_form {
         margin-top:0px;
    </style>
    <style>
    /* IE specs */
    body {
         font-size: x-small; /* IE5 Win */
         voice-family: "\"}\"";
         voice-family: inherit;
         font-size: small;
    html>body { /* be nice to Opera */
         font-size: small;
    /* self-clearing floats
    /* trigger hasLayout and target ie5+6/win only */
    *:first-child+html #header,
    *:first-child+html #login_wrapper {
         height:95px;
    #ny_legal {
         color:#CAC3BF;
         font-size:11px;
         font-weight:bold;
         padding:0;
    #ny_legal a:link {
         color:#CAC3BF;
         font-size:11px;
         font-weight:bold;
         padding:0;
    </style>
    </html>
    TOO LONG TO INCLUDE ALL CODE

    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="file:///C:\eclipse\workspace\studentconverter\webroot" href="studentconverter.jar" >two things wrong here -
    first codebase is not legal URL, File.separator (backslash on windows) needs to be converted to forward slash in URL's.
    second, the href is not to the jnlp file, it is to the jar !
    href="studentconverter.jar" - should this be href="studentconverter.jnlp" ?
    /Dietz

  • FAQ: My files are missing from Elements Organizer, or How to reconnect your images?

    What is Elements Organizer?
    The Elements Organizer can be used to arrange, codify, systemize, group, and classify your media. When you import your images and video into the Orgnizer, you are adding information about your files to a catalog. Your files remain on your hard drive where they were, unless you are importing them from a camera, in which case the files are copied to your hard drive to a location of your choosing.
    What is an Elements Organizer catalog?
    The catalog is a database that stores information about the files you've imported into Elements Organizer. When importing a file, the first thing Organizer does is collect the file's name and location on the hard drive. If the file has any attached compatible metadata, such as keyword tags, these are imported as well. You can use multiple catalogs and yourr catalogs can be carried forward from version to version.
    Why does Elements Organizer say my files are missing?
    Since the catalog database only stores information about your file, and not the file itself, if any of that information is changed outside of Elements Organizer, the connection to the file is lost. There are three ways this can happen: the file name is changed, the file location is changed, or the file has been deleted. If you need to rename, move, or delete a file, you can do so within the Elements Organizer, and then the connection is not lost.
    What is Reconnecting?
    When a file has been renamed, moved, or deleted, the catalog database needs to be updated with that new information. The Reconnection process allows you to point out a file's new name, it's new location, or to delete the database entry on your file if the file no longer exists on your hard drive.
    Where can I learn more?
    Managing Files in Elements Organizer
    Get photos from files and folders
    Importing photos from a digital camera
    Import photos from a previous version
    Moving files
    Hiding and deleting photos
    Managing Catalogs in Elements Organizer
    Use Backup, Restore to move catalog | Organizer | Elements 6 or later
    Troubleshoot catalog backup, upgrade | Organizer | Elements 6 or later
    Freeze when you repair a catalog | Organizer | Elements 6 and later
    Reconnecting Media in Elements Organizer
    Reconnect missing files | Photoshop Elements | Windows
    Can't edit, open, reconnect photos or media | Incorrect drive letter | Elements 6 or later Organizer | Windows

    Anything besides reconnecting all the files, such as switching the drive letter  (if that is even possible)?
    The easiest way to fix this is to change the drive letter. Here are instructions for Windows 7: http://pcsupport.about.com/od/windows7/ht/change-drive-letters-windows-7.htm
    To prevent this from happening again, you can change the drive to some very high letter, like X:, and then it should remain constant. In Lightroom, right-click on the top level folder ,and select Find Missing Folder, and then point it to your X: drive.
    I know I can "Import---Add to catalog"  all the photos from my external hard drive back into the catalog but I do have a question:
    I won't address your question specifically, since re-importing is a very bad idea. A very bad idea. You will lose information that is not in the sidecar files, such as collection members, edit history, flags, virtual copies, stacks and a few other things. Just don't go there. Change the drive letters, as I explained.

  • Print settings missing from Elements 8.0 for my canon ip4820

    I have the exact installation on my windows 7 pc and I get a detail screen with 5 print settings, on the macbook with Lion I get only 3 settings and I can't bring up the canon printer settings dialogue that allows me to set standard, photo, etc along with borderless, high quality, etc, you get the idea I think.  On mac I only get 1. Select printer 2. select paper size, and 3. select print size.  On windows 7 I have installed the same printer and I get 1-5 which includes also step 2 is a "printer settings" which includes a change settings and brings up an advanced settings box.
    Any Help is appreciated.  

    Well I am using a mac with photoshop elements and I imagine the print settings would be the same whether it was elements or full photoshop.  Maybe someone could provide a helpful response for a beginner here, thanks in advance.  but I'll look around for a more appropriate forum if there is one. 

  • Passing Rowkey from an XSL?

    Is there a way to pass the rowkey from an xsl stylesheet to a jsp page? I'm trying to use data tags (UPDATE) in a jsp page, however I receive the following error :
    javax.servlet.jsp.JspException: RowKey is null, row tag cannot find a row
         void jolene_html.jspUpdate._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.app.JspApplication.dispatchRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.JspServlet.doDispatch(oracle.jsp.app.JspRequestContext)
         void oracle.jsp.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.lite.web.JupServlet.service(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
         void oracle.lite.web.MimeServletHandler.handle(oracle.lite.web.JupApplication, java.lang.String, int, oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
         void oracle.lite.web.JupApplication.service(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
         void oracle.lite.web.JupHandler.handle(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
         void oracle.lite.web.HTTPServer.process(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
         boolean oracle.lite.web.HTTPServer.handleRequest(oracle.lite.web.JupInputStream, oracle.lite.web.JupOutputStream)
         boolean oracle.lite.web.JupServer.handle(oracle.lite.web.JupInputStream, oracle.lite.web.JupOutputStream)
         void oracle.lite.web.SocketListener.process(java.net.Socket)
         void oracle.lite.web.SocketListener$ReqHandler.run()
    Can this be done? or do I have to find some sort of work around for it? Any and All help would be excellent....
    Jolene

    Could someone please respond to this post for me? Possible
    someone from Oracle. I've tried accessing some of the howtos
    that are posted throughout the forum on this topic, but they
    aren't displaying.... I'm going to post my code for further
    clarification.
    Many thanks in advance.
    My Edit form: (jsp)
    <!-- FileName: jspMyDetail.jsp
    Accepts Custid parameter from jspMyBC4J.jsp to
    display detail data.
    Xsl: xdetailXSL.xsl -->
    <?xml version="1.0"?>
    <%@ page language="java" import="oracle.jbo.RowSet"
    session="true" buffer="none" autoFlush="true"
    isThreadSafe="true" contentType="text/html; charset=ISO-8859-
    1" isErrorPage="false" %>
    <%@ page language="java" import="java.sql.*" session="true"
    buffer="none" autoFlush="true" isThreadSafe="true"
    contentType="text/html; charset=ISO-8859-1" isErrorPage="false"
    %>
    <jsp:useBean class="oracle.jbo.html.databeans.XmlData"
    id="xmlDetail" scope="request" >
    <%
    xmlDetail.setStylesheet("xMyDetail.xsl");
         xmlDetail.setReleaseApplicationResources(false);
         xmlDetail.setDisplayAttributes
    ("Custid,Name,Address,City,State,Zip,Area,Phone,Repid,Creditlimit
    ,Comments");
         xmlDetail.initialize
    (pageContext,"BC4JTest_BC4JTest_BC4JTestModule.CustomerView");
    // Get the rowset from the XmlData data web bean
    RowSet r = xmlDetail.getRowSet();
    // Set the Where clause on this RowSet's View Object.
    String CustomerId=request.getParameter("pCustid");
    // Set the Where clause bind variable.
    if (CustomerId != null) {
    r.setWhereClauseParam(0, CustomerId);
    r.getViewObject().setWhereClause("Custid = :0");
    r.executeQuery();
    xmlDetail.render();
    %>
    </jsp:useBean>
    My XSL file:
    <!-- FileName: xdetailXSL.xsl -->
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="*|/"><xsl:apply-templates/></xsl:template>
    <xsl:template match="text()|@*"><xsl:value-of
    select="."/></xsl:template>
    <xsl:template match="/">
    <HTML xmlns:jbo="jbo">
              <BODY>
    <FORM name="CustomerView_form" action="jspUpdate.jsp">
    <b>Add New Customer</b>
                   <table width="80%" border="0"
    bgcolor="#BDCFDF">
                   <xsl:for-each
    select="Results/CustomerView">
                        <tr align="left">
    <td bgcolor="#BDCFDF">Customer Id:</td>
    <td bgcolor="#BDCFDF">
    <input type="text" size="10" name="Custid">
    <xsl:attribute name="value"><xsl:value-of
    select="Custid"/></xsl:attribute></input>
    <input type="hidden" size="10" name="_Custid">
    <xsl:attribute name="value"><xsl:value-of
    select="Custid"/></xsl:attribute></input></td>
    <td bgcolor="#BDCFDF">Firstname:</td>
    <td bgcolor="#BDCFDF">
    <input type="text" size="40" name="Name">
    <xsl:attribute name="value"><xsl:value-of
    select="Name"/></xsl:attribute></input>
    <input type="hidden" size="40" name="_Name">
    <xsl:attribute name="value"><xsl:value-of
    select="Name"/></xsl:attribute></input></td>
    </tr>
    <tr>
    <td bgcolor="#BDCFDF" width="15%"> </td>
    <td bgcolor="#BDCFDF" width="15%"> </td>
    <td bgcolor="#BDCFDF">Address:</td>
                             <td bgcolor="#BDCFDF">
    <input type="text" size="40" name="Address">
    <xsl:attribute name="value"><xsl:value-of
    select="Address"/></xsl:attribute></input>
    <input type="hidden" size="40" name="_Address">
    <xsl:attribute name="value"><xsl:value-of
    select="Address"/></xsl:attribute></input></td>
                        </tr>
    <tr>
    <td bgcolor="#BDCFDF" width="15%">Phone: </td>
    <td bgcolor="#BDCFDF" width="15%">
    <input type="text" size="3" name="Area">
    <xsl:attribute name="value"><xsl:value-of
    select="Area"/></xsl:attribute></input>
    <input type="hidden" size="3" name="_Area">
    <xsl:attribute name="value"><xsl:value-of
    select="Area"/></xsl:attribute></input>
    <input type="text" size="10" name="Phone">
    <xsl:attribute name="value"><xsl:value-of
    select="Phone"/></xsl:attribute></input>
    <input type="hidden" size="10" name="_Phone">
    <xsl:attribute name="value"><xsl:value-of
    select="Phone"/></xsl:attribute></input></td>
    <td bgcolor="#BDCFDF">City:</td>
                             <td bgcolor="#BDCFDF">
    <input type="text" size="40" name="City">
    <xsl:attribute name="value"><xsl:value-of
    select="City"/></xsl:attribute></input>
    <input type="hidden" size="40" name="_City">
    <xsl:attribute name="value"><xsl:value-of
    select="City"/></xsl:attribute></input></td>
                        </tr>
    <tr>
    <td bgcolor="#BDCFDF" width="15%">Rep Id:</td>
    <td bgcolor="#BDCFDF" width="15%">
    <input type="text" size="10" name="Repid">
    <xsl:attribute name="value"><xsl:value-of
    select="Repid"/></xsl:attribute></input>
    <input type="hidden" size="10" name="_Repid">
    <xsl:attribute name="value"><xsl:value-of
    select="Repid"/></xsl:attribute></input></td>
    <td bgcolor="#BDCFDF">State:</td>
                             <td bgcolor="#BDCFDF">
    <input type="text" size="05" name="State">
    <xsl:attribute name="value"><xsl:value-of
    select="State"/></xsl:attribute></input>
    <input type="hidden" size="05" name="_State">
    <xsl:attribute name="value"><xsl:value-of
    select="State"/></xsl:attribute></input></td>
                        </tr>
    <tr>
    <td bgcolor="#BDCFDF" width="15%">Credit Limit:</td>
    <td bgcolor="#BDCFDF" width="15%">
    <input type="text" size="20" name="Creditlimit">
    <xsl:attribute name="value"><xsl:value-of
    select="Creditlimit"/></xsl:attribute></input>
    <input type="hidden" size="20" name="_Creditlimit">
    <xsl:attribute name="value"><xsl:value-of
    select="Creditlimit"/></xsl:attribute></input></td>
    <td bgcolor="#BDCFDF">Zip Code:</td>
                             <td bgcolor="#BDCFDF">
    <input type="text" size="10" name="Zip">
    <xsl:attribute name="value"><xsl:value-of
    select="Zip"/></xsl:attribute></input>
    <input type="hidden" size="10" name="_Zip">
    <xsl:attribute name="value"><xsl:value-of
    select="Zip"/></xsl:attribute></input></td>
                        </tr>
              </xsl:for-each>
    </table>
                   <table width="80%" border="0"
    bgcolor="#BDCFDF">
                   <xsl:for-each
    select="Results/CustomerView">
    <tr>
    <td bgcolor="#BDCFDF" width="11%">Comments:</td>
    <td bgcolor="#BDCFDF" width="55%">
    <input type="text" size="80" name="Comments">
    <xsl:attribute name="value"><xsl:value-of
    select="Comments"/></xsl:attribute></input>
    <input type="hidden" size="80" name="_Comments">
    <xsl:attribute name="value"><xsl:value-of
    select="Comments"/></xsl:attribute></input></td>
    <td bgcolor="#BDCFDF" width="0%"></td>
    <td bgcolor="#BDCFDF" width="0%"></td>
    </tr>
    </xsl:for-each>
    </table>
    <p align="left"></p>
              <input type="submit"
    value="Update"></input>   
    <input type="submit" value="Cancel"></input>  
    </FORM>
              </BODY>
         </HTML>
         </xsl:template>
    <xsl:apply-templates/>
    </xsl:stylesheet>
    My Update jsp
    String MyRowKey= request.getParameter("Custid");
    out.println(MyRowKey);
    %>-->
    <jbo:Row id="myRow" datasource="ds" action="Current"
    </jbo:Row><%
    String myValue = ds.getRowKey(myRow);
    // Object myName = myRow.getAttribute("Ename");
    out.println( myValue );
    %>
    <jbo:Row id="myFind" datasource="ds" rowkeyparam="<%=myValue%
    " action="Find" ></jbo:Row>
    <jbo:Row id="myrow" datasource="ds" action="Update">
    <jbo:SetAttribute dataitem="*"/>
    </jbo:Row>
    <P>
    <b>Posting Changes...</b>
    </P>
    <jbo:PostChanges appid="BC4JTest.BC4JTestModule"/>
    <P>
    <b>Committing Changes...</b>
    </P>
    <jbo:Commit appid="BC4JTest.BC4JTestModule"/>
    <%
    catch(Exception exc)
    out.println("<pre>");
    exc.printStackTrace(new java.io.PrintWriter(out));
    out.println("</pre>");
    %>
    <P>
    Click here to continue
    </P>
    </center>
    </body>
    <jbo:ReleasePageResources releasemode="Stateless"/>
    </html>

  • Xslsample error - xsl:version not found in xsl styleshee

    I am getting the following error when running the example
    xslsample. I am able to run the domexample.
    omor>execute xslsample
    ('d:\orant\xdk\plsql\demo', 'family.xml', 'iden.xsl', 'family.out
    ', 'errors.txt');
    Parsing XML document d:\orant\xdk\plsql\demo/family.xml
    Parsing XSL document d:\orant\xdk\plsql\demo/iden.xsl
    The id is5242880
    The id is5242881
    XSL Root element information
    Qualified Name: xsl:stylesheet
    Local Name: stylesheet
    Namespace: http://www.w3.org/XSL/Transform/1.0
    Expanded Name: http://www.w3.org/XSL/Transform/1.0:stylesheet
    A total of 1 XSL instructions were found in the stylesheet
    BEGIN xslsample
    ('d:\orant\xdk\plsql\demo', 'family.xml', 'iden.xsl', 'family.out
    ', 'errors.txt'); END;
    ERROR at line 1:
    ORA-20100: Error occurred while processing: XSL-1009:
    Attribute 'xsl:version' not found in 'xsl:stylesheet'.
    ORA-06512: at "SYS.XSLPROCESSOR", line 22
    ORA-06512: at "SYS.XSLPROCESSOR", line 346
    ORA-06512: at "SYS.XSLSAMPLE", line 59
    ORA-06512: at line 1

    Hi,
    as I wrote in the inital message, we even left out the output method or used "application/pdf". The result is unfortunately always the same. And I still claim this is not a problem with the stylesheet itself, it has to do something with the mobile's environment.
    Something I didn't tell: we have 2 servlets in our application, 1 responsible for output in html and 1 in pdf. The .fo stylesheet passed to the 'html servlet' is parsed correctly (and shows the source code, because it does not know about fo and conversion to pdf), the .xsl stylesheet passed to the 'pdf servlet' raises same exception/same line. You might tell us that there is a problem with the 'pdf servlet', but once again: why in online it is working?
    Greetings and thanx very much for your precious time!

  • Just a few quirks on Import from Elements and Keywords.

    The Import from Elements seems like a good idea but the implementation is a little 'hit and miss'.
    Tags in Elements (the Keywords) are not always picked up in LR. I can't work out what works and what doesn't but some Tags and the Tag Hierarchy come over correctly and some don't.
    Version sets from Elements seem to be ignored. I suspects Stacks will as well.
    Also I'm finding the use of Keywords a little restrictive in LR now that I have to sort out my imported images.
    1. I'd like to be able to delete an Image when I have selected it by keyword - (yes Sid did provide a work around, thanks) but it really should just be a question of hitting delete.
    2. I'd like to be able to stack images when I have selected them by keyword. You can't do this unless you go to Folder View or All Photographs.
    I kind of get the impression that the way in LR works is great if you are going forward from a clean install. That is downloading images, reviewing, culling and organising. However, if you have an existing database to straighten out, then LR needs a little bit of polish to make this process easier.
    Colin

    #2 is about the only one I can offer any advice on.  First of all, I'd go to Download -> Multimedia -> TV@nywhere Master and make sure that I had the latest version of the TV@nywhere Master Driver and MSI Radio.
    Secondly, you could probably silence MSI Radio by opening the Windows volume control (or whatever it's called in your version of windows) and muting whatever input you're using to feed sound from the TV@nywhere Master to your sound card.  On my system MSI Radio will actually un-mute Line In when I run it and re-mute when I exit.
    Thirdly, when MSI Radio does misbehave and not shut up on exit, I can usually get it to hush by running and then exiting MSI PVS aka WinDVR.
    Fourthly, I've noticed that my MSI Radio only fails to shut up if I click the Settings button while it is running.  Once I get the settings set, it doesn't give my any more problems as long as I can resist doublechecking my settings.
    Correction: one problem.  It always mutes my master recording balance when it runs, meaning that anything I record with MSI Radio or PVS will be nothing but silence.  I have no idea what that's about.

  • Urgent! How to suppress indents in output from (XML , XSL) -- HTML

    I make transformation (XML , XSL) --> HTML using parser v2 of Oracle XDK for Java v 9.2.0.2.0
    I want to generate html in which several tags will follow one after another without new line, and indents.
    Like this
    <html>
    <body>
    <img src="1.jpg"/><img src="2.jpg"/>
    </body>
    </html>
    Only in this case images will be visualized in IE5 together without spaces.
    But xsl-processor is formatting output text: put each tag on new line and make indents for child tags.
    I tried to
    1) eliminate white spaces in xsl
    2) use <xsl:output indent="no"/>
    3) use <xsl:strip-space elements="*"/>
    4) use method setPreserveWhitespace(true/false) of XMLParser (oracle.xml.parser.v2.XMLParser)
    Xsl-processor continue to format output text.
    my xml
    <list>
    <element name="1.jpg" />
    <element name="2.jpg" />
    </list>
    my xsl
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" indent="no"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="list">
    <html><body>
    <img src="{element[1]/@name}"/><img src="{element[2]/@name}"/>
    </body></html>
    </xsl:template>
    </xsl:stylesheet>
    html-output
    <html>
    <body>
    <img src="1.jpg"/>
    <img src="2.jpg"/>
    </body>
    </html>
    Please help me!

    html-output
    <html>
    <body>
    <img src="1.jpg"/>
    <img src="2.jpg"/>
    </body>
    </html>
    Please help me!

  • I have just upgraded from Elements/Premiere elements 11 to version 12. I am running on a PC with Windows 7. When I try to run video from the existing catalogue or video newly imported I get a window stating "....system does not have the required compresso

    I have just upgraded from Elements/Premiere elements 11 to version 12. I am running on a PC with Windows 7. When I try to run video from the existing catalogue or video newly imported I get a window stating "....system does not have the required compressor/decompressor (codec) installed" Where has it gone? Where do I get a new one? I am getting REALLY REALLY fed up with trying to find an answer!!!!!!!!

    Try to disable hardware acceleration in Firefox.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Retrieving missing keyword tags from a previous version of Photoshop Elements

    I just purchased an upgraded version of Photoshop Elements 12 and Premiere Elements 12, but after all my photos were converted to the new version, all of my keyword tags from the previous version are not showing.  How do I retrieve them?

    Thank you so much.  I had tried to use both of those buttons, but I didn't know that I had to use them in that order in order for the tags to show up, and I couldn't find the answer in the Adobe help section, either.  Looks like all my tags are there and the problem is solved.  Thanks again.

  • Accessing lookup table from XSL stylesheet

    HI Gentlemen,
    Given two XMLTYPE tables: a Master and a Lookup. The Lookup table consists merely of {key, value} pairs. I am about to display Master table contents--subtrees selected from one big XMLTYPE column. The display process is governed by an appropriate XSL stylesheet. Master table elements have data only in their attributes. For example: <time U="2"/> which means that the value of the Unit attribute is 2, meaning "Minute" according to the Lookup table.
    My question is: Does anybody of you know a fast and safe method to SELECT from the Master AND Lookup (inner join, as in a pure relational environment), thereby REPLACING the key value with its MEANING (textual interpretation). This would be extremely important as numeric codes do not have meaning to the user. User-friendly behavior requires that all important information be displayed at once. (Note that I have nothing against modifying my stylesheet to query the Lookup table as well, if no straightforward master-detail querying technique exists.)
    Please give me an idea if you have.
    Thank you in advance, kind regards:
    Miklos HERBOLY

    HI odie,
    Here is the stuff you requested. I admit, it is fairly abundant, but you will see the structure and the main points. Some of the elements are multiple-occurrence, hence the XMLTABLE() solution was no good because of the large number of generated rows. The stylesheet would be ideal to display embedded "nested collections".
    Please let me know if you have anything for me.
    Thanks, regards
    Miklos
    HERE ARE THE XMLTYPE MASTER TABLE CONTENTS. TABLE IS NON-SCHEMA-BASED.
    =====================================================================
    SQL> select * from z;
    XML_DOCUMENT
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    <?xml-stylesheet type="text/xsl" href="file://c:/XSL/ziffer.xsl"?>
    <ehd:ehd xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:ehd/go/001" xmlns:ehd="urn:ehd/001" ehd_versio
    n="1.20">
    <ehd:header>
    <ehd:id EX="E7F454A3-0F6E-460e-A495-BBBBBBBBBBB3" RT="1.2.276.0.76.3.1.1"/>
    <ehd:version_nbr V="1"/>
    <ehd:document_type_cd V="851"/>
    <ehd:service_tmr V="2006-07-01..2007-12-31"/>
    <ehd:origination_dttm V="2006-05-03"/>
    <ehd:provider>
    <ehd:provider.type_cd V="KV" S="1.2.276.0.76.5.104" SV="1.0"/>
    <ehd:person>
    <ehd:id EX="3223" RT="2.3.5.3.T.e.s.t" RTV="1.10"/>
    <ehd:person_name>
    <ehd:nm>
    <ehd:GIV V="Hans"/>
    <ehd:PFX V="von"/>
    <ehd:FAM V="Mustermann"/>
    </ehd:nm>
    </ehd:person_name>
    <ehd:organization.nm V="KV Hessen"/>
    <ehd:addr>
    <ehd:STR V="Ottostr."/>
    <ehd:HNR V="12"/>
    <ehd:ZIP V="50859"/>
    <ehd:CTY V="Köln"/>
    </ehd:addr>
    <ehd:telecom V="tel:030-4005-2121 begin_of_the_skype_highlighting              030-4005-2121      end_of_the_skype_highlighting begin_of_the_skype_highlighting              030-4005-2121      end_of_the_skype_highlighting"/>
    </ehd:person>
    <ehd:organization>
    <ehd:id EX="46" RT="1.2.276.0.76.5.233"/>
    </ehd:organization>
    </ehd:provider>
    <ehd:interface>
    <ehd:id EX="SDEBM" RT="1.2.276.0.76.5.109" RTV="1.0"/>
    <ehd:interface.nm V="Gebührenordnungsstammdatei / Satzart 851"/>
    <ehd:version V="01.30"/>
    </ehd:interface>
    </ehd:header>
    <ehd:body>
    <gnr_liste>
    <gnr V="01700V" USE="46" USE-DOMAIN="1.2.276.0.76.5.233" VT="2006-05-03">
    <allgemein>
    <gueltigkeit>
    <service_tmr V="2006-07-01.."/>
    <effective_tmr V="2006-07-01.."/>
    </gueltigkeit>
    <legende>
    <kap_bez V="1.7" DN="Gesundheits- und Früherkennungsuntersuchungen, Mutterschaftsvorsorge, Empfängnisregelun
    g und Schwangerschaftsabbruch (vormals Sonstige Hilfen)">
    <bereich V="II" DN="Arztgruppenübergreifende allgemeine Leistungen"/>
    <kapitel V="1" DN="Allgemeine Leistungen"/>
    <abschnitt V="7" DN="Gesundheits- und Früherkennungsuntersuchungen, Mutterschaftsvorsorge, Empfängnisregel
    ung und Schwangerschaftsabbruch (vormals Sonstige Hilfen)"/>
    </kap_bez>
    <kurztext V="Grundpauschale für Fachärzte für Laboratoriumsmedizin u.a."/>
    <langtext V="Grundpauschale für Fachärzte für Laboratoriumsmedizin, Mikrobiologie und Infektionsepidemiologi
    e, Transfusionsmedizin und ermächtigte Fachwissenschaftler der Medizin für die Erbringung von Laborleistungen gemäß den
    Richtlinien des Gemeinsamen Bundesausschusses über die ärztliche Betreuung während der Schwangerschaft und nach der En
    tb indung (Mutterschafts-Richtlinien) und/oder der Richtlinien des Gemeinsamen Bundesausschusses zur Empfängnisregelung
    und zum Schwangerschaftsabbruch bei Probeneinsendung, "/>
    <quittungstext V="Grundpauschale für Fachärzte für Laboratoriumsmedizin u.a."/>
    </legende>
    <anmerkungen_liste>
    <anmerkung V="Die Leistung nach der Nr. 01100 ist nicht berechnungsfähig, wenn Sprechstunden vor 07:00 Uhr o
    der nach 19:00 Uhr stattfinden oder Patienten zu diesen Zeiten bestellt werden."/>
    <anmerkung V="Im Rahmen der unvorhergesehenen Inanspruchnahme des Vertragsarztes ist die Leistung nach der N
    r. 01100 auch dann nur einmal berechnungsfähig, wenn es sich um eine Gruppenbehandlung handelt."/>
    <anmerkung V="Die Leistung nach der Nr. 01100 ist ausschließlich bei kurativer Behandlung berechnungsfähig."
    />
    </anmerkungen_liste>
    <leistungsinhalt>
    <komplex V="OBLIGAT">
    <leistung V="Persönlicher Arzt-Patienten-Kontakt im organisierten Not(fall)dienst"/>
    </komplex>
    <komplex V="FAKULTATIV">
    <leistung V="Beratung und Behandlung bis zu 10 Minuten Dauer,"/>
    <leistung V="2...Beratung und Behandlung bis zu 10 Minuten Dauer,"/>
    <leistung V="3...Beratung und Behandlung bis zu 10 Minuten Dauer,"/>
    </komplex>
    <komplex V="FAKULTATIV">
    <leistung V="In Anhang 1 aufgeführte Leistungen,"/>
    </komplex>
    </leistungsinhalt>
    <bewertung_liste>
    <bewertung V="5595" U="1" U-DOMAIN="1.2.276.0.76.5.236">
    <leistungserbringerart V="1" S="1.2.276.0.76.5.234" SV="1.02"/>
    <leistung_typ V="GL"/>
    </bewertung>
    <bewertung V="2797.5" U="1" U-DOMAIN="1.2.276.0.76.5.236">
    <leistungserbringerart V="2" S="1.2.276.0.76.5.234" SV="1.02"/>
    <leistung_typ V="GL"/>
    </bewertung>
    </bewertung_liste>
    <zeitbedarf_liste>
    <zeit V="21" U="2" U-DOMAIN="1.2.276.0.76.5.238">
    <leistung_typ V="AL"/>
    </zeit>
    </zeitbedarf_liste>
    <pruefzeit V="1" U="2" U-DOMAIN="1.2.276.0.76.5.238">
    <zeitprofilart V="3" S="1.2.276.0.76.5.228" SV="1.00"/>
    </pruefzeit>
    <rlv V="0" S="1.2.276.0.76.5.241" SV="1.00"/>
    <leistungsgruppe V="10" S="1.2.276.0.76.5.227" SV="1.00"/>
    </allgemein>
    <bedingung>
    <fachgruppe_liste V="true">
    <versorgungsbereich V="2" S="1.2.276.0.76.5.237" SV="1.01">
    <fachgruppe V="110" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="111" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="112" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="303" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="357" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="501" S="1.2.276.0.76.5.114" SV="1.00"/>
    <fachgruppe V="532" S="1.2.276.0.76.5.114" SV="1.00"/>
    </versorgungsbereich>
    </fachgruppe_liste>
    <anzahlbedingung_liste>
    <bezugsraum V="1" U="7" U-DOMAIN="1.2.276.0.76.5.226">
    <anzahl V="1"/>
    </bezugsraum>
    </anzahlbedingung_liste>
    <abr_best V="je Behandlungsfall mit Auftragsleistung(en) der Abschnitte 1.7.4 und/oder 1.7.5"/>
    </bedingung>
    <regel>
    <ausschluss_liste>
    <bezugsraum V="1" U="7" U-DOMAIN="1.2.276.0.76.5.226">
    <gnr_liste V="false">
    <gnr V="12220" DN="Grundpauschale für Fachärzte für Laboratoriumsmedizin u.a."/>
    <gnr V="12225" DN="Grundpauschale für Vertragsärzte aus nicht in der Nr. 12220 aufgeführten Arztgruppen
    bei Probeneinsendung"/>
    </gnr_liste>
    </bezugsraum>
    </ausschluss_liste>
    </regel>
    <kv V="46" S="1.2.276.0.76.5.233" SV="1.01">
    <kennzeichen>
    <arztpraxis V="1"/>
    </kennzeichen>
    <kv_bewertung_liste>
    <kv_bewertung V="100" U="1" U-DOMAIN="1.2.276.0.76.5.236">
    <leistungserbringerart V="2" S="1.2.276.0.76.5.234" SV="1.02"/>
    </kv_bewertung>
    <kv_bewertung V="150" U="1" U-DOMAIN="1.2.276.0.76.5.236">
    <leistungserbringerart V="1" S="1.2.276.0.76.5.234" SV="1.02"/>
    </kv_bewertung>
    </kv_bewertung_liste>
    </kv>
    <vdx>
    <gkv_kontenart_liste>
    <gkv_kontenart V="530" S="1.2.276.0.76.5.258"/>
    <gkv_kontenart V="463" S="1.2.276.0.76.5.258"/>
    </gkv_kontenart_liste>
    </vdx>
    </gnr>
    </gnr_liste>
    </ehd:body>
    </ehd:ehd>
    1 Zeile wurde ausgewählt.
    SQL> spool off
    ==========================
    HERE IS THE XQUERY COMMAND
    ==========================
    <?xml version="1.0" encoding='windows-1252'?>
    <!--
    | Uncomment the following processing instruction and replace
    | the stylesheet name to transform output of your XSQL Page using XSLT
    <?xml-stylesheet type="text/xsl" href="YourStylesheet.xsl" ?>
    -->
    <page xmlns:xsql="urn:oracle-xsql" connection="gksconnection">
    <xsql:query xmlns:xsql="urn:oracle-xsql">
    SELECT XMLQuery('xquery version "1.0";
    declare namespace n1="urn:ehd/001";
    declare namespace n2="urn:ehd/go/001";
    let $i := /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
    where $i[@n2:V = "01700V"]
    return $i'
    PASSING xml_document
    RETURNING CONTENT)
    FROM z
    </xsql:query>
    </page>
    ======================
    HERE IS THE STYLESHEET - relevant part only
    ======================
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:ehd="urn:ehd/001" xmlns:pe="urn:ehd/go/001">
    <xsl:output method="html"/>
    <xsl:template match="pe:gnr">
    <html>
    <head>
    <title>EBM Ziffer</title>
    <style type="text/css">
    table
    border-collapse:collapse;
    table, td, th
    border:1px solid black;
    </style>
    </head>
    <body style="font-family:verdana;color:black">
    <h2><xsl:text>Ziffer: </xsl:text>
    <xsl:value-of select="@V"/>
    </h2>
    <table border="1">
    <tr>
    <td><xsl:text>KV</xsl:text></td>
    <td><xsl:value-of select="@USE"/></td>
    </tr>
    <tr>
    <td><xsl:text>Gültigkeit</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:gueltigkeit/pe:service_tmr/@V"/></td>
    </tr>
    <tr>
    <td><xsl:text>Bezeichnung Kapitel</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/@V"/>
    <xsl:text> </xsl:text>
    <xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Bereich</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:bereich/@V"/>
    <xsl:text> </xsl:text>
    <xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:bereich/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Kapitel</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:kapitel/@V"/>
    <xsl:text> </xsl:text>
    <xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:kapitel/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Abschnitt</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:abschnitt/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Unterabschnitt</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:uabschnitt/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Block</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kap_bez/pe:block/@DN"/></td>
    </tr>
    <tr>
    <td><xsl:text>Kurztext</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:kurztext/@V"/></td>
    </tr>
    <tr>
    <td><xsl:text>Langtext</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:langtext/@V"/></td>
    </tr>
    <tr>
    <td><xsl:text>Langtext (Fortsetzung)</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:langtext_continued/@V"/></td>
    </tr>
    <tr>
    <td><xsl:text>Quittungstext</xsl:text></td>
    <td><xsl:value-of select="pe:allgemein/pe:legende/pe:quittungstext/@V"/></td>
    </tr>
    </table>
    <!-- Anmerkungen-Liste -->
    <h4><xsl:text>Anmerkungen</xsl:text></h4>
    <table border="1">
    <xsl:for-each select="pe:allgemein/pe:anmerkungen_liste/pe:anmerkung">
    <tr>
    <td><xsl:value-of select="@V"/></td>
    </tr>
    </xsl:for-each>
    </table>
    <!-- Leistungsinhalt-->
    <h4><xsl:text>Leistungsinhalt</xsl:text></h4>
    <table border="1" >
    <tr>
    <th><xsl:text>Komplex</xsl:text></th>
    <th><xsl:text>Leistung</xsl:text></th>
    </tr>
    <xsl:for-each select="pe:allgemein/pe:leistungsinhalt/pe:komplex">
    <tr>
    <td><xsl:value-of select="@V"/></td>
    <td>
    <xsl:for-each select="pe:leistung">
    <xsl:value-of select="@V"/>
    </xsl:for-each>
    </td>
    </tr>
    </xsl:for-each>
    </table>
    <!-- Bewertungsliste -->
    <h4><xsl:text>Bewertungen</xsl:text></h4>
    <table border="1">
    <tr>
    <th><xsl:text>Bewertung</xsl:text></th>
    <th><xsl:text>Einheit</xsl:text></th>
    <th><xsl:text>Gebührenordnung</xsl:text></th>
    <th><xsl:text>Leistungserbringerart</xsl:text></th>
    <th><xsl:text>Leistungstyp</xsl:text></th>
    <th><xsl:text>Versorgungsgebiet</xsl:text></th>
    </tr>
    <xsl:for-each select="pe:allgemein/pe:bewertung_liste/pe:bewertung">
    <tr>
    <td><xsl:value-of select="@V"/></td>
         <td><xsl:value-of select="@U"/></td>
    <td><xsl:value-of select="pe:gebuehrenordnung/@V"/></td>
    <td><xsl:value-of select="pe:leistungserbringerart/@V"/></td>
    <td><xsl:value-of select="pe:leistung_typ/@V"/></td>
    <td><xsl:value-of select="pe:versorgungsgebiet/@V"/></td>
    </tr>
    </xsl:for-each>
    </table>
    <!-- Zeitbedarfliste -->
    <h4><xsl:text>Zeitbedarfliste</xsl:text></h4>
    <table border="1">
    <tr>
    <th><xsl:text>Zeit</xsl:text></th>
    <th><xsl:text>Einheit</xsl:text></th>
    <th><xsl:text>Leistungstyp</xsl:text></th>
    </tr>
    <xsl:for-each select="pe:allgemein/pe:zeitbedarf_liste/pe:zeit">
    <tr>
    <td><xsl:value-of select="@V"/></td>
    <td><xsl:value-of select="@U"/></td>
    <td><xsl:value-of select="pe:leistung_typ/@V"/></td>
    </tr>
    </xsl:for-each>
    </table>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    =====================================
    THE REQUESTED SAMPLE LOOKUP TABLE FOR TIME UNITS
    =====================================
    <keytabs>

    <keytab S="1.2.276.0.76.5.238" SN="S_KBV_ZEITEINHEIT" SV="1.00">
    <key V="1" DN="Sekunde" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="2" DN="Minute" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="3" DN="Stunde" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="4" DN="Tag" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="5" DN="Woche" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="6" DN="Monat" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="7" DN="Quartal" S="1.2.276.0.76.5.238" SV="1.00"/>
    <key V="8" DN="Jahr" S="1.2.276.0.76.5.238" SV="1.00"/>
    </keytab>
    </keytabs>
    ==================================================================================================
    And this is, from an earlier trial with XMLTABLE() what I become when stylesheet is commented out. Only for your information here!
    Due to the three "Anmerkung" three rows were generated. What is this notation? I got it when
    executing the XSQL sheet without stylesheet. Produced by the browser.
    I can not find any info in the whole web.
    ==================================================================================================
    <!--
    <?xml-stylesheet type="text/xsl" href="untitled1.xsl" ?>
    -->
    <page>
    <ROWSET>
    <ROW num="1">
    <ZIFFER>01700V</ZIFFER>
    <GUELTIGKEIT>2006-07-01..</GUELTIGKEIT>
    <KAP_NR>1.7</KAP_NR>
    <KAP_BEZ>
    Gesundheits- und Früherkennungsuntersuchungen, Mutterschaftsvorsorge, Empfängnisregelun g und Schwangerschaftsabbruch (vormals Sonstige Hilfen)
    </KAP_BEZ>
    <BEREICH_NR>II</BEREICH_NR>
    <BEREICH>Arztgruppenübergreifende allgemeine Leistungen</BEREICH>
    <KAPITEL_NR>1</KAPITEL_NR>
    <KAPITEL>Allgemeine Leistungen</KAPITEL>
    <ABSCHNITT>
    Gesundheits- und Früherkennungsuntersuchungen, Mutterschaftsvorsorge, Empfängnisregel ung und Schwangerschaftsabbruch (vormals Sonstige Hilfen)
    </ABSCHNITT>
    <KURZTEXT>
    Grundpauschale für Fachärzte für Laboratoriumsmedizin u.a.
    </KURZTEXT>
    <LANGTEXT>
    Grundpauschale für Fachärzte für Laboratoriumsmedizin, Mikrobiologie und Infektionsepidemiologi e, Transfusionsmedizin und ermächtigte Fachwissenschaftler der Medizin für die Erbringung von Laborleistungen gemäß den Richtlinien des Gemeinsamen Bundesauss
    </LANGTEXT>
    <QUITTUNGSTEXT>
    Grundpauschale für Fachärzte für Laboratoriumsmedizin u.a.
    </QUITTUNGSTEXT>
    <ANMERKUNG>
    Die Leistung nach der Nr. 01100 ist nicht berechnungsfähig, wenn Sprechstunden vor 07:00 Uhr oder nach 19:00 Uhr stattfinden oder Patienten zu diesen Zeiten bestellt werden.
    </ANMERKUNG>
    </ROW>
    <ROW num="2">
    <ZIFFER>01700V</ZIFFER>
    </ROW>
    </ROWSET>
    </page>

  • XSL-1009: (Error) Attribute 'version' not found in 'HTML'

    Hi,
    I've got the following problem: oracle.xml.parserv2.XSLException
    <Line 1, Column 7>: XSL-1009: (Error) Attribute '{http://www.w3.org/1999/XSL/Transform}:version' not found in 'HTML'.
    and I wanted to know what are its origins and what to do to go around, knowing that:
    - we run a java application on an oracle 9iAS and it works fine !
    - we run the same application on an oracle web-to-go server and it gives this message on the client when trying to put
    - the mobile server 'java environment' is a little bit never (version) than the online environment, both servers (9ias an mobile) run on the same machine (mobile is never -> impact on client environment? Installs run under jre 1.3.01)
    - we have an xml document (DOM) and an .fo stylesheet (file/url), so no html for output! Where comes it from? The <xsl:output method="html"> has even been removed and tried with method="application/pdf", no change.
    - the function XSLProcessor.newXSLStylesheet raises this exception; to make it at least run on online environment, we used the .jar file from JDevelopper 9.0.2.822 (this .jar is used in JDev, on 9ias and mobile client)
    - the output file (via apache's fop) shows correctly in the online version, but fails the create/use of the stylesheet (tried stylesheet with xml data for output and a generique 'Hello World' .fo for pdf output, both fail)
    - the .fo starts with <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
    - we even tried xsl:version="1.0" and no version at all
    - the same XML parsed with an .xsl for html output works fine, in mobile, the attribute "http://www.w3.org/1999/XSL/Transform" does not show up as an error
    I guess we have a version or configuration conflict, but what exactly could it be? If you need some more version numbers, just let me know.
    Thanx very much for any help!

    Hi,
    as I wrote in the inital message, we even left out the output method or used "application/pdf". The result is unfortunately always the same. And I still claim this is not a problem with the stylesheet itself, it has to do something with the mobile's environment.
    Something I didn't tell: we have 2 servlets in our application, 1 responsible for output in html and 1 in pdf. The .fo stylesheet passed to the 'html servlet' is parsed correctly (and shows the source code, because it does not know about fo and conversion to pdf), the .xsl stylesheet passed to the 'pdf servlet' raises same exception/same line. You might tell us that there is a problem with the 'pdf servlet', but once again: why in online it is working?
    Greetings and thanx very much for your precious time!

Maybe you are looking for

  • Why I downgraded back to PC Suite 6.86.9

    I use PC Suite extensively to archive SMS text messages from my phones. The best thing about 6.86 is that is takes the original delivery date and time of each message you extract into a Windows folder. In the folder I can order all the messages by ti

  • Deleting Original Pictures Question?

    I just started using iPhoto. Prior to that I had all my pictures organized in folders by event. I imported all my pictures in iPhoto and almost everything was correct. For about 500 photos they dates we wrong causing the events to be out of order. I

  • Leading and non leading ledger balances do not match in FAGLB03

    Hi, Balance for period 5 as per FAGLB03 for leading ledger (0L) is say $104. The same balance as per nonleading ledger is $176. I checked in FAGLF03 and no difference exists there. The issue is only with period 5, the other periods display the balanc

  • Issue when migrating 3.x queries with 2 structures into BI7

    Hi all, We have a 3.x query where we have 2 structures (one in columns and one in rows). The Keyfigure is in 'Filter Values' and in each structure, selections and formulas are defined. The query works fine in 3.x when i try to 'save as' the query in

  • Table to see the Tax amount of the PO item.

    Hi Experts, I have a requirement that the Tax amount of the PO item should display in  PO print preview. I have searched for the tables where the tax data stores to guide to the ABAPer. But none of the table I found. Only the structures I am able to