"Merge into" statement doesn't work

Hi Reader,
It seems that in some of our installed machines merge into statement doesn't;t work. We've already experienced this issue on databases installed within virtual machines, but also found on other configurations sporadically.
Using statement match a single/multiple records (according required logic)
statement:
MERGE INTO RNCATEGORIES CV
USING dual ON
( CV.DESIGNCENTERID = in_DESIGNCENTERID
AND CV.CADPACKAGENAME = in_CADPACKAGENAME
WHEN MATCHED THEN
UPDATE SET
PKGCATEGORYID = in_PKGCATEGORYID,
     UserPackageType = in_UserPackageType
WHEN NOT MATCHED THEN
INSERT VALUES ( in_DESIGNCENTERID,
in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
Table script:
CREATE TABLE RNCATEGORIES
DESIGNCENTERID RAW(16) NOT NULL,
CADPACKAGENAME NVARCHAR2(64) NOT NULL,
PKGCATEGORYID RAW(16),
USERPACKAGETYPE NVARCHAR2(64)
PK_RNCATEGORIES PRIMARY KEY (DESIGNCENTERID, CADPACKAGENAME)
Thanks in advance,
Amir

After creating the table, your merge statement gives me
SQL> MERGE INTO RNCATEGORIES CV
  2  USING dual ON
  3  ( CV.DESIGNCENTERID = in_DESIGNCENTERID
  4  AND CV.CADPACKAGENAME = in_CADPACKAGENAME
  5  )
  6  WHEN MATCHED THEN
  7  UPDATE SET
  8  PKGCATEGORYID = in_PKGCATEGORYID,
  9  UserPackageType = in_UserPackageType
10  WHEN NOT MATCHED THEN
11  INSERT VALUES ( in_DESIGNCENTERID,
12  in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
AND CV.CADPACKAGENAME = in_CADPACKAGENAME
ERROR at line 4:
ORA-00904: "IN_CADPACKAGENAME": invalid identifierwhich is about what I expected. The USING clause requires a select statement, not just a table name. It looks to me like this merge statement is in some kind of stored procedure, and that the in_XXX are variables passed to that procedure. If this is correct, then your merge needs to be more like:
MERGE INTO rncategories cv
USING (SELECT in_designcenterid dcid, in_cadpackagename cpn,
              in_pkgcategoryid pcid, in_userpackagetype upt
       FROM dual)
ON (cv.designcenterid = dcid and
    cv.cadpackagename = cpn)
WHEN MATCHED THEN
   UPDATE SET
   pkgcategoryid = pcid
   userpackagetype = upt
WHEN NOT MATCHED THEN
   INSERT VALUES (dcid, cpn, pcid, upt);John

Similar Messages

  • If statement doesn't work in JPanel

    Hi everybody.
    I'd like somebody tell me the reason why the "if" statement doesn't work in a Jpanel but works in a Japplet. I'm including the fragments of code that are relevant to the question.
    Thanks in advance.
    public class Applet_INVEN extends JApplet {
    jTabbedPane jTabbedPane1 = new JTabbedPane();
    Panel_1 p_1 = new Panel_1();
    JLabel jLabel1 = new JLabel();
    JTextField jTextField1 = new JTextField();
    JButton jButton1 = new JButton();
    void jButton1_actionPerformed(ActionEvent e) {
    if (jTextField1.getText() != "0") //------Executes when the condition is true
    jLabel1.setText("bingo");
    public class Panel_1 extends JPanel {//------INSIDE a JPANEL
    JTextField jTextField1 = new JTextField();
    JTextField jTextField2 = new JTextField();
    JTextField jTextField3 = new JTextField();
    JButton jButton1 = new JButton();
    void jButton1_actionPerformed(ActionEvent e) {
    jTextField2.setText(jTextField1.getText()); //----Ever executes, of course!
    if(jTextField1.getText() != "0") //----Never executes, even when
    jTextField3.setText("ojo"); //----the condition is true!

    You shouldn't use the != operator to test equality of Objects. Use Object.equals() instead.
    if (jTextField1.getText() != "0")
    should be
    if ( ! jTextField1.getText().equals("0"))
    or better:
    if ( ! "0".equals(jTextField1.getText())) <-- avoids null pointer exception.

  • In day 4, video # Creating "pages" with Flex states doesn't work

    i can't open video training http://www.adobe.com/devnet/flex/videotraining in day 4. it's name( Creating "pages" with Flex states ) doesn't work, it report error. supporter can look it and solve problem

    Hi,
         I'm also pacing the same issue. if click on the video in the Day 4 exercises. i don't know, what is the issue with that particular videos. and also pacing one more issue that design mode is not showing in my flash builder 4. if u have any ans plz help me out. PFA

  • Why this statement doesn't work?

    I have two table job and job_status,I use Page Process try to insert records to job_status, but the select query doesn't work, it display all the job in job table didn't filtered out the job matching the query, do someone know why? Any suggestion will be appreciated!
    DECLARE
    BEGIN
    FOR x IN (
    SELECT
    JOB_SEQ,
    PRIMARY
    FROM JOB
    WHERE ((RUN_DATES like '%'||:P6_WDAY||'%')
    or (RUN_DATES like '%'||:P6_DD ||'%')
    or (RUN_DATES like ''|| 0 ||'')))
    LOOP
    INSERT INTO JOB_STATUS(JOB_SEQ, OPERATOR,RUN_DATE) VALUES
    (x.JOB_SEQ,x.PRIMARY,to_date(:P6_DATE,'YYYYMMDD'));
    END LOOP;
    END;

    ops wrong typed
    try
    DECLARE
    BEGIN
    FOR x IN (
    SELECT
    JOB_SEQ,
    PRIMARY
    FROM JOB WHERE
    ((RUN_DATES like CHR(39)||'%'||:P6_WDAY||'%'||CHR(39))
    or (RUN_DATES like CHR(39)||'%'||:P6_DD ||'%'||CHR(39))
    or (RUN_DATES like ''|| 0 ||'')))
    LOOP
    INSERT INTO JOB_STATUS(JOB_SEQ, OPERATOR,RUN_DATE) VALUES
    (x.JOB_SEQ,x.PRIMARY,to_date(:P6_DATE,'YYYYMMDD'));
    END LOOP;
    END;

  • Property.state doesn't work

    Hallo everybody. I am using Flash Builder not since much time but i learned basilar things.. One of these things is that if i have a flex component and in my applications i have 2 states, state1 and state2, if i want to change a property (es. width) of that component in state1 and i wish it can be different in state2 i can write like this:
    width.state1
    width.state2
    This works always. Now, i just created my own component. The name of this component is "mioPannello":
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
         <![CDATA[
              public var rett_titolo_bottom:int;
              public var rett_centrale_top:int;
              public var rett_centrale_bottom:int;
              public var font_label:Number;
    ]]>
    </fx:Script>
    </s:Panel>
    As you can see, i just created my 4 properties which i will use in my own skin. The name of this skin is "mioPannello_skin":
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:s="library://ns.adobe.com/flex/spark" width="100%" height="100%" bottom="0" creationComplete="aCreazioneCompletata(event)">
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
        <fx:Metadata>
            [HostComponent("componenti.mioPannello")]
        </fx:Metadata>
    <fx:Script>
    <![CDATA[
    import componenti.mioPannello;
    import mx.collections.ArrayList;
    import mx.events.FlexEvent;
    [Bindable]
    public var font_label:Number;
    public function aCreazioneCompletata(event:FlexEvent):void
         this.rett_titolo.bottom = hostComponent.rett_titolo_bottom;
         this.rett_centrale.top = hostComponent.rett_centrale_top;
         this.rett_centrale.bottom = hostComponent.rett_centrale_bottom;
         this.font_label = hostComponent.font_label;
    ]]>
    </fx:Script>
    <s:Rect id="rett_sfondo" height="90%" width="100%" bottom="0">
    <s:fill>
    <s:SolidColor color="#BDCCD4"/>
    </s:fill>
    </s:Rect>
    <s:Rect id="rett_centrale" height="100%" width="90%" horizontalCenter="0">
    <s:stroke>
    <s:SolidColorStroke caps="none" color="#FFFFFF" joints="miter" miterLimit="10" weight="1"/>
    </s:stroke>
        </s:Rect>
        <s:Rect id="rett_titolo" alpha="0.71" height="100%" width="80%" top="0" horizontalCenter="0">
        <s:fill>
        <s:SolidColor color="#E8EBF2"/>
        </s:fill>
        </s:Rect>
        <s:Label id="titleDisplay"
    top="5"
        color="#FFFFFF"
        fontWeight="bold"
        fontFamily="Myriad Pro" fontSize="{font_label}"
        horizontalCenter="0"/>    
    </s:SparkSkin>
    When i call my component in my application, i can set property values in this way:
    <componenti:mioPannello width="100%" height="100%" title="panel title" skinClass="skins.mioPannello_skin" rett_titolo_bottom="15" rett_centrale_bottom="10" rett_centrale_top="30" font_label="12"/>
    Everything works good if i have just 1 state, but if, in my application i have 2 states, state1 and state2, the code doesn't work. So, if i write:
    <componenti:mioPannello width="100%" height="100%" title="panel title" skinClass="skins.mioPannello_skin" rett_titolo_bottom.state2="5" rett_titolo_bottom="15" rett_centrale_bottom="10" rett_centrale_top="30" font_label="12"/>
    rett_titolo_bottom.state2="5" it should change in state2 (or not??) but it doesn't change... It takes always the value 15 as it is in main state.
    Why this thing happen??.. I though i just created a normal property... How can i change that property in each different state. I hope you understand my problem and can help me..
    Sry for bad english
    Thx for all
    Max   

    Ok, i solved my problem. The problem was that i was applying my properties in the CreationComplete event but now i changed it and i applied the new value through render Event and it works fine.
    Thx a lot CoreyRLucier
    Max

  • Minimize into applications doesn't work

    I've just noticed that the 'Minimize Into Applications' feature in the Dock System Preferences doesn't work in 10.6.1. Instead, each window is minimized on the right side of the Dock as it did in Leopard. Is anybody else noticing this problem?
    Plus, whenever I launch an application, its icon in the Dock doesn't work properly. It doesn't show the white triangle underneath it, and Dock Exposé doesn't work.

    Do you have any 3rd party apps that attempt to modify the Finder or Menus, etc.?
    If so, confirm they are compatible with Snow Leopard, install updates or remove them, etc.

  • Adobe 3D Reviewer: Merging/Collapsing "nodes" doesn't work!

    I'm using VRML 2 files to create 3D models. One of my VRML worlds has about 100 nodes, and I want all the nodes to be merged into one. I tried "collapse...all" function which shows all the nodes as merged into one in 3D Reviewer, but when I export the model as pdf or u3d and open the exported model in Acrobat 9 pro extended for editing, the 100 nodes are still there!
    Do you have any idea where could I be making a mistake?
    Thank you!

    It would be very helpful for us scientists to have that feature. I would be thankful if you are in any capacity able to communicate that to the 3D Reviewer development team so that they can bear it in mind while planning the next version of this software.
    Thank you very much, Pierre, for everything!

  • Merge to HDR doesn't work with Raw

    I have Raw .CR2 images that I would like to Merge to HDR. If I load them through Camera Raw and then into Photoshop, then attempt to merge with the "currently open files" option it gives me a warning that it won't be as nice as loading the CR2s directly into Merge. So I do that. The layers and windows bounce around like normal, then nothing, just an empty Photoshop window as if I had just launched it. Am I missing something here?

    >Am I missing something here?
    Some basic info, like WHAT VERSION OF PHOTOSHOP ARE YOU USING? While one might presume you are using Photoshop CS3, if you don't state it, how will anybody know?
    As far as I know, this isn't a Camera Raw issue but a Photoshop issue. Does the merge work if you process out tiff files? That would be the first test to see if it's a Camera Raw issue. If not, you'll need to do some basic Photoshop troubleshooting and you might go to the correct Photoshop forum for your platform (which you also don't mention).

  • Exporting 3D Camera data into C4D doesn't work properly.

    When I export from AE into C4D, the resulting file data doesnt seem to work properly. I have weird rotations where there shouldn't be and the camera shakes all of the place.
    I have installed the C4D Importer Plug in from Maxon but just using the CIneware Exporter plug in that comes with AE CC 14.
    Any thoughts why it doesn't seem to be working correctly.
    C

    same problem here, with a camera linked to a null object, which is actually moving, not the camera.
    In C4D (R14 studio) the movement goes wild, i's not what it's like in AE CC2014
    Anyone please ???

  • Why Statement doesn't work?

    In my jsp page,I wrote:
    <%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    Connection conn=DriverManager.getConnection("jdbc:microsoft:sqlserver://CE800:1181;DatabaseName=supermarket;user=sa;Password=");
    Statement stmt=conn.CreateStatement("SELECT * FROM dic_ware_class");
    ResultSet rs=stmt.executeQuery();
    %>
    But tomcat report some exceptions:
    Error: 500
    Location: /myjsp/test.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\tomcat\work\localhost_8080%2Fmyjsp\_0002ftest_0002ejsptest_jsp_0.java:63: Ambiguous class: java.beans.Statement and java.sql.Statement
    Statement stmt=conn.createStatement("SELECT * FROM dic_ware_class");
    ^
    C:\tomcat\work\localhost_8080%2Fmyjsp\_0002ftest_0002ejsptest_jsp_0.java:63: Wrong number of arguments in method.
    Statement stmt=conn.createStatement("SELECT * FROM dic_ware_class");
    ^
    2 errors, 1 warning
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:282)
         at org.apache.jasper.servlet.JspServlet.doLoadJSP(JspServlet.java:612)
         at org.apache.jasper.servlet.JasperLoader12.loadJSP(JasperLoader12.java:146)
         at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:542)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:258)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:268)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:536)
    If I use PreparedStatement,it works,who can tell me reason,thanks a lot.

    The select statement does not go into the createStatement(). it goes in the executeQuery(). Also you must be importing both the java.bean.* package and java.sql.* package. Since they both contain a Statement class, you are getting an ambigious answer. You need to prefix java.sql. to the statement class ex. java.sql.Statement stmt = ....

  • Drag and drop from Lightroom into Premiere doesn't work in Windows

    I recently switched from OSX to Windows and noticed that in Windows, I'm unable to drag and drop from LIghtroom into Premiere. In OSX, it worked fine.
    I do this a lot because it's a time saver. I basically use lightroom to find the photo or video clip I need for my editing project and then just drag in right on to the Premiere timeline. Now I have to do the extra step in Lightroom of "show in explorer", then drag the file from explorer to Premiere. Not really a big deal but just curious why it works in OSX and not Windows.
    I'm running latest Windows 8.1, Lightroom 5.4, Camera Raw 8.4, and Premiere Pro CC 7.2.2 (33)
    -Pete

    Hi Pete,
    You can obtain scripts here:
    http://www.robcole.com/Rob/ProductsAndServices/MiscLrPlugins#MiscScripts
    You'll have to edit lua code to adapt for Premiere. Not that hard really (e.g. clone, then change the script name and path to executable..), but may be too intimidating for some folks. If you are one of those folks, go for the plugin instead - it's usable via GUI - no lua code - can probably accomplish the same thing.
    http://www.robcole.com/Rob/ProductsAndServices/OpenInWhateverLrPlugin
    Let me know (outside the forum please) if problems - thanks,
    Rob

  • Uploading Safari images into 'Blackboard' doesn't work.

    I am using an iMac G5, OS X (10.4.8), 2Ghz PowerPC with 512 MG of RAM.
    I am able to successfully create .html files with various programs (Nvu, Dreamweaver, Mozilla,) and I can open those documents and see the images in them in my default Safari browser (as well Explorer, Firefox, Mozilla,). I USED to able to upload those documents successfully into the 'Blackboard' program my college uses. Here I can't be helpful: I did something -perhaps changed my browser from Netscape Navigator to Safari, but I can't guarantee that's the problem- so that the uploads show the text but no longer load the images. When I open the documents in the Blackboard program, the images don't show as broken, they show as question marks in a small blue square in the center of the missing image.
    I have tried the Blackboard help site, and all the image-loading recommendations I see on this forum. I've tried going to 'Safari> Preferences> Appearance> Display images when the page opens' and making sure that box is checked. I've tried finding 'Safari> File> Publish as> and making sure images are published, but I can't find that option on my Mac. None of the tech support at school can solve the problem -though the process supposedly works just fine on a PC. I have struggled with this for months, and since I teach art history and need to show images, it is making my life miserable. Any help would be much appreciated.
    Carolyn
    iMac G5   Mac OS X (10.4.8)   PowerMac8,2

    Thanks for the rapid response! A pity I don't have the language to be of more help.
    First, 'Blackboard.edu' is a service institutions of education subscribe to. Faculty users publish their class webpages, and can keep those inhouse or make them available to the www. So, I've been publishing web pages (in house) for my classes for years. This year I've run into problems with getting my .html documents to load the images contained in them. I do believe my colleagues have uploaded my documents successfully onto their Blackboards via PCs, leading me to believe this is a Mac problem . . .
    Someone suggested this was a browser problem, so I kept trying different default browsers, searching their preferences for any boxes that needed to be checked to allow images. Each time I upload I am told the upload was sucessful -I get no error messages- and each time the images don't load.
    I defaulted to Safari and did as you suggested, and there was a slight change. Instead of the blue-box question mark, the image title was displayed, but still no image.
    iMac G5   Mac OS X (10.4.8)   PowerMac8,2. / 2 GHz PowerPC

  • Drawing into TabbedPane doesn't work

    Hi,
    I want some stuff to draw distribute among several tabs which was originaly all in one panel.
    This is basically what I did:
    public Gui() {
            initComponents();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            tabbedPane = new JTabbedPane();
            drawingPane = new DrawingPane();
            scroller = new JScrollPane();
            scroller.add(drawingPane);
            doSomeDrawing();
            this.add(tabbedPane, BorderLayout.CENTER);
        }But when I start the program the TabbedPane shows nothing which I can't quite understand. All I did was adding a tabbedPane to the hierarchy of components and putting into it what worked before flawlessly.
    This is what the code looked like before I added the tabbedPane:
    public Gui() {
            initComponents();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            drawingPane = new DrawingPane();
            scroller = new JScrollPane();
            scroller.add(drawingPane);
            doSomeDrawing();
            this.add(scroller, BorderLayout.CENTER);
        }Any ideas why there is nothing to see?

    Shit, I just shortened the example too much. I'm afraid some more code is necessary:
    So this is the initiating method:
    public Gui() {
            initComponents();
            dbCon = new DBConnector();
            objects = new LinkedList<Objects>();
            objects = dbCon.getAllObjects();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            floors = dbCon.getFloorsName();
            drawingPane = new DrawingPane[floors.size()];
            scroller = new JScrollPane[floors.size()];
            windows = new JTabbedPane(JTabbedPane.TOP);
            for(int i = 0; i < floors.size(); i++) {
                drawingPane[i] = new DrawingPane();
                scroller[i] = new JScrollPane();
                scroller.add(drawingPane[i]);
    windows.addTab(floors.get(i).toString(), scroller[i]);
    for(int k = 0; k < scroller.length; k++) {
    final int index = k;
    scroller[k].getVerticalScrollBar().addAdjustmentListener(new AdjustmentListener() {
    public void adjustmentValueChanged(AdjustmentEvent e) {
    scroller[index].repaint();
    scroller[index].getHorizontalScrollBar().addAdjustmentListener(new AdjustmentListener() {
    public void adjustmentValueChanged(AdjustmentEvent e) {
    scroller[index].repaint();
    this.add(windows, BorderLayout.CENTER);
    When the containing frame is visible I call a method like
       public void drawComponents(java.util.List<Objects> objectsToDraw) {
         java.util.List<Polygon> polygons = new LinkedList<Polygon>();
            for(int i = 0; i < objects.size(); i++) {
                drawingPane[0].addPolygon(new Polygon(...));
        }to add some stuff to draw but still nothing visible.
    I hope this is enough code to find the problem. As I said, when I omit the tabbedPane and add the scollPane directly everything works fine.

  • Why CONCATENATE String2 '*' INTO String1 doesn't work?

    hi ABAP experts,
    We would like to get a wildcard string by using Concatenate and then in select statement.  But when we activate the following simple statement, get the following error:
    Statement is not accessible. at the Concatenate statement.
    Below is the simple piece of code:
    data: String1 TYPE C.
    parameters:String2 like EKPO-EKORG.
    CONCATENATE String2 '*' INTO String1.
    select EBELN EBELP MATNR MENGE from EKPO into table item_itab
         Where MATNR like String1.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Mar 6, 2008 10:39 AM

    data: String1 TYPE C.
    parameters:String2 like EKPO-EKORG.
    Start-of-selection.
    CONCATENATE String2 '*' INTO String1.
    select EBELN EBELP MATNR MENGE from EKPO into table item_itab
    Where MATNR like String1.

  • Importing MP4 into Premiere doesn't work for me

    Hi, I am trying to import some MP4 videos into Adobe Premiere 2, and I can't get it to work despite installing Quicktime. Can you help fix this for me?
    thanks

    I do not know if Pr 2.0 had any HD support. I kind of doubt it.
    Now, one workaround would be to use QuickTime Pro (~US29 upgrade/unlock) and convert that footage to SD with DV-AVI Type II w/ 48KHz 16-bit PCM/WAV Audio. You will obviously be converting HD (probably) to SD, but it should allow you at least edit.
    For the MP4, which is usually some flavor of H.264, folk have found that certain versions of H.264 work better than others. Some like the Apple CODEC, some the Lead CODEC and some the MainConcept H.264 CODEC.
    Good luck,
    Hunt

Maybe you are looking for

  • 2ª via de nota fiscal

    Boa noite! Fiz uma compra de uma Go Pro no Best Buy e necessito da 2ª via da nota fiscal, tenho todos os dados para a obter a mesma. Já enviei 3 vezes os dados para Karina e até agora não obtive resposta. Aguardo resposta o mais breve possível.

  • Monitor view weird , can't find drivers or monitor model here

    I just picked up my montior at a Bargain Center , it is a new monitor , but i cant find the model here on HP's site  ,  it says on the back tag  , TSS-25BG  , and i searched and can not find this model My issue is that every website i go to the image

  • Recursive nesting of Facelet Composite Components

    I use JSF2.0 Facelets and Composite Components. I want to display a hierarchical questionary, where the questionary contains a Category List, and any Category can contains subCategories and Questions. In fact, Category inherits from abstract Question

  • Missing alternative international keyboard layout

    Hi, there is no internationalization discussion group, so this is probably most closely related, sorry if not: Most of the Central European keyboards in OS X feature besides QWERTZ layout also QWERTY layout, where such a layout is in practice (e.g. C

  • Bilder Downloader stürzt ab

    Nach der Installation des neuen Druckertreibers für meinen Dell 962, der über die Windows Update Seite von Microsoft verteilt wird, stürzt der Bilder Downloader zuverlässig ab. Das Übertragen von Bildern vom Fotoapparat mit Photoshop Elements 5.0 ist