Xsl output attributes for cdata-section-elements and doctype-system

I am using an xsl file to transform one xml document to another xml document. I want to use the xsl:output Element to do two things:
1.Generate CDATA sections for the text contained in an xml element,"Description"
2. Add the line "<!DOCTYPE PartInformation SYSTEM "part.dtd">
I am using the following code in the xsl file to do these two things, but it does not seem to be doing anything.
<xsl:output cdata-section-elements="Description" doctype-system="part.dtd"/>
Does anybody have any idea what's happening?
Thanks
Kishore

Would you specify the XDK version and supply a simple sample including XML and XSL file?

Similar Messages

  • Attribute for user contains errors. Inform system admin

    Hello,
    We've got an issue with shopping carts created by a user that was deleted from system. When trying to see in Monitoring Shopping Carts header or item details of a given sc. A web error occurs:
    The URL http://srp.srm.gruposalinas.com.mx:8000/sap/bc/gui/sap/its/bbpsc11/! was not called due to an error.
    Note
    The following error text was processed in the system SRP : Attribute for user contains errors. Inform system admin.
    The error occurred on the application server srm-pro_SRP_00 and in the work process 2 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: OUTPUT_EXPRESS_MESSAGES of program SAPLBBP_SC_UI_ITS
    Form: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS
    Module: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS
    We've cheked SAP NOTE 312058-BBPPU99: Error: Attribute for ... is missing. Inform ...
    But it seems that none of the information applies to us, since this issue is only present for Shopping carts that were created by this deleted user.
    So we tried to re-assing one of this sc, chaning PARTNER_NO,ADDR_NR    
    ADDR NP data in table CRMD_PARTNER according to a new given user, but it didn't work. So we need to know how to re-assing this sc or perhaps how to find what specific attribute is missing.
    Any advice is welcome.
    Thanks in advance.

    Hi
    <b>Which SRM version are you using ? This is an SRM error message.</b>
    The manager role should be enough to change user attribute. The transaction is BBPATTRMAINT. Employee role should have BBPUM02 or BBPAT05 to change their own attribute.
    <u>Please check whether the User ID you are using to Log into BBP_PD (and seems to be assigned in the org structure also)is consistent and has no errors in tcode USERS_GEN.  You should check the user, it's not set up properly in USERS_GEN Transaction, Else repair the user.
    To maintain the user attributes you must have the Administrator role.. Your user should have role SAP_BBP-STAL_ADMINISTRATOR and be integrated in the org structure. your user must be integrated in SRM organizational structure. To see which attributes are missing, you can click on the user in PPOMA_BBP to see details, and go to last tab "Check". This will list all required attributes depending on used scenarios (so you may not require all of them). You can also use transaction BBP_ATTR_CHECK to check user's attributes for a particular scenario.</u>
    <b>Please go through the following links as well -></b>
    bbp_mon_sc attributes
    Re: FM for attribute's value assignation in PPOMA ?
    Note 751022 - Monitor Shopping Cart: Item deletion causes termination
    Re: User Settings are not saved
    Re: Not able to generate user users_gen
    Re: SRM organization plan...
    Re: User creation error
    <u>Hope this will definitely help. Do let me know.</u>
    Regards
    - Atul

  • Imported XSLT cannot create attributes for generated XML element

    I have two xslts. One imports the other.
    The imported xslt creates XML elements with attributes and this XML is stored in a variable in the main stylesheet
    If I perform the transformation with JRE prior to 1.6.0.18 then all works fine
    If I use 1.6.0.18 or 1.6.0.19 then the attributes aren't added.
    If I add attributes in the main xslt it works fine or if I output the element directly instead of first storing it in a variable then it also works fine.
    Problem seems to be when you try to add attributes from an imported stylesheet and store the generated element in a variable.
    Below two stylesheets to illustrate :
    First MainStylesheet.xsl
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- Copyright 1993-2005 Seagull Software Systems, Inc. -->
    <xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:exsl="http://exslt.org/common"
    extension-element-prefixes="exsl"
    exclude-result-prefixes="xs">
    <xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes" />
    <xsl:import href="innerstylesheet.xsl"/>
    <xsl:template match="/TestData">
    <xsl:variable name="generatedElementXml">
    <xsl:call-template name="generateElement">
    <xsl:with-param name="s">testValue</xsl:with-param>
    </xsl:call-template>
    </xsl:variable>
    <xsl:for-each select="exsl:node-set($generatedElementXml)">
    *** GeneratedElementXML {<xsl:text>
    </xsl:text><xsl:copy-of select="*"></xsl:copy-of>
    </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>Next innerstylesheet.xsl
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:exsl="http://exslt.org/common"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    extension-element-prefixes="exsl" >
            <xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
            <xsl:template name="generateElement">
                       <xsl:param name="s"/>
                    <TestElement testAttribute="$s" />
            </xsl:template>
    </xsl:stylesheet>The result output by jres before 1.6.0.18 is :
    <?xml version="1.0" encoding="UTF-8"?>
                   *** GeneratedElementXML {
              <TestElement xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" testAttribute="testValue"/>
                   }          The result output by jres since 1.6.0.18 is :
    <?xml version="1.0" encoding="UTF-8"?>
                   *** GeneratedElementXML {
              <TestElement xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                   }          Note : the 'testAttribute' attribute is missing

    Have found the difference in the code
    In both JRE1.6.0_17 & JRE1.6.0_18, the class 'com.sun.org.apache.xalan.internal.xsltc.dom.AdaptiveResultTreeImpl' has the following method
    public void addUniqueAttribute(String qName, String value, int flags)
            throws SAXException
            addAttribute(qName, value);
        }In JRE1.6.0_17 the next method is
    public void addAttribute(String name, String value)
         if (_openElementName != null) {
             _attributes.add(name, value);
         else {
             BasisLibrary.runTimeError(BasisLibrary.STRAY_ATTRIBUTE_ERR, name);
        }In JRE1.6.0_18 the next method is
    public void addAttribute(String uri, String localName, String qname,
                String type, String value)
         if (_openElementName != null) {
             _attributes.addAttribute(uri, localName, qname, type, value);
         else {
             BasisLibrary.runTimeError(BasisLibrary.STRAY_ATTRIBUTE_ERR, qname);
        }Note - the addAttribute method has additional parameters in JRE1.6.0_18 but the call from addUniqueAttribute wasn't updated.
    So in JRE1.6.0_18 addUniqueAttribute actually invokes the following method in the base package com.sun.org.apache.xml.internal.serializer.EmptySerializer
    public void addAttribute(String name, String value)
            aMethodIsCalled();
    void aMethodIsCalled()
            // throw new RuntimeException(err);
            return;
        }and as you can see this does nothing. Hence the fact that the attribute isn't added.

  • Would like to create a script for list all elements and structure of an indesign document

    Hello everybody,
    I'm a very beginner in indesign scripting.
    I would like to create a script in order to list all elements and the inner structure of a n indesign document.
    The aim for me is to understand how elements are sorted and arranged into indesign, and be able to find an specific element by its item name.
    The output document could be an xml or txt document with a treeview structure.
    I would like have a rough idea of which kind of javascript code I should use for that.
    Thanks for answers.

    Hi Ossydoc,
    You can use Muse to create such a website. All you need to do is, create links in Muse for the sermons and select  " link to File " in the hyperlink option and link to those Mp3 files.
    Please refer to this screenshot :- http://prntscr.com/4xvdup
    Now, when you publish your site,  Muse would automatically upload those files onto the server and the users would then be able to listen as well as download those sermons using the links on your site.
    Hope this helps
    Regards,
    Rohit Nair 

  • Transition stiyes for ALL muse elements and widgets

    Hi,
    When are you planning on introducing "Transition Styles" for ALL muse elements?
    By these I mean (at least): fade, vertical (top & bottom) and horizontal (left & right)
    Having them available for only some elements like slideshows keeps us designers from being as creative as possible, and it's 2014, we CAN'T have "dead" looking elements on our websites.
    By "Transition Styles" I mean:
    Page Transitions
    Button Transitions (regular and for menu widgets of course)
    PSD Button Transitions
    Target and TRIGGER transitions for compositions (this is important)
    Footer Transitions
    THIS WILL MAKE BOTH YOUR PRODUCT AND OUR FINAL DESIGNS LOOK LIVE AND CONTEMPORARY
    IMO transitions are an essential thing which gives a new dimension to every website. Without being able to control this, our designs will look static and "dead".
    P.S. I'm at the end of my trial and this is something of the highest importance to me (at least to know if it's coming in the near future) which will tip the balance for me to buy the 1yr subscription. I've thoroughly tested muse for the last 20 days and have came up with the conclusion that this is the only thing missing for me to be able to create website designs which can stand shoulder to shoulder with award winning website designs. Having Transition Styles available for ALL elements will give us designers such power and creative freedom to do things some of which even you couldn't anticipate.

    Hi Brad,
    Check out this website http://www.quazarwebdesign.com/
    You can see the site has won awards, was nominated for more and so on.
    Well, I've managet to re-create it from scratch in muse (without edge animate). I only found myself limited without the ability to assign transitions to ALL elements in muse. For instance, on the landing page you can see the Costa Rica Mobile Web Design section (with the astronaut etc.) And you can notice "WE INNOVATE", "WE PREPARE" and "WE LAUNCH" sections and how when you click on each of them, the content changes but the buttons also have a shape coming from above (vertical transition). I created that using Lightbox or Blank composition (can't remember ATM), used triggers (with inserted images) to act as "WE INNOVATE" etc. and light box areas to act as content with images and text. I then assigned vertical transition to the content and RIGHT THERE, all I needed to make it perfect was to be able to assign "Vertical Transition" to the TRIGGER. I hope you understand what I'm getting at.
    So, giving TRIGGERS their own transition styles, not just targets, doubles the dynamic effect possibilities of the website. And That's what made me come to conclusion that ALL muse elements should have a transition style option. It would let designers be comfortable and rely on that option always being there and would remove disadvantages of certain widgets and elements. For instance, I bet we all are craving for a menu bar with smoothly fading buttons and for pages swiping from the side or fading.
    Give us this, and I'll give you a worthy match to this CSS award winning website, but created entirely in muse and NO CODE WAS WRITTEN THAT DAY

  • I downloaded the installer for photoshop 13 elements and essential for ma but i cannot find them

    i have just purchased photoshop elements 13 and essential elements.  I downloaded Akamai. But do not know how to proceed to install the [rpgram

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.window using the Lightroom 3 link to see those 'Important Instructions'.

  • How do i find a serial number for adobe photoshop elements and adobe premiere that i purchased in a store?

    i have bought adobe photoshop elements and adobe premiere elements in a bundle pack from a store and i cant find a serial code on the box that works so if someone could help me with that, that would be great!

    Hi Michael,
    Please refer the following help article on Find your serial number quickly
    Hope this helps.
    Please let us know in case of any problem.
    Thanks and Regards,
    Sumit Singh

  • Projected Stock for a given Material and Location (System: SCM-APO)

    Hello Experts,
    Appreciate, if anybody can help me in getting a time-series key-figure data (Stock-On-Hand for a given Material and Location) for a given period.
    I am working on a report to display the projected stock (Material & Location are known) for a given period (1 month).
    I am able to view the above data in my planning book.
    Thanks in advance.
    Regards,
    Prasanna
    Edited by: Prasanna Gunji on Apr 9, 2010 3:42 PM

    Hi Prasanna,
    9ASOQMQTY - Stock in quality inspection
    9ASOTRSQTY - Stock in transit
    9AAVLSTCK - Projected Stock
    Hope this helps
    Regards
    R. Senthil Mareeswaran.

  • Best Output Settings for movies via iMovie and Quicktime

    So here's what I don't understand. I can download a 1080 movie trailer, such as Get Smart, and convert it to Apple TV standards via iTunes and have it look amazing.
    However:
    When I digitize my own content, such as TV shows (broadcast TV) from my DVR, or old VHS tapes, why can't I get the EXACT same quality I get as if I were sending these videos to iDVD?
    I capture in DV format using iMovie 6 (don't get me started on 08) and, in the past, when that footage is rendered onto a DVD, it's been fantastic.
    However, when I take that same DV footage and convert it to Apple TV format, it does not look good at all.
    I know the culprit is the FPS rate (24 vs 30), however, I am not understanding how I can take an HD trailer and still have it look great in 720p, but I can't get the same quality from digital video I capture in DV format. That just doesn't make sense to me.
    I read that 24 fps will give that "movie" look, but I want a VIDEO look as an option.
    I've rendered short clips using iMovie, Final Cut Express, MPEG Streamclip and Quicktime directly and none of the Apple TV output is worth it.
    Now a nice, cuddly little software update that would allow Apple TV to play full .mov files would be nice, but I suspect that isn't happening.
    Is there anyone who has any suggestions on taking SD DV footage and making a file that will play on my Apple TV AND still look as good as the original source video?
    I have Apple Cares on the Apple TV but every time I call them for tech support, I am kept on hold upwards of 1/2 hour each time and I get frustrated and hang up.
    PLEASE HELP!
    So ready to put my Apple TV on ebay and run a DVI to HDMI cable from my iMac to my LCD TV....................................

    I have a couple of thoughts about your issue.
    Firstly while you capture to DV, the broadcast tv shows are more likely to be in mpeg2, this itself isn't much of a problem, indeed I do exactly the same if I'm converting a movie that has interludes within it which I wish to remove (import into imovie and export the reference file to AVC in streamclip). This could however explain a little why you find your conversions to DVD (mpeg2) a little better. You also need to remember mpeg2 is lower quality than mpeg4 and even lower quality than AVC. If you watch a clip in mpeg2 it can look better than AVC because AVC is sharper and clearer and shows all the defects mpeg2 simply blurs.
    I also note you might be converting the frame rate to 24 fps, don't do this it will result in jerky video. If you are doing this to retain 720p, you would be much better dropping the resolution to no more than 960 x 540 and keeping your original frame rate, never alter your frame rate. Of note here, if your frame rate is 25 fps it may be accepted by the tv at 720p.
    Finally, you might need to consider what is happening to the resolution of these shows as they go through your workflow process. Your source is likely to be 720 x 480 anamorphic and your workflow is likely changing this to 640 x 480, 853 x 480 or even 1280 x 720 fixed ratio pixels, sometimes this conversion can lead to less than perfect results (another reason your DVD's might look better). Unfortunately imovie will drop these anamorphic flags and you may get better results using another application.
    My results are quite acceptable and I suppose the question is why when yours aren't, but it may simply be a matter of source since I'm in a PAL region.

  • ObjectGUID as matching attribute for reconciliation between AD and IdM

    Hello together,
    I want to use the AD attribute objectGUID as matching attribute between AD and IdM. It is one of the attribute which will never be changed (in case of name changes of a person or similiar changes).
    Our IdM can read this attribute and save it (with the help of a java script). This works fine.
    But if I want write back something to AD I do not know how the "To LDAP directory" path must be configured. I get always the error that the account can not be found in the AD. Maybe the attribute must be changed with a java script ...
    Has anyone already used this attribute?
    Thanks!
    BR
    Michael

    Michael, I have done this many times in pretty much the same way you have indicated.  While DN is good for basic LDAP / AD operations, ObjectGUID is preferred for ModRDN operations or if you want to change the user's DN.  I have written about these operations in a blog, Using modRDN with SAP NW IDM.
    Hope it helps!
    Regards,
    Matt

  • I have misplaced my disk for Adobe Premiere Elements and i got a brand new computer that doesn't have a cd drive. any suggestions?

    Adobe Premiere Elements

    You can download the program but you will still need your serial number to activate it.  You might be able to find that in your Adobe account online if you ever registered the product.
    PE 12 Trial - http://www.adobe.com/cfusion/tdrc/index.cfm?product=premiere_elements
    PE 10, 11 - http://helpx.adobe.com/premiere-elements/kb/premiere-elements-10-11-downloads.html
    PE 9 - http://helpx.adobe.com/premiere-elements/kb/premiere-elements-9-downloads.html

  • MP in DMZ for Internet facing clients and MAC systems

    I am planning to install an MP, DP and SUP in our DMZ to be able to manage following
     - Internet facing clients
     - In house MAC system
     - All Mobile device
    I was wondering what ports I would be needing to open in DMZ so communication in/out DMZ to corporate is not compromised?
    Also, would single box be able to handle all of the above role or I would need additional Primary site insdie the DMZ considering DMZ is residing in different forest?
    I understand PKI is necessary to accomplish this so I am looking into it as well.
    Anyone done this before and had any issues so please share so I can take advantage of your experience.
    Thank you for your respond.

    You need to put a single box in the DMZ that has the enrollment point, SUP, MP, DP roles on it.  Remember that internet facing site box doesn't have to be domain joined.
    for ports you need to be able to push SQL, 445, 135, 8530 (WSUS), ports into the DMZ.  If the DMZ isn't able to have the ability to push into the perimeter network then you need to click the box that says "site server initated" this will make the primary
    on the inside reach into the DMZ ever hour and pull out status messages and other data left that can't come back into the company.
    Port listing
    http://technet.microsoft.com/en-us/library/hh427328.aspx
    Internet based is pretty much the same as it was in 2007 so you can use the docs for further information like scenerios:
    http://technet.microsoft.com/en-us/library/bb693824.aspx
    you will need to have the ability to export the cert and move it to the DMZ or you close the walls on the outside, make the make on the inside of the network, get the certs then bring up the firewall that forces it into the DMZ. 
    It is a bit more complicated than that but it is not easy to outline this proceedure in a single post. 
    http://www.sccm-tools.com http://sms-hints-tricks.blogspot.com

  • Setting screen attributes for select-option in subscreen

    Hello SDN Community,  I have researched this extensively in forums and found much helpful information in getting the select-option working in a subscreen.  Also found information that discussed using standard AT SELECTION-SCREEN statements to process the sub-screen with. 
    I encountered problems when that from the LOOP AT SCREEN within the AT SELECTION-SCREEN OUTPUT,  I set the INPUT/OUPUT attributes to zero, the field was still open for input when it displayed.  For when I do this on other fields of my screen, they are "greyed out".
    Has anyone any experience setting field attributes from within loop at screen for embedded select-option subscreen?  Would appreciate any insight you might have.
    Thank you,
    Dean Atteberry.
    P.S.- I put this thru the debugger and I can see the INPUT and OUTPUT attributes getting changed.  But when displays, it is like the change didn't happen.
    Full description of my processing below...
    I have a screen with four radio-buttons.  Under the first radio-button is my embedded subscreen with one SELECT-OPTION for AUFNR.  Under the other three radio-buttons are single fields declared regular way in main screen.
    In my PBO of main screen I have loop at screen that enables/disables INPUT and OUPTUT attributes based on which radio-button is selected.  This prevents confusion from user entering values in fields other than the one the radio-button is selected for.
    For my embedded select-option subscreen, I have an AT SELECTION-SCREEN OUTPUT statement in which I have a LOOP AT SCREEN.  Within that, based on radio-buttons, I either enable or disable the INPUT and OUTPUT attributes for the S_AUFNR-LOW and S_AUFNR-HIGH fields.
    Edited by: Dean Atteberry on Mar 25, 2009 4:39 PM

    >> I think that you are trying to change select options within main screen, whereby it should be
    >> changed in PBO of that subscreen. You said you do it in AT SELECTION-SCRREN OUTPUT which
    >>  will be only applicable for selection screen (I guess your main screen here). Do loop at screen in
    >>  PBO module of this subscreen not in PBO of the selection screen and see if that helps.
    Hi Marcin,  thank you for your reply.  My "main screen" is not my "selection screen".  Please allow me to further clarify...
    My "main screen" has four radio buttons with a subscreen area under the first one and single fields under the others.
    My "subscreen" is auto-generated by Selection-Screen and Select-Options statements which are in my TOP module.
    I call my auto-generated select-option subscreen in my PBO with...
         call subscreen sca_ordr including sy-repid scr_0121.
    and in my PAI with...
         call subscreen sca_ordr.
    In order to do LOOP AT SCREEN for my system-generated select-option subscreen, I use the AT SELECTION-SCREEN OUTPUT event in which to put my loop. 
    When I walk thru this in the debugger, I can see it setting INPUT/OUTPUT fields to zero, but when the screen displays, there are no changes to my subscreen....  Fields should be "greyed out" instead they are open for intput.
    Doing my best to accurately describe in as few words as possible.  Thank you for your ideas!
    Dean.

  • How to know the printprogram and output type for perticular standard script

    how to know the print program and output type for perticular standard script and wt the proceure we will fallow to modifie the standard script..if possible u have any sample code plz share with me.....

    Hi Phani,
    To know the print program and output type for a standard script we have a table called TNAPR. So just you go to SE11 and provide the table name as TNAPR and choose display option.Then go with display entries option and in selection screen you have to provide the form name for whic you want to know the print program and output type.
    To modify a standard script first of all you have to copy the standard form for which you need modifications into Zform. Once you done this you can modify the layout set as per your requirement.Then what ever the modifications you have done in layout set for that you need to populate the data.For this you also need to do some modifications to the print program.so you have to options like directly you can modify the print program as per your requirement and other one is you can create a subroutine and do coding in that subroutine. Then you need call this subroutine in the Script Form.like this you can do modifications to the standard script........................... Reward me if its helpful..........
    Thanks & Regards.
    Laxman.P
    B'lore.

  • Add a CDATA section

    Hi:
    I have trouble getting a CDATA section:
    <row>
    <customer>{fn:data($row/customer)}</customer>
    <lastname>{fn:data($row/lastname)}</lastname>
    <firstname>{fn:data($row/firstname)}</firstname>
    <desc><![CDATA[{fn:data($row/desc)}]]></desc>
    </row>
    the {fn:data($row/desc)} will show in the <desc> because of the CDATA section. I tried to use fn:concat but the "<" and ">" before and after the CDATA turn to "&lt;" and "&gt;" What is the method to have a CDATA section in the data service function?
    sorry, I couldn't find much in the doc.
    thanks!

    Sorry, more details needed here.
    The user enters data through another set of web pages which store the input data to db.
    aldsp reads the database and output the xml
    for $row in ns0:getCustomerData()
    return
    <row>
    <customer>{fn:data($row/customer)}</customer>
    <lastname>{fn:data($row/lastname)}</lastname>
    <firstname>{fn:data($row/firstname)}</firstname>
    <desc><![CDATA[{fn:data($row/desc)}]]></desc> (a set of square brackets may be missing)
    </row>
    But aldsp won't parse fn:data($row/desc) because it's inside a CDATA section. And aldsp gives error when I include "<![CDATA[" inside the curly braces.
    I've seen this solution on google searching:
    declare namespace saxon="http://saxon.sf.net/";
    declare option saxon:output "cdata-section-elements=desc";
    but aldsp gives error for the second declare statement.
    thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Advice re: Moving 1 user acct., keeping another, but wiping

    The details: I have an iMac with 2 user accounts. I have just purchased a new Mac Mini. I want to move have my user account on the Mac Mini (this part I can do, mostly, via Migration Assistant). I want to leave the other user account on the iMac - bu

  • TT14000: TimesTen daemon internal error: subd: flusher thread failed

    Hi, I encountered this on a production environment, the datastore was then became invalid, no connection to TimesTen available causing failures in our Java application. TimesTen version is 7.0.5 64-bit on RedHat Linux. Wondering what the root cause a

  • Gmail error "The user name or password for Gmail is incorrect"

    Starting the other day I am getting the above error when I try to access my gmail account on my iphone4 and I get the same error on my iMac. This is the 2nd or maybe 3 time this has happened. The last was exactly month ago. Also keep in mind I can ac

  • Startproblem with Fuzzy Logic 4

    Hi. I have a problem starting the latest version of FuzzyLogic4. The message displayed is "Load Rushtop NT Driver Fail". I can run PC Alert 3 + 4 without any problem. Anyone have an idea to solve this problem? Mobo K7T266 Pro2 - XP2000+ - MSI GF4 TI4

  • FCS 3 and Snow Leopard

    Has anyone that's installed SL and FCS 3 successfully seen any speed increase in any part of the FCS suite?