Data sometimes doesn't display

When I load data into level 0 members the data doesn't appear on upper intersections. I run a calc all to make sure the numbers roll up, but I only see the data when I expand all dimensions down to level 0.
How do I see data at the first intersection for example?
Ex. Accounts Markets
Years 193444
193444 would be the roll up. That's where I want to see the data.

Here are some troubleshooting questions.
Does the data load execute without errors?
Are you loading to all dimensions?
Are all the members tagged as + consolidation?
Are any of the upper level members tagged as Label Only?
Brian Chow

Similar Messages

  • WEB.SHOW_DOCUMENT sometimes doesn't display the generated PDF file

    Hi all,
    I'm using the following code to generated my report from Forms:<br><br>
    V_REPORT_ID := FIND_REPORT_OBJECT(V_REPORT_NAME);
    V_REPORT_SERVER_JOB:= RUN_REPORT_OBJECT(V_REPORT_ID,P_LIST);
        V_JOB_ID := substr(V_REPORT_SERVER_JOB,length(:GLOBAL.REPORTS_SERVER)+2,length(V_REPORT_SERVER_JOB));
        V_REPORT_STATUS := REPORT_OBJECT_STATUS(V_REPORT_SERVER_JOB);
    LOOP
       IF V_REPORT_STATUS = 'FINISHED' THEN          
          V_TMP_PDF := :GLOBAL.APACHE_HTML_FOLDER ||'rpt'|| V_JOB_ID  ||'.pdf' ;
         COPY_REPORT_OBJECT_OUTPUT(V_REPORT_SERVER_JOB, V_TMP_PDF );
        WEB.SHOW_DOCUMENT(:GLOBAL.AS_HOME_URL ||  'rpt'|| V_JOB_ID  ||'.pdf' ,'_BLANK');     
        END IF;
    END LOOP; <br><br>
    Everything works fine except the WEB.SHOW_DOCUMENT part. In some clients, this command does what it required from it and opens a new browser window with the PDF report displayed on it. In some other clients, this command does nothing: now window dispalyed. When I refer to the Application Server, I see the PDF report successfully generated there. When I put the URL of the generated report manually in the browser address, I can see the report.
    <br><br>
    <b>Why the WEB.SHOW_DOCUMENT doesn't display the generated PDF report in some clients?</b>

    I agree with the previous 2 posters.
    Also firefox and ie handle it differently. Make sure you test on what your clients use.
    Sometimes acrotray.exe is completely retarded and doesn't work.

  • Text in data grids doesn't display

    With the new 29 version of FireFox, data grids on our site don't seem to display the data in the grids any longer. When using Chrome or IE11, these still show just fine. Version 28 and earlier worked great. The menu system in our site doesn't work well any longer either using version 29.
    What we are seeing on this site was also seen with IE11 when it first came out but that was easily fixed by just using the "compatability" settings in IE11 and adding our site to the list of compatible sites. There isn't such a setting in FireFox so I wonder how we go about getting around this.

    Thanks for the offer but we no part of this site can be publicly accessed. The thought of a font causing the problem doesn't make much sense to me because it was working fine prior to version 29. Why would the font all of a sudden be causing the problem. Furthermore, it isn't just text in data grids but the menu system we use doesn't work properly either. You have to hold down on the left mouse button to use the menu and then when you are on the item you want to select, let off the left mouse button. Guess our only option is to start recommending Chrome or IE.

  • Data Table doesn't display

    Hi,
    My dataTable suddenly stopped displaying the values, which was working perfectly fine before.
    I have couple of more dataTables in the project which display the values perfectly.
    The dataTable is bound to a rowset, it display the empty rows(which are the equal to the number of row present in the rowset to which dataTable is bound to). It display correct number of rows but with out any text(emptry rows).
    I cant understand why? its driving me mad.
    I compared the properties of other dataTables which are working with one that doesn't, they are exactly the same except value.
    I have even made sure that I haven't set font color to white.
    Any help would be greatly appreciated.
    Pleaseeeeeeeeeeeee reply ASAP.
    cheers
    kush

    Hi Sharth,
    Yes. Its a real weird behaviour.
    I haven't done ANY extracoding at all. All I did was bind the table to the rowset and select the table layout.
    I am able to bind the table to any rowset. change the table layout,etc...Surprisingly when I run the project, it doesn't show any errors either.
    Its driving me mad. I got get this working by tommorow.
    any help will greatly appreciated.
    cheers
    kush

  • JPanel sometimes doesn't display correctly

    I have this JFrame which contains a single JPanel as its content pane. I have the paintComponent() overriden so that the panel paints a background that creates the basis for the GUI. The problem is that sometimes when I run the program (I've tried it on different computers too) instead of the background showing up with the text field on top of it, the background turns grey and only the text field that recieves focus by defualt shows up. I can make the other stuff show up too by clicking on it. It's as if I hadn't set setVisible() to true and it only happens some of the time. Here is a watered down version of the program but it still has the problem.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class problemFrame
        JFrame interfaceFrame;
        JLabel wrongLogin;
        JPanel logIn, repMain;
        JTextField userNameField;
        JPasswordField passField;
        JButton exit;
        ImageIcon loginImg, exitButton, exitButtonPressed;
        problemFrame(GraphicsDevice graphicsDev)
            interfaceFrame = new JFrame("Stupid, do what you will, Frame");
            interfaceFrame.setSize(graphicsDev.getDisplayMode().getWidth(), graphicsDev.getDisplayMode().getHeight());
            interfaceFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            interfaceFrame.setUndecorated(true);
            loginImg = new ImageIcon("loginScreen.jpg");
            exitButton = new ImageIcon("exitButtonNorm.jpg");
            exitButtonPressed = new ImageIcon("exitButtonPressed.jpg");
            logIn = new JPanel()
                public void paintComponent(Graphics g)
                    super.paintComponent(g);
                    g.drawImage(loginImg.getImage(), 0, 0, null);
            logIn.setLayout(null);
            logIn.setBackground(null);
            logIn.setOpaque(false);
            exit = new JButton(exitButton);
            exit.setBorderPainted(false);
            exit.setPressedIcon(exitButtonPressed);
            exit.setFocusable(false);
            exit.setSize(exitButton.getIconWidth(), exitButton.getIconHeight());
            exit.setLocation(1000, 7);
            logIn.add(exit);
            exit.setVisible(true);
            userNameField = new JTextField(20);
            userNameField.setLocation(500, 315);
            userNameField.setSize(userNameField.getPreferredSize());
            userNameField.setMaximumSize(userNameField.getPreferredSize());
            logIn.add(userNameField);
            userNameField.setVisible(true);
            passField = new JPasswordField(20);
            passField.setLocation(500, 385);
            passField.setSize(passField.getPreferredSize());
            passField.setMaximumSize(passField.getPreferredSize());
            logIn.add(passField);
            passField.setVisible(true);
            wrongLogin = new JLabel("Incorrect User Name/Password");
            wrongLogin.setForeground(Color.red);
            wrongLogin.setFont(new Font("SansSerif", Font.BOLD, 24));
            wrongLogin.setSize(wrongLogin.getPreferredSize());
            wrongLogin.setLocation(330, 250);
            logIn.add(wrongLogin);
            wrongLogin.setVisible(false);
        public void showLoginScreen()
            interfaceFrame.setContentPane(logIn);
            interfaceFrame.setVisible(true);
            interfaceFrame.requestFocus();
            userNameField.requestFocus();
        public static void main (String[] args)
            GraphicsDevice dev = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice ();
            GraphicsConfiguration gc = dev.getDefaultConfiguration();
            DisplayMode currentMode = dev.getDisplayMode();
            problemFrame PF = new problemFrame(dev);
            dev.setFullScreenWindow(PF.interfaceFrame);
            PF.showLoginScreen();
        }//end of main
    }You'll need to suplement some of your own images. loginImg- a background image (if you haven't figured it out already this is a login screen for a program). exitButton and exitButtonPressed- any old 'X' like image that pleases you!
    Also, do I need to put a setVisible(true) for each component or will doing it for the frame alone be sufficient? Should I be using another format for the background image, ImageIcon seems less like an image and more like a Icon. Any other things that I have that are repetitive, missing, or just plain stupid?
    Thanks in Advance
    Colin
    P.S. The most helpful person will recieve 3 duke dollars! Good luck.

    Answer to your reply 1: we're using a (GridBag) layout manager in this one. The layout manager takes care of locating components under varying conditions. The only tricksy thing in this layout is the cooperation of the two gbc.weighty constraints in determining the height of the three&#8211;component group (of the two textfields and the wrongLogin label). Using a lower number for the top constraint and a larger number for the bottom weighty will move the group higher on the screen. The opposite settings will lower the group. It really depends on the height of the exit button. Once you get the height of the group set where you want it (with the constraints) it should resize nicely in different monitors.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class ProblemFrame
        JFrame interfaceFrame;
        JLabel wrongLogin;
        JPanel logIn, repMain;
        JTextField userNameField;
        JPasswordField passField;
        JButton exit;
        ImageIcon loginImg, exitButton, exitButtonPressed;
        ProblemFrame(GraphicsDevice graphicsDev)
            interfaceFrame = new JFrame("Things are gettin' better...");
            interfaceFrame.setSize(graphicsDev.getDisplayMode().getWidth(),
                                   graphicsDev.getDisplayMode().getHeight());
            interfaceFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            interfaceFrame.setUndecorated(true);
            loginImg = new ImageIcon("images/barnowl.jpg");
            exitButton = new ImageIcon("images/bclynx.jpg");
            exitButtonPressed = new ImageIcon("images/greathornedowl.jpg");
            logIn = new JPanel()
                public void paintComponent(Graphics g)
                    super.paintComponent(g);
                    int w = getWidth();
                    int h = getHeight();
                    int imageW = loginImg.getImage().getWidth(null);
                    int imageH = loginImg.getImage().getHeight(null);
                    int x = (w - imageW)/2;
                    int y = (h - imageH)/2;
                    g.drawImage(loginImg.getImage(), x, y, null);
            logIn.setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridwidth = gbc.REMAINDER;
            logIn.setBackground(new Color(200,220,220));
            exit = new JButton(exitButton);
            exit.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    interfaceFrame.setExtendedState(Frame.ICONIFIED);
            exit.setBorderPainted(false);
            exit.setPressedIcon(exitButtonPressed);
            exit.setFocusable(false);            // no keyboard tabbing with this
            exit.setPreferredSize(new Dimension(exitButton.getIconWidth(),
                                                exitButton.getIconHeight()));
            gbc.insets = new Insets(10,0,0,10);  // [top, left, bottom, right]
            gbc.weightx = 1.0;
            gbc.weighty = 0.5;  // [0 - 1.0] controls height of textfields and label
                                // less means higher placement, see below (****)
            gbc.anchor = gbc.NORTHEAST;
            logIn.add(exit, gbc);
            userNameField = new JTextField(20);
            userNameField.setMaximumSize(userNameField.getPreferredSize());
            gbc.insets = new Insets(20,0,20,0);
            gbc.weighty = 0;                 // insets determine spacing now
            gbc.weightx = 0;
            gbc.anchor = gbc.NORTH;
            logIn.add(userNameField, gbc);
            passField = new JPasswordField(20);
            passField.addActionListener(new ActionListener()
                String s = "";
                public void actionPerformed(ActionEvent e)
                    if(wrongLogin.getText().equals(""))
                        s = "Incorrect User Name/Password";
                    else
                        s = "";
                    wrongLogin.setText(s);
            passField.setMaximumSize(passField.getPreferredSize());
            gbc.insets = new Insets(20,0,5,0);
            logIn.add(passField, gbc);
            wrongLogin = new JLabel("", JLabel.CENTER);
            // visual diagnostic trick, remove later
            //wrongLogin.setBorder(BorderFactory.createEtchedBorder());
            wrongLogin.setForeground(Color.red);
            wrongLogin.setFont(new Font("SansSerif", Font.BOLD, 24));
            // increase height so label doesn't move with setText calls
            wrongLogin.setPreferredSize(
                           new Dimension(wrongLogin.getPreferredSize().width, 40));
            gbc.insets = new Insets(0,0,0,0);
            // push textfields and label up with weighty constraint > 0
            gbc.weighty = 1.0;  // [0 - 1.0] controls height of textfields and label
                                // more means higher, see above (****), this is key
            gbc.weightx = 1.0;          // expand width so label doesn't move
            gbc.fill = gbc.HORIZONTAL;  // around on us with calls to setText
            logIn.add(wrongLogin, gbc);
        public void showLoginScreen()
            interfaceFrame.setContentPane(logIn);   // must be opaque(true)
            interfaceFrame.setVisible(true);
            interfaceFrame.requestFocusInWindow();  // this method preferred,
            userNameField.requestFocusInWindow();   // see api for explanation
        public static void main (String[] args)
            GraphicsDevice dev =
                GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
            GraphicsConfiguration gc = dev.getDefaultConfiguration();
            DisplayMode currentMode = dev.getDisplayMode();
            ProblemFrame pf = new ProblemFrame(dev);
            dev.setFullScreenWindow(pf.interfaceFrame);
            pf.showLoginScreen();
    }

  • Browser plugin sometimes doesn't display PDF, just a blank region

    Hi,
    I'm running Slackware 13.37 (32-bit), with Adobe Reader 9.4.2 and Firefox 5.0.1. I have the browser plugin installed, but sometimes it does not work. As in the thread title, the document fails to display, with just a black region appearing in the browser. Sometimes, if I refresh the page a number of times, I can get the document to display. Sometimes just waiting seems to help, but not always. This isn't restricted to one particular document. It happens (seemingly) at random. sometimes a given document will display in the browser, but not at others. I can't seem to reproduce the problem consistently, making it harder to fix, I suppose. This does not seem to be a problem with my Firefox profile; I started with a new profile and the problem still occurs. The Firefox error console gives no messages pertaining to the problem :/.
    Any ideas?
    Thanks.

    I'm seeing the same on 32-bit Fedora 15 with:
    firefox-6.0.2-1.fc15.i686
    nspluginwrapper-1.4.4-1.fc15.i686
    AdobeReader_enu-9.4.2-1.i486
    If I kill any pdf plugin process like the following:
    orion
    30772 30542  0 Sep22 ?   
    00:00:00 /usr/lib/firefox-6/xulrunner/plugin-container /usr/lib/mozilla/plugins-wrapped/nswrapper_32_32.nppdf.so -greomni /usr/lib/firefox-6/xulrunner/omni.jar -appomni /usr/lib/firefox-6/omni.jar 30542 true plugin
    orion
    30785 30772  0 Sep22 ?   
    00:00:00 /usr/lib/nspluginwrapper/npviewer.bin --plugin /usr/lib/mozilla/plugins/nppdf.so --connection /org/wrapper/NSPlugins/nppdf.so/30772-2/1152567071
    then it works again.  I'm going to try running without the wrapper for a bit.  Won't help my 64-bit users though.

  • Data Guard Doesn't Display the Instance Detail

    Hello Everyone,
    I have 2 node primary RAC and 2 node Standby RAC. I can see the properties of the RAC DB using "show database verbose rac_p" but when I use "show instance verbose rac_p1" it gives me error
    DGMGRL> show instance verbose rac_p1
    Instance "rac_p1" was not found
    Please note that I get same error on second primary node and on both of the standby instances.
    What is wrong with my configuration?

    Doesn't work either:
    DGMGRL> show instance verbose rac_p1 on database rac_p
    Instance "rac_p1" was not found
    DGMGRL> show instance verbose rac_p2 on database rac_p
    Instance "rac_p1" was not found
    DGMGRL> show instance verbose rac_s1 n database rac_s
    Instance "rac_s1" was not found

  • Artwork sometimes doesn't display properly in iTunes 10

    I'm seeing that in iTunes 10 when you choose 'Album by Artist' mode and display Album artwork as 'Large' it will not display at all if the there are not enough songs to create a high enough area for the artwork to fit. It seems to be when you have 6 songs or less this happens. What I would expect to happen in is case would be that the artwork size chosen would dictate the height of the area for the Album. In other words the Album area would resize to accomodate the artwork even if it meant that there was blank space after the rows of songs in the list.

    Katrina, Thanks very much! That does exactly what I was looking for; I guess I overlooked that one in the menu.
    -jonR

  • Album art sometimes doesn't display in grid view

    The album art now displays erratically in grid view. If 10 albums are showing, maybe 4 will be missing art. All art seems to display properly in every other view. Is this a bug introduced in recent upgrades?

    have the same problem. some artwork doesnt show up in "Albums" view but in all other views. curious to hear if somebody knows something.

  • Firefox Doesn't display correctly and is very laggy on sites with CloudFlare DDoS Protection

    Since 35.0 and above i have been getting weird behaviour on sites with CloudFlare DDoS protection.
    When i open the site in a new window, it takes a really long time and sometimes doesn't display at all and gives me a blank page. and now it just starts to say "New Tab" and i can't hit refresh.
    When the site actually loads after 20 something attempts, the site is laggy, any action takes upwards of 20 seconds.
    Whenever i try to open something, i get a blank page with the URL at tabs. Whenever i try to like or post anything, it delays by 15-20 seconds.
    Site i am trying to use with much failure. http://hypixel.net/
    Anyone else having this issue?

    ''Gnospen [[#answer-693501|said]]''
    <blockquote>
    maybe it would help if you open "troubleshooting information" (under help)
    and copy it to clipboard and paste it here
    </blockquote>
    "application": {
    "name": "Firefox",
    "version": "35.0.1",
    "userAgent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0",
    "supportURL": "https://support.mozilla.org/1/firefox/35.0.1/WINNT/en-US/",
    "numTotalWindows": 1,
    "numRemoteWindows": 0
    "crashes": {
    "submitted": [
    "id": "bp-267af71f-8bf3-46cc-883e-ff65e2150222",
    "date": 1424594056152,
    "pending": false
    "pending": 1
    "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.cache.frecency_experiment": 4,
    "browser.fixup.domainwhitelist.googler": true,
    "browser.fixup.domainwhitelist.google": true,
    "browser.fixup.domainwhitelist.gmail": true,
    "browser.fixup.domainwhitelist.totaldramawiki": true,
    "browser.fixup.domainwhitelist.omegle": true,
    "browser.newtab.url": "http://mystart.incredibar.com/?a=6PRnKQcHXQ&i=26&did=10963&loc=skw",
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20150122214805",
    "browser.sessionstore.max_resumed_crashes": 100,
    "browser.sessionstore.enabled": true,
    "browser.startup.homepage_override.mstone": "35.0.1",
    "browser.startup.homepage": "http://mystart.incredibar.com/?a=6PRnKQcHXQ&i=26&did=10963&loc=skw|http://www.youtube.com/",
    "browser.startup.homepage_override.buildID": "20150122214805",
    "dom.max_chrome_script_run_time": 0,
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "35.0.1",
    "font.internaluseonly.changed": true,
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "keyword.URL": "http://mystart.incredibar.com/?a=6PRnKQcHXQ&i=26&did=10963&loc=skw&search=",
    "media.gmp-gmpopenh264.lastUpdate": 1423171183,
    "media.gmp-gmpopenh264.version": "1.3",
    "media.gmp-manager.lastCheck": 1424516177,
    "network.cookie.prefsMigrated": true,
    "places.database.lastMaintenance": 1424565640,
    "places.history.expiration.transient_current_max_pages": 104858,
    "plugin.disable_full_page_plugin_for_types": "application/pdf",
    "plugin.state.nppdf": 2,
    "plugin.importedState": true,
    "privacy.sanitize.timeSpan": 0,
    "privacy.cpd.cookies": false,
    "privacy.sanitize.migrateFx3Prefs": true,
    "privacy.cpd.sessions": false,
    "storage.vacuum.last.places.sqlite": 1424326926,
    "storage.vacuum.last.index": 1
    "lockedPreferences": {},
    "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 1,
    "windowLayerManagerType": "Direct3D 11",
    "windowLayerManagerRemote": true,
    "adapterDescription": "Intel(R) HD Graphics 4000",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0166",
    "adapterSubsysID": "00000000",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32",
    "driverVersion": "8.15.10.2712",
    "driverDate": "3-26-2012",
    "adapterDescription2": "",
    "adapterVendorID2": "",
    "adapterDeviceID2": "",
    "adapterSubsysID2": "",
    "adapterRAM2": "",
    "adapterDrivers2": "",
    "driverVersion2": "",
    "driverDate2": "",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.2.9200.16571",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": false,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.7",
    "version": "4.10.7"
    "NSS": {
    "minVersion": "3.17.2 Basic ECC",
    "version": "3.17.2 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.17.2",
    "version": "3.17.2"
    "NSSSSL": {
    "minVersion": "3.17.2 Basic ECC",
    "version": "3.17.2 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.17.2 Basic ECC",
    "version": "3.17.2 Basic ECC"
    "userJS": {
    "exists": true
    "extensions": [
    "name": "Adblock Plus",
    "version": "2.6.7",
    "isActive": false,
    "id": "{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
    "name": "FastFreeConverter",
    "version": "5.6",
    "isActive": false,
    "id": "extension@Fast_Free_Converter.com"
    "name": "Mozilla hotfix",
    "version": "2.0",
    "isActive": false,
    "id": "[email protected]"
    "name": "Updater By SweetPacks",
    "version": "2.0.0.609",
    "isActive": false,
    "id": "{8E9E3331-D360-4f87-8803-52DE43566502}"
    "experiments": []
    }

  • IE doesn't display part of spry data set!?!?

    Hi there,
    I hope somebody can help me out with a problem I got with the spry dataset I use on my website. -> http://media-powerplant.de/media-powerplant-referenzen.html
    The thing is that the IE doesn't display text in the "master" region. There are no problems with the Details region, and pictures are also diplayed in the master, but strangely enough no text! :-(
    When i visit the site with firefox or any other browser the text gets displayed. I have no idea what the problem is, but this is really bothering me.
    I hope that somebody is kind enough to help me out here. Big thanks in advance! :-)
    Here is the HTML-code of the site: (the red highlighted lines are those which doesn't get diplayed)
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd
    ">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry
    ">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="description" content="Ihr Partner für Musik- und 
    Videoproduktionen, Webdesign, Internet, Flash, Podcasts und 
    Grafikdesign" />
    <meta name="keywords" content="gemafreie musik,lizenzfrei,lizenzfreie 
    musik, royalty free, filmmusik,hintergrundmusik, werbespot,trailer, 
    jingles, loops, Werbemusik, Mastering, Scoremusik, 
    Filmproduktion
    ,Videoproduktion,Computeranimation,Postproduktion,Filmagentur,3D 
    Visualisierung,3D Animation,Filme,Video,Film Produktion,Grafik 
    Design,Imagefilm,Werbefilm,Werbefilme,Werbefilmproduktion, Webdesign, 
    Webspace ,Webhosting, Web-Design , Web, Domainregistrierung, 
    Internetdesign, Internet, Provider, HTML, Web-Space, Design, Webdesign 
    München, Grafikdesign, kreative, innovative, Homepage, 
    Suchmaschinenoptimierung, Michael Peh, Michi Peh, Matthias Damoser, 
    media powerplant, media-powerplant, München"/>
    <title>media powerplant *** Musikproduktion / Videoproduktion / 
    Webdesign ***</title>
    <meta name="author" content="[email protected]">
    <meta name="copyright" content="Webdesign: Matthias Damoser / media 
    powerplant">
    <meta name="Content-Language" content="de">
    <meta name="robots" content="INDEX,FOLLOW">
    <meta name="revisit-after" content="7 days">
    <link rel="SHORTCUT ICON" href="http://www.media-powerplant.de/favicon.ico
    ">
    <link href="mppLayout.css" rel="stylesheet" type="text/css" />
    <!--[if IE]>
         <style type="text/css">@import url(ie.css);</style>
       <![endif]-->
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsreferenzen = new Spry.Data.XMLDataSet("referenzen.xml", 
    "referenz/beispiel");
    dsreferenzen.setColumnType("name", "html");
    dsreferenzen.setColumnType("MP3", "html");
    dsreferenzen.setColumnType("theURL", "html");
    dsreferenzen.setColumnType("theURL2", "html");
    function MM_preloadImages() { //v3.0
       var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
         var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; 
    i<a.length; i++)
         if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j+
    +].src=a[i];}}
    function MM_goToURL() { //v3.0
       var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
       for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i
    +1]+"'");
    var dslinks = new Spry.Data.XMLDataSet("referenzenlinks.xml", 
    "referenz/link");
    dslinks.setColumnType("a", "html");
    //-->
    </script>
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet" 
    type="text/css">
    </head>
    <body>
    <div id="hauptfenster">
    <div id="content">
       <div id="mitte">
         <div id="header">
           <h1>media powerplant</h1>
         </div>
         <div id="mainnavi">
           <div class="menuHome" onclick=MM_goToURL('parent','media-
    powerplant-home.html');return document.MM_returnValue 
    document.MM_returnValue></div>
           <div class="menuMusik" onclick=MM_goToURL('parent','media-
    powerplant-musikproduktion.html');return document.MM_returnValue></div>
           <div class="menuVideo" onclick="MM_goToURL('parent','media-
    powerplant-videoproduktion.html');return document.MM_returnValue"></div>
           <div class="menuWeb" onclick=MM_goToURL('parent','media-
    powerplant-webdesign.html') document.MM_returnValue></div>
           <div class="menuReferenzen" onclick="MM_goToURL('parent','media-
    powerplant-referenzen.html');return document.MM_returnValue"></div>
           <div class="menuAbout" onclick=MM_goToURL('parent','media-
    powerplant-about.html') document.MM_returnValue></div>
           <div class="menuKontakt" onclick="MM_goToURL('parent','media-
    powerplant-kontakt.html');return document.MM_returnValue"></div>
           <div class="menuImpressum" onclick="MM_goToURL('parent','media-
    powerplant-impressum.html');return document.MM_returnValue"></div>
         </div>
         <div id="inhalt">
         <h2><span class="mpp">media powerplant</span> <span 
    class="bereich">Referenzen</span></h2>
           <h2 class="unterüberschrift">Hier finden Sie einen Überblick 
    und einige interessante Details über unsere letzten Projekte</h2>
           <p> </p>
           <div id="musikproduktion">
             <div id="musikprojekte">
               <div id="projektescroll">
                 <div spry:region="dsreferenzen">
                   <table id="referenzTable">
                     <tr spry:repeat="dsreferenzen" 
    spry:hover="rowHoverRef" spry:select="rowSelectRef" 
    spry:setrow="dsreferenzen">
                       <td><img src="{screenshot}" alt="{name}" 
    width="140" height="93" class="screenshot"></td>
                       <td><span class="kategorie">{kategorie}</span><br>
                         <span class="name">{name}</span></td>
                     </tr>
                   </table>
                 </div>
               </div>
             </div>
             <div spry:detailregion="dsreferenzen">
               <div id="musikmainRef">
                 <h2> </h2>
    <p> </p>
                 <div id="projektbeschreibung">
                   <p class="beschreibung">{beschreibung}</p>
                   <p class="aufgabenfeld">{dsreferenzen::aufgabenfeld}</p>
                   <p class="aufgabenbilder">
                   <img src="{bild1}" width="90" height="77" 
    class="bild"><img src="{bild2}" width="90" height="77" 
    class="bild"><img src="{bild3}" width="90" height="77" 
    class="bild"><img src="{bild4}" width="90" height="77" class="bild"> </
    p>
                    <p class="linkMP3">{MP3}</p>
                    <p class="reflink">{theURL}</p>
                    <p class="reflink">{theURL2}</p>
                  </div>
               </div>
            </div>
           </div>
             <div class="copyrightref">Copyright © 2009 media powerplant | 
    Alle Rechte vorbehalten | <a href="media-powerplant-
    impressum.html">Impressum</a> |  <a href="media-powerplant-
    kontakt.html">Kontakt</a> | </div>
         </div>
       </div>
       </div>
    </div>
    </body>
    </html>
    the XML looks like this: (again highlighting the problematic regions)
    <?xml version="1.0" encoding="UTF-8"?>
    <referenz>
         <beispiel>
         <screenshot>Bilder/Projektbilder/impulstv.jpg</screenshot>
         <name>Sounddesign ImpulsTV</name>
         <kategorie>Musikproduktion</kategorie>
         <beschreibung>Produktion des Musikstückes "Today" für Imagefilm 
    der Firma ImpulsTV</beschreibung>
         <aufgabenfeld>Aufgabenbereich: * Musikkomposition * 
    Musikproduktion</aufgabenfeld>
         <bild1>Bilder/Projektbilder/mics.jpg</bild1>
         <bild2>Bilder/Projektbilder/misch2.jpg</bild2>
         <bild3>Bilder/Projektbilder/keyboard.jpg</bild3>
         <bild4>Bilder/Projektbilder/headphones.jpg</bild4>
        <MP3>
            <![CDATA[
            <embed src="Songs/Referenzen/Today.mp3" autostart="false" 
    loop="false" width="300" height="18" controller="true" id="rock.mp3" 
    name="bg song" pluginspage=            "http://www.apple.com/quicktime/
    download/"> </embed>
          ]]>
        </MP3>
       </beispiel>
        <beispiel>
         <screenshot>Bilder/Projektbilder/gm.jpg</screenshot>
         <name>Webdesign gin-mum.com</name>
        <kategorie>Webdesign</kategorie>
         <beschreibung>Design, Programmierung und Webspace-Hosting der 
    Internetpräsenz für die Münchner Band gin mum.</beschreibung>
         <aufgabenfeld>Aufgabenbereich: * Webdesign * Hosting und Domain * 
    Programmierung</aufgabenfeld>
         <bild1>Bilder/Projektbilder/gm_1.jpg</bild1>
         <bild2>Bilder/Projektbilder/gm_2.jpg</bild2>
         <bild3>Bilder/Projektbilder/gm_3.jpg</bild3>
         <bild4>Bilder/Projektbilder/gm_4.jpg</bild4>
            <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.gin-mum.com">www.gin-mum.com</a>
    </p>
    ]]>
    </theURL>
       </beispiel>
       <beispiel>
         <screenshot>Bilder/Projektbilder/hz.jpg</screenshot>
         <name>Imagefilm für Johanna Schäfer</name>
         <kategorie>Videoprodution</kategorie>
         <beschreibung>Videoediting für Johanna Schäfer</beschreibung>
         <aufgabenfeld>Aufgabenbereich: * Videoediting</aufgabenfeld>
         <bild1>Bilder/Projektbilder/hz_1.jpg</bild1>
         <bild2>Bilder/Projektbilder/hz_2.jpg</bild2>
         <bild3>Bilder/Projektbilder/hz_3.jpg</bild3>
         <bild4>Bilder/Projektbilder/hz_4.jpg</bild4>
        </beispiel>
       <beispiel>
         <screenshot>Bilder/Projektbilder/SRB.jpg</screenshot>
         <name>Sounddesign Radio SRB</name>
         <kategorie>Musikproduktion</kategorie>
         <beschreibung>Media powerplant produzierte das gesamte 
    Sounddesign für den regionalen Radiosender SRB. Dabei wurden 
    hauptsächlich Musikbetten und Radiojingles produziert.</beschreibung>
         <aufgabenfeld>Aufgabenbereich: * Sounddesign * Musikkomposition * 
    Musikproduktion</aufgabenfeld>
         <bild1>Bilder/Projektbilder/waves.jpg</bild1>
         <bild2>Bilder/Projektbilder/peakmeter.jpg</bild2>
         <bild3>Bilder/Projektbilder/mixpult.jpg</bild3>
         <bild4>Bilder/Projektbilder/mics.jpg</bild4>
        <MP3>
            <![CDATA[
            <embed src="Songs/Electro/Hintergrund_3.mp3" autostart="false" 
    loop="false" width="300" height="18" controller="true" id="rock.mp3" 
    name="bg song" pluginspage=            "http://www.apple.com/quicktime/
    download/"> </embed>
          ]]>
        </MP3>
       </beispiel>
       <beispiel>
         <screenshot>Bilder/Projektbilder/Logo_earthTV.jpg</screenshot>
         <name>EarthTV Musik</name>
         <kategorie>Musikproduktion</kategorie>
         <beschreibung>Komposition und Produktion des Stückes "Steil" im 
    Auftrag von EarthTV für deren Sendeformat bei Sevenload.</beschreibung>
         <aufgabenfeld>Aufgabenbereich:* Musikkompostion * 
    Musikproduktion</aufgabenfeld>
         <bild1>Bilder/Projektbilder/peakmeter.jpg</bild1>
         <bild2>Bilder/Projektbilder/headphones.jpg</bild2>
         <bild3>Bilder/Projektbilder/keyboard.jpg</bild3>
         <bild4>Bilder/Projektbilder/mic.jpg</bild4>
         <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://de.sevenload.com/sendungen/
    earthTV">EarthTV bei www.Sevenload.de</a>
    </p>
    ]]>
    </theURL>
    <MP3>
            <![CDATA[
            <embed src="Songs/Electro/Steil.mp3" autostart="false" loop="false" 
    width="300" height="18" controller="true" id="rock.mp3" name="bg song" 
    pluginspage=            "http://www.apple.com/quicktime/download/"> </embed>
          ]]>
        </MP3>
       </beispiel>
    </referenz>
    Are you still with me? :-)
    Attached you'll find what it looks like with Firefox and with InternetExplorer.

    Hmm, stil not working. But thanks for your support!
    Here is the modified XML-code: (the not shown elements are highlighted)
    <?xml version="1.0" encoding="UTF-8"?>
    <referenz>
        <beispiel>
        <screenshot>Bilder/Projektbilder/impulstv.jpg</screenshot>
        <name><![CDATA[Sounddesign ImpulsTV]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
    <beschreibung><![CDATA[Produktion des Musikstückes "Today" für Imagefilm der Firma ImpulsTV]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Musikkomposition * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/mics.jpg</bild1>
        <bild2>Bilder/Projektbilder/misch2.jpg</bild2>
        <bild3>Bilder/Projektbilder/keyboard.jpg</bild3>
        <bild4>Bilder/Projektbilder/headphones.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Referenzen/Today.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
       <beispiel>
        <screenshot>Bilder/Projektbilder/gm.jpg</screenshot>
       <name><![CDATA[Webdesign gin-mum.com]]></name>
        <kategorie><![CDATA[Webdesign]]></kategorie>
        <beschreibung><![CDATA[Design, Programmierung und Webspace-Hosting der Internetpräsenz für die Münchner Band gin mum.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Webdesign * Hosting und Domain * Programmierung</aufgabenfeld>
        <bild1>Bilder/Projektbilder/gm_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/gm_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/gm_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/gm_4.jpg</bild4>
        <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.gin-mum.com">www.gin-mum.com</a>
    </p>
    ]]>
    </theURL>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/hz.jpg</screenshot>
       <name><![CDATA[Imagefilm für Johanna Schäfer]]></name>
        <kategorie><![CDATA[Videoprodution]]></kategorie>
        <beschreibung><![CDATA[Videoediting für Mediengestalterin und Fotografin Johanna Schäfer.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Videoediting</aufgabenfeld>
        <bild1>Bilder/Projektbilder/hz_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/hz_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/hz_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/hz_4.jpg</bild4>
    <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://hanna-schaefer.de/">Website von Johanna Schäfer</a>
    </p>
    ]]>
    </theURL>
    </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/SRB.jpg</screenshot>
       <name><![CDATA[Sounddesign Radio SRB]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
        <beschreibung><![CDATA[Media powerplant produzierte das gesamte Sounddesign für den regionalen Radiosender SRB. Dabei wurden hauptsächlich Musikbetten und Radiojingles produziert.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Sounddesign * Musikkomposition * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/waves.jpg</bild1>
        <bild2>Bilder/Projektbilder/peakmeter.jpg</bild2>
        <bild3>Bilder/Projektbilder/mixpult.jpg</bild3>
        <bild4>Bilder/Projektbilder/mics.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Electro/Hintergrund_3.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/Logo_earthTV.jpg</screenshot>
       <name><![CDATA[EarthTV Musik]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
        <beschreibung><![CDATA[Komposition und Produktion des Stückes "Steil" im Auftrag von EarthTV für deren Sendeformat bei Sevenload.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich:* Musikkompostion * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/peakmeter.jpg</bild1>
        <bild2>Bilder/Projektbilder/headphones.jpg</bild2>
        <bild3>Bilder/Projektbilder/keyboard.jpg</bild3>
        <bild4>Bilder/Projektbilder/mic.jpg</bild4>
        <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://de.sevenload.com/sendungen/earthTV">EarthTV bei www.Sevenload.de</a>
    </p>
    ]]>
    </theURL>
    <MP3>
      <![CDATA[
    <embed src="Songs/Electro/Steil.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/Ortner_video.jpg</screenshot>
       <name><![CDATA[Webdesign christian-ortner.de]]></name>
        <kategorie><![CDATA[Webdesign]]></kategorie>
        <beschreibung><![CDATA[Design, Programmierung und Webspace-Hosting der Internetpräsenz für den Berufsmusiker Christian Ortner.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Webdesign * Hosting und Domain * Programmierung</aufgabenfeld>
        <bild1>Bilder/Projektbilder/Ortner_projekte.jpg</bild1>
        <bild2>Bilder/Projektbilder/Ortner_video.jpg</bild2>
        <bild3>Bilder/Projektbilder/Ortner_MP3.jpg</bild3>
        <bild4>Bilder/Projektbilder/Ortner_kontakt.jpg</bild4>
        <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.christian-ortner.de">www.christian-ornter.de</a>
    </p>
    ]]>
    </theURL>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/henriette_1.jpg</screenshot>
        <name><![CDATA[Sounddesign für Filmprojekt]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
        <beschreibung><![CDATA[Sounddesign und Titeltrack des Abschlussfilms der beiden  Filmhochschule Ilmenau - Absolventen Suzanna Gorolova und Laura Süßenguth.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Sounddesign * Musikkomposition</aufgabenfeld>
        <bild1>Bilder/Projektbilder/henriette_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/henriette_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/henriette_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/henriette_4.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Referenzen/Henriette.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
        <theURL>
    <![CDATA[
    <p>
    Hier kann man das Video sehen:
    <a target="_blank" href="http://www.youtube.com/watch?v=LdBnFKNVhTY">Henriette auf Youtube</a>
    </p>
    ]]>
    </theURL>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/she_1.jpg</screenshot>
       <name><![CDATA[Musikvideo "She said" für die Band gin mum]]></name>
        <kategorie><![CDATA[Videoprodution]]></kategorie>
        <beschreibung><![CDATA[Musikvideo für das Lied "She said" der lokalen Rock-Pop Band gin mum.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Videoediting</aufgabenfeld>
        <bild1>Bilder/Projektbilder/she_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/she_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/she_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/she_4.jpg</bild4>
    <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.gin-mum.com">www.gin-mum.com</a>
    </p>
    ]]>
    </theURL>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/Sim_thumb.jpg</screenshot>
        <name><![CDATA[Imagefilm für die Firma "Sim-Events"]]></name>
        <kategorie><![CDATA[Videoproduktion]]></kategorie>
        <beschreibung><![CDATA[Produkttrailer und Imagefilm für die Simbacher Eventmanagement Firma Sim-events.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * 3D Grafik-Animation * Musikkomposition * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/Sim_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/Sim_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/Sim_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/Sim_4.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Referenzen/Sim.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/Logo_earthTV.jpg</screenshot>
        <name><![CDATA[EarthTV Musik]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
        <beschreibung><![CDATA[Komposition und Produktion des Stückes "Horizon" im Auftrag von EarthTV für deren Webstreaming-Formate.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Musikkompostion * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/mischklein.jpg</bild1>
        <bild2>Bilder/Projektbilder/headphones.jpg</bild2>
        <bild3>Bilder/Projektbilder/misch2.jpg</bild3>
        <bild4>Bilder/Projektbilder/mic.jpg</bild4>
    <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.wetter.com/webcams_galerien/earthtv/">EarthTV bei www.wetter.com</a>
    </p>
    ]]>
    </theURL>
    <theURL2>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.hamburg-tourism.de/sehenswertes/webcam-earthtv/">EarthTV auf www.Hamburg-tourism.de</a>
    </p>
    ]]>
    </theURL2>
    <MP3>
      <![CDATA[
    <embed src="Songs/Chill/Elf.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/like_2.jpg</screenshot>
       <name><![CDATA[Musikvideo "like a fool" für die Band gin mum]]></name>
        <kategorie><![CDATA[Videoproduktio]]>n</kategorie>
        <beschreibung><![CDATA[Editing des Musikvideos "Like a Fool" für die Münchner Band "gin mum".]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Videoediting</aufgabenfeld>
        <bild1>Bilder/Projektbilder/like_1.jpg</bild1>
        <bild2>Bilder/Projektbilder/like_2.jpg</bild2>
        <bild3>Bilder/Projektbilder/like_3.jpg</bild3>
        <bild4>Bilder/Projektbilder/like_4.jpg</bild4>
    <theURL>
    <![CDATA[
    <p>
    <a target="_blank" href="http://www.gin-mum.com">www.gin-mum.com</a>
    </p>
    ]]>
    </theURL>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/eromat.jpg</screenshot>
        <name><![CDATA[Eromat Musikproduktion]]></name>
        <kategorie><![CDATA[Musikproduktion]]></kategorie>
        <beschreibung><![CDATA[Titeltrack für Hörbuch des Eromat Verlages und Corporate Sounddesign in Form eines Jingles für den Verlag]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Musikkompostion * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/mischklein.jpg</bild1>
        <bild2>Bilder/Projektbilder/headphones.jpg</bild2>
        <bild3>Bilder/Projektbilder/misch2.jpg</bild3>
        <bild4>Bilder/Projektbilder/mic.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Referenzen/Eromat.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
      <beispiel>
        <screenshot>Bilder/Projektbilder/Wildcats-Cover.jpg</screenshot>
        <name><![CDATA[Highlight Video Kirchdorf Wildcats]]></name>
        <kategorie><![CDATA[Videoproduktion]]></kategorie>
        <beschreibung><![CDATA[Jahresrückblicksvideo der Kirchdorf Wildcats, American Football Mannschaft der 2.Bundesliga.]]></beschreibung>
        <aufgabenfeld>Aufgabenbereich: * Videoediting * DVD-Authoring * Cover Design * Musikkompostion * Musikproduktion</aufgabenfeld>
        <bild1>Bilder/Projektbilder/Wildcats-Cover.jpg</bild1>
        <bild2>Bilder/Projektbilder/Wildcats_davor.jpg</bild2>
        <bild3>Bilder/Projektbilder/Wildcats_Spiel.jpg</bild3>
        <bild4>Bilder/Projektbilder/Wildcats_touchdown.jpg</bild4>
    <MP3>
      <![CDATA[
    <embed src="Songs/Referenzen/Wildcats.mp3" autostart="false" loop="false" width="300" height="18" controller="true" id="rock.mp3" name="bg song" pluginspage= "http://www.apple.com/quicktime/download/"> </embed>
      ]]>
    </MP3>
      </beispiel>
    </referenz>
    Anyhing wrong with that or is the syntax correct so far?
    Then you said that I have to change the columne type..... Right now I have those two columnes ("name" and "kategorie") set to "string" as you can see in the attached screenshot. Is that correct? If it is, the mistake must be something else I'm afraid.
    Again, thanks for your support! :-)
    And by the way, merry Christmas everybody! :-)

  • Data Link Properties wizard doesn't display correctly.

    Hi, This is Dai.
    I'm using Oracle DB.
    When I try to create configuration of Identity Center and to config DB connection, Data Link Properties wizard doesn't display required DB provider.
    The document of "SAP NetWeaver Identity Management Identity Center Getting Started" discribes that I should choose "Oracle Provider for OLE DB", however, I can't see it in the providers list.
    The list of DB provider is below.
    Microsoft Jet 4.0 OLE DB Provider
    Microsoft OLE DB Provider for Indexing Service
    Microsoft OLE DB Provider for ODBC Drivers
    Microsoft OLE DB Provider for Oracle
    Microsoft OLE DB Provider for SQL Server
    Microsoft OLE DB Simple Provider
    MSDataShape
    OLE DB Provider for Microsoft Directory Service
    And I want to select "Oracle Provider for OLE DB". Are there any settings or configs before this configuration? If you have some information, please help me.
    Best Regards,
    Daisuke Ikari

    Thank you,  I installed 32 bit client. And it's working now
    But now after IC initial configuration there is one more error which says-
    "this identity center database is not migrated to 7.2" And when i refresh the node it also says -
    "this version of identity center requires that database update 1035 is installed. the latest update installed is 1025"
    I have also attached the screenshot for the same below, I also ran update-mxmc.cmd to update DB.But still same error.
    please help,
    Indira

  • [svn:osmf:] 11205: Fix bug FM-169: Trait support for data transfer sample doesn' t display bytes loaded and bytes total for SWF element

    Revision: 11205
    Author:   [email protected]
    Date:     2009-10-27 15:04:26 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Fix bug FM-169: Trait support for data transfer sample doesn't display bytes loaded and bytes total for SWF element
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-169
    Modified Paths:
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/framework/PluginSample/src/org/osmf/model/Model.as

    The bug is known, and a patch has been submitted: https://bugs.freedesktop.org/show_bug.cgi?id=80151. There's been no update since friday, so I wonder what the current status is, or if it's up for review at all.
    Does anyone know how we can be notified when this patch hits the kernel?

  • SQL Developer 1.5.4.59.40 doesn't display any data or only nulls

    Hi All,
    I've got a problem with SQL Developer after I downloaded the latest version *1.5.4.59.40*. SQLDev doesn't display any data or displays only few lines of nulls within information tabs: Column, DATA, Constraints, Grants, Stats, triggers and so on....
    Please see below screen shoots for details:
    !http://www.emarcel.com/%7Eemarcelc/emarcel/SQLDEV1.gif!
    And exception scratch:
    !http://www.emarcel.com/%7Eemarcelc/emarcel/exception1.gif!
    Note:
    When I'm using an old version 1.5.0.51 everything works fine. But you know I would like to upgrade to the latest build.
    Many Thanks for any help.
    Cheers!!

    The problem is solved by upgrading an oracle client_1 to 11g version,
    Apparently these are the files which have caused the problem in old version of the oracle client (10.2.0..):
    SQL Developer is using client's libs by default when it's installed for ex.:
    jdbc.driver.home     /D:/oracle/product/10.2.0/client_1/
    jdbc.library     /D:/oracle/product/10.2.0/client_1/jdbc/lib/ojdbc5.jar
    AND:
    orai18n.library     /D:/oracle/product/10.2.0/client_1/jlib/orai18n.jar
    above libs are not compatible with the latest version of SQLDeveloper.
    That's why the problem occurs.
    Jim,
    thanks for pointing me in the right direction. Cheers mate!!

  • LifeCycle Form Server :- My form is rendering as pdf in the browser  without displaying data sometim

    LifeCycle Form Server :- My form is rendering as pdf in the browser without displaying data sometimes within data fields, and at other times it will display data. The form consistently displays data when rendered in HTML.
    We display the forms in a browser either HTML or PDF format based on the user selection. But the behavior of PDF format is not consistent. Sometimes it renders properly and sometimes the form renders without data.
    Dose any one experienced this issue?
    Any help would be greatly appreciated.
    Thanks in advance,
    RK

    I have been seeing the same issue, but haven't been able to find a fix for it yet. So any info would be appreciated here too.
    Thanks

Maybe you are looking for

  • Differences between Oracle 8 and 9

    Hello, We are thinking of upgrading to Oracle 9 from Oracle 8. We want to know what the major differences are. What is the oracle link that allows us to see where we need to focus our attention for the upgrade? Thank you.

  • Access control - Restricted access not working

    Hi I have an application I have created an Access Control administration page in. I have set the application mode to 'Restricted access. Only users defined in the access control list are allowed'. I have defined two users one with administrator and o

  • In-built 'i-Sight' camera on macbook pro not working

    My macbook is no longer recognising my in-sight camera... No green light when I open programs like Photobooth/skype etc. It also displays error messgaes such as "No camera connected"... How can I fix this???

  • How To Stop Screen Rotating When Tilting

    That's the question... How Do I Stop The Screen Rotating When Tilting?  Drives me nuts!

  • How do I reverse an auto update? mainly a java update

    On 6/13/12 there were a few "automatic" updates - one of them was a JAVA for MAC OS X 10.6 update 9    (updating Java SE;6 to 1.6.0_33) Ever since this was installed - I can no longer access a site that has worked for some time now.  It is a USCG Aux