Problem with Korean Word Counting

After upgrading to Yosemite 10.10.3, Korean word counting in Pages got mesed up. Before the upgrade, there was no problem. But now Pages counts every single letter I typed as a "word." As a writer who should be sensitive to the number of words I type, this is very annoying. Is there anyone who experiences the same problem? is there any fix?

See
Korean word count

Similar Messages

  • Problem with getting word count in TLF text

    Hi,
    I want to get the word count from my TLF text, but the problem is that I am not being able to handle th case for space.
    I am using the findNextWordBoundary property of ParagraphElement as shown below:
    private function countWords( para : ParagraphElement ) : void
                var wordBoundary:int = 0;
                var prevBoundary:int = 0;
                while ( wordBoundary != para.findNextWordBoundary( wordBoundary ) )
                   // If the value is greater than 1, then it's a word, otherwise it's a space.
                    if ( para.findNextWordBoundary( wordBoundary ) - wordBoundary > 1)
                        wordCount += 1;                   
                    prevBoundary = wordBoundary;
                    wordBoundary = para.findNextWordBoundary( wordBoundary );                   
                    // If the value is greater than 1, then it's a word, otherwise it's a space.
                    if ( wordBoundary - prevBoundary > 1 )
                        var s:String = para.getText().substring( prevBoundary, wordBoundary );
                        lenTotal += s.length;
    Now I have 2 issues here:
    If my string is for eg: Hi, I am writing in "TLF". And I want to get its word count then
    1) Suppose I take the case of the string Hi,  . Then para.getText().substring( prevBoundary, wordBoundary ) gives the text as Hi i.e without the comma. Same case for the string "TLF forums" , It treats each " as a single word and not the whole "TLF" as a single word. Why doesn't it compute till spaces, that should be the ideal case. So until we don't give a space it should count the whole thing as a word.
    2) So now the problem is I have applied a condition   if ( wordBoundary - prevBoundary > 1 ) to check if it is a space i.e. if the diff is <= 1 it is a Space. But if I use this I miss out on single words. Like for eg if I have "Hi, This is a string" ,then 'a' is ignored too.
    Now I could have added a check here along with the space check that the string between prevBoundary and wordBoundary is " "(i.e a space), Then also it is a problem as then the single words like a,&,I will be ignored.
    So, now I am stuck with this issue and need some help from you guys.
    Thanks

    findNextWordBoundary is not going to serve your purpose.  I'd propose doing something like this:
    // didn't test this but something like this - whitespace matches any set of 1 or more white space characters
    static const whiteSpaceRegExp:RegExp = /[u0020|u000A|u000D]*/
    public static function countWords( para : ParagraphElement ) : void
         return para.getText().split(whiteSpaceRegExp).length;
    A good list of everything considered whitespace extracted from the unicode space can be found here:
    http://sourceforge.net/adobe/tlf/svn/449/tree/trunk/textLayout/src/flashx/textLayout/utils /CharacterUtil.as
    In function createWhiteSpaceObject
    Hope that helps,
    Richard

  • Problems with saving Word 2007 table as PDF

    I have a table in MS Word 2007 with some merged cells. If I use the Save as ... PDF or XPS option in Word 2007 to save this document as a PDF, the resulting PDF has a table with a discontinuous table grid. The table lines around the cells are broken.
    Is this a problem with the Word table or does the Save as PDF command not work well with tables.
    Thanks,
    Karl Smith

    What versions of both programs and how did you create the PDF? Can you post an example of the PDF?

  • Problems with Microsoft Word 2011

    Hello,
    So, I'm having a slight problem with Microsoft Word 2011. Yes, I realize this isn't exactly Apple related, but I was wondering if it had to do with a compatibility issue with Lion.
    I'm running version 10.7.3, and I've found that when I try and change my language in Microsoft Word to English (Canada) - also have tried English (Britain) - and neither of them have changed successfully. My system language is also Canadian English, but none of these options seem to stop my Microsoft Word from trying to correct Canadian English spelling.
    If anyone knows if there has been updates to Microsoft Word for this issue, please let me know. I thought it would be worth a shot asking here, as I could find nothing anywhere else.

    You may also want to search/ask in the forums run by the make of this app to deal with its problems:
    http://answers.microsoft.com/en-us/mac/forum/macword

  • Problems with compressed words in emails sent through Outlook in Office for Mac 2011

    I have had problems with sending emails through Outlook both when:
    1) I copied text from a Word document and pasted into an email.
    2) I shared as HTML and sent an email.
    The problem I experience is that emails are received with random spaces dropped, such that words get merged together.
    I have spoken with Microsoft and have been told that problems with the copy and paste from Word into Outlook is a known issue.
    However, I have been told that I should be able to "Share as an HTML" in an email without issue. However, the very same problem exists.
    Now I am told that this may be a problem with my documents. However, I have had a colleague use my docs in the same way in Outlook on his PC without a problem. The other possibility I am told is that possibly I have a problem with my OS.
    Have others expererienced the same problem?

    Is your Outlook window formatted as HTML or text only? A word file has formatted text. If you want to copy only the text from your Word file, you should make a detour over a TextEdit window, or if you have BBEdit like follows:
    Copy your Word text, paste it into a TextEdit window - in this window you have to make a command first SHIFT + COMMAND + T if you have a window allowing formatting ("rich text"). Copy it once again - all the Meta formatting from Word are eliminated now! - and paste the text into your Outlook Window.
    If you want to send an HMTL Email, I am not sure, whether a copy and paste between Word and Outlook will work. This would mean, that the copy and paste should transform the Word-formatting into HTML-formatting fit for Outlook. Perhaps some others could answer this question.
    marek

  • Adobe Reader XI 11.0 problems with MS Word

    I wanted to convert MS Word to PDF. Seeing it was avalible with Adboe Reader XI I clicked to initiate the conversion.
    To my surprise I would have to pay for this process, a price I did not agree with.
    I didn't continue the payment process.
    I now have problems opening MS Word documents.
    Trying to open MS Word, Adobe opens with a error basically stating the file is not supported.
    I've removed Adobe Reader & reinstalled having the same problem.
    What can I do to reverse this problem?
    Thanks!
    Steve

    This means your file association is corrupted.  You need to set it so that
    .pdf files open with Adobe Reader
    .doc / .docx files open with MS Word

  • Help with a Word Counting Program..

    I need some help with a program I am trying to write
    The program is being written in BlueJ.
    Im just starting the program and am completely confused on how I should write this...
    But here is what I have to do..
    I have to use a scanner to scan a Text file and count the # of Words the number of Vowels (including Y when it is) and the # of Palindromes (Word spelled same forward and Back) as well as which Palindromes are being used.
    It would be good to have a class to clean the text and a seperate class for the tasks...
    I do not want to use anything other than "If" statements and while loops (no "for" loops) and only use Printwriter as the output file writer.
    Thnx to anyone in advance

    I have a basic Vowel coding that doeswnt work...
    public class vowel{
    String word = "heyyou";
    String vowels = "aeiouy";
    int[] countv = new int[vowels.length()];
    int countv2;
    int i=0;
    if(i<word.length();) { i++ {
    if (int j=0 && j<vowels.length()) {
    return j++;
    if (word.charAt(i)==vowels.charAt(j)) {
    countV[j]++; countV2++;
    for (int i=0; i<vowels.length(); i++) {
    System.out.println("Vowel "vowels.charAt(i)" = "+vcnt);
    System.out.println("Consonants = "+(word.length()-vtot)); }
    I also have a basic Palindrome code that works as a boolean but I need to make it return what the palindromes are and how many of them are there. I wanna know how I would do this.
    public class Palindrome{
    public static boolean isPalindrome(String word) {
    int left = 0;
    int right = word.length() -1;
    while (left < right) {       
    if (word.charAt(left) != word.charAt(right)) {
    return false;
    left++;
    right--;
    return true;
    I would also like to know how to actually start writing the word counter.

  • Problem with open Word Documents and Quark Documents

    Hi,
    I am getting a strange problem with OS X Server 10.4.6, running on a G4 Xserve 1Ghz.
    When working on files in Microsoft Word X and 2004 after having the file open for a few minutes if you try and save we get an error "Word failed reading from this file", or "Bad network connection".
    Also in Quark 6.52 and Quark 6.1 when trying to save a file to the server we get "File not found [-43]". It is possible to open files, and it is also possible to move files onto the share using finder without any problems. To work on documents we are having to work on them locally on the desktop then copy across once done.
    The only thing that i can think has changed is the power went off last night, which casued the Xserve to restart. These problems are occuring across all client computers so i am assuming it can only be a problem with the server.
    Does anyone have any idea what this could be, or any tests that i can do to detmine what is up with it
    Many Thanks
    Tim Pearson

    Hi David,
    I have just tried power-cycling the switches, still getting the same problem.
    I will run disk utility on the shares at lunch. I don't think this will help as it is happening on both data drives.
    I have now also updated the OS X server to 10.4.7, and have turned the access log and error log on, it is showing no errors in the error log, and i can't see anything in the access log that looks out of the ordinary.
    With Quark i can replicate the same problem every time by creating a new project, saving it, altering it and saving it again (this works), then if i alter it again and try and save it comes up with "Duplicate File Name [-48]". It is also not deleting the temporary files, for example "QXP-1055966280.qxp".
    Regards
    Tim Pearson
    Grafika Ltd

  • Office Integration: Problems with MS Word

    Hi all,
    I have a problem with word integration in SAP CRM 7.0 EhP1 SP04.
    I have created, activated and populated a web service and created a word template. When creating a new document in the WebUI (button "With Template") Microsoft Word not even starts. However, the Word document based on the template was enriched with data via the web service and is available in the assignment block "Documents". When I click on the link and open the document I can make changes, but then I only can save it local and have no possibility to save it at the content server which usually should be done automatically. When I use the button "Edit" in the document details page word will not start.
    All prerequisites mentioned in different sap notes and forum threads (active services in sicf, alias for content management, browser settings, ...) are completed.
    Has anyone had similar experiences or has ideas for a possible solution why word will not start when using the edit button?
    Do I have do make any additional settings concerning content management?
    Thanks in advance!
    Sebastian
    Edited by: Sebastian Lenz on Oct 19, 2011 5:07 PM

    Hi Andrei,
    Thank you very much for your quick response and your suggested SAP notes.
    With the help of note [1566793 'Procedure to create word template in EHP1 & higher versions'|https://service.sap.com/sap/support/notes/1566793] I was able to successfully create a template that is filled with data from our web service. Because we have already installed SP04 the corrections mentioned in note [1459264 'Microsoft Word does not open in CRM Template Designer'|https://service.sap.com/sap/support/notes/1459264] are implemented as well.
    I would be very grateful if you could suggest any more possible solutions.
    Or means "For security reasons, Microsoft Word can no longer open the document and write it back to the CRM server using the save function." it is absolutely impossible to edit a Word document, that alreay exists on the content server, and save it as new version?
    Appreciating your help very much,
    Sebastian
    Edited by: Sebastian Lenz on Oct 20, 2011 8:44 AM

  • Download causing problems with Microsoft Word

    Hi  - I’ve downloaded Acrobat Standard subscription.
    Because I couldn’t find a download button, I contacted an Adobe forum and was given another link, which allowed me to download (though with no product key – is that normal?)
    What has happened is this:
    During the downloading process, I was told to close other programmes, including Word – which I did. I was told that Word was not closed, but it appeared to be so I continued anyway…
    I now have the problem that each time I try to open a Word doc., I get the long message that I’ve copied in below relating to a problem with/absence of macros.
    Eventually I can open the Word doc by clicking the OK button 5 or 6 times – the message goes at last and I can continue. So not I’m not completely incapacitated, but it’s clearly a problem.
    I’ve been in touch with Adobe by phone; but in the end your colleague couldn’t help.
    So… I’m wondering – can I uninstall the programme and start again? Or might there be another way around this? I’ve tried repairing Word, but that has made no difference.I don't think I have a Serial Number.
    Thanks - Laurence

    Windows 2007
    Mozilla Firefox
    Struggling to get a screen shot because I am blocked from any other actions til I get rid of the error message! However, the message reads: "The function you are attempting to run contains macros or content that requires macro language support. When this software was installed you chose not to install support for macros or controls.
    "This error usually occurs because of macro security settings. If you know that the macro comes from a source that you trust, you can change your macro security settings to allow you to enable the macro. The way that you change your macro security settings depends on the Microsoft Office System program that you are using.
    Microsoft Office Access, Microsoft Office Excel, Microsoft Office PowerPoint, or Microsoft Office Word --
    To check your macro security settings, click the Microsoft Office Button, click <program name> Options, click Trust Center, and then click Trust Center Settings.
    If macro security is set to Disable all macros without notification, all macros are automatically disabled. Use the following procedure to enable the macro.
    In the Trust Center dialog box, click Macro Settings, and then click Disable all macros with notification.
    Click OK in the Trust Center dialog box to apply the new setting. Click OK to close the program options dialog box.
    Close the file and the Microsoft Office program that you are using.
    Open the file again. A Security Alert appears in the Document Information Bar just below the ribbon. Click Enable Content to allow the macro to run.
    When you have enabled the macro, it is recommended that you return the macro security setting to Disable all macros without notification.
    If macro security is set to Disable all macros with notification, but you selected Disable when prompted by the macro warning dialog when you opened the file, use the following procedure to enable the macro.
    In the Trust Center dialog box, click Cancel. Click Cancel to close the program options dialog box.
    Close the file and the Microsoft Office program that you are using.
    Open the file again. A Security Alert appears in the Document Information Bar just below the ribbon. Click Enable Content to allow the macro to run.
    If macro security is set to Disable all macros except digitally signed macros, the macro may not have been digitally signed. Verify that you can trust the macro before using the following procedure to allow it to run.
    In the Trust Center dialog box, click Cancel. Click Cancel to close the program options dialog box.
    Close the file and the Microsoft Office program that you are using.
    Open the file again. A Security Alert appears in the Document Information Bar just below the ribbon. Click Enable Content to allow the macro to run.
    Microsoft Office Outlook, Microsoft Office Visio, or Microsoft Office Publisher --
    To check your macro security settings, on the Tools menu, click Trust Center, and then click Macro Security.
    If macro security is set to No warnings and disable all macros, all macros are automatically disabled. Use the following procedure to enable the macro.
    In the Trust Center dialog box, click Warnings for signed macros; all unsigned macros are disabled, and then click OK.
    Close the file and the Microsoft Office program that you are using.
    Open the file again. When prompted, click Enable Content to allow the macro to run. If you are using Visio, the Enable Content button appears as part of a Security Alert in the Document Information Bar. If you are not prompted to enable the macro, or if you receive this error again, the macro may not be digitally signed. Verify that you can trust the macro. If you are certain that you can trust the macro, use the next procedure below to enable the macro.
    When you have enabled the macro, it is recommended that you return the macro security setting to No warnings and disable all macros.
    If macro security is set to Warnings for signed macros; all unsigned macros are disabled, the macro may not be digitally signed. If you are certain that you can trust the macro, use the following procedure to enable the macro.
    In the Trust Center dialog box, click Warnings for all macros, and then click OK.
    Close the file and the Microsoft Office program that you are using.
    Open the file again. When prompted, click Enable Content to allow the macro to run. If you are using Visio, the Enable Content button appears as part of a Security Alert in the Document Information Bar.
    When you have enabled the macro, it is recommended that you return the macro security setting to Warnings for signed macros; all unsigned macros are disabled.
    Microsoft Office Project --
    To check your macro security settings, on the Tools menu, click Macro, and then click Security.
    If macro security is set to Very High, use the following procedure to enable the macro.
    In the Security dialog box, click High, and then click OK.
    Close the file and Microsoft Office Project.
    Open the file again. When prompted, click Enable Content to allow the macro to run. If you are not prompted to enable the macro, or if you receive this error message again, the macro may not be digitally signed. Verify that you can trust the macro. If you are certain that you can trust the macro, use the next procedure below to enable the macro.
    When you have enabled the macro, it is recommended that you return the macro security setting to Very High.
    If the macro security setting is set to High, the macro may not be digitally signed. If you are certain that you can trust the macro, use the following procedure to enable the macro.
    In the Security dialog box, click Medium, and then click OK.
    Close the file and Microsoft Office Project.
    Open the file again. When prompted, click Enable Content to allow the macro to run.
    When you have enabled the macro, it is recommended that you return the macro security setting to High.
    This error may also occur for the following reasons:
    The certificate of trust that is attached to the macro is invalid. Unless you are certain that the macro is safe, it is recommended that you not trust or run the macro.
    The certificate is no longer trusted, was revoked by the issuing authority, or is damaged. Unless you are certain that the macro is safe, it is recommended that you not trust or run the macro.
    Visual Basic for Applications (VBA) is not installed on your computer. In this case, no VBA macro can be run, regardless of whether the macro has a valid certificate of trust. You or your administrator may have chosen not to install VBA, or the version of Microsoft Office that you are using may not install VBA by default. If your version of Microsoft Office does not provide VBA as an installable feature, you can upgrade to a version that provides VBA support.
    If you are unable to change the security settings, it is possible that another program has locked the security settings. Close all Microsoft Office System programs, then restart your program and change the security settings.
    More information about this error message online."

  • Old problem with precision time counting and /usepmtimer solution.

    Hello, all!
    There was a problem in Windows XP and 2003 Server with using QueryPerformanceCouner() function. Sometimes it can cause problem with precision time measurements on CPUs which support powersaving modes by changing clock frequency. The simplest solution for that was /usepmtimer key in boot.ini file which forces the system to use another timer.
    I just want to know does this problem appear in Windoes 7? And how to solve it since there is no boot.ini file in Windows 7?
    Thanks a lot!
    P.S. This is a page with detailed description of the problem:
    http://support.microsoft.com/default.aspx/kb/895980

    Hi ,
    There is official documentation released on userpmtimer for windows 7 operating system.
    Also the KB article only refere to the OS which have performance problem.
    After reading the below article , i feel that this problem is taken care in windows 7 / windows 2008 ( though there is no formal written documentation )
    http://blogs.technet.com/perfguru/archive/2008/02/18/explanation-for-the-usepmtimer-switch-in-the-boot-ini.aspx
    you can post in windows 7 dedicated forum, so that MVP / Microsoft Engineers and community members would suggest you with latest data if any.
    http://social.technet.microsoft.com/Forums/en-US/category/w7itpro

  • Page 5 problem with some word documents (Page 4.3 fine)

    Pages 5.0 (newest version) is unable to open some of my word documents. It is impossible for me to predict which file will cause problem and the error (typical Apple) does ot help at all: "The document cannot be opened". The documents that cannot open with Pages 5.0 open with Word or Pages 4.3 ! Once opened in 4.3, I can copy the content to a blank document in 5.0, save it with no issue but it's a productivity killer!
    Anyone having the same issue?

    Laurent Seroude wrote:
    Apple must deliver a true and ROBUST update to Pages/Numbers/Keynote desktop versions instead of pushing the iCloud/Safari version.
    Good luck with that!
    If you owned iWork '09 you should still have it in your Applications/iWork folder and can use both together on Mavericks.
    Peter
    btw The count of missing features is now over 110 despite Apple reinstating a small number and we haven't bothered to count all the bugs.

  • Problem with apex_application.g_fxx.count

    Okay, I am at my wits end on this one.
    I'm running Apex 4, and on one of my screens I have a manually created tabular report. For one of the master records, this tabular report returns 12 rows, yet apex_application.g_fxx.count consistently returns 24 as the count. For other master records, this is working correctly however, returning the same number as what is showed on screen.
    I've tried to duplicate it on apex.oracle.com, but it works correctly there as well.
    I've checked the data table, and there are only twelve rows there, same as what the tabular report shows. I've added in TONS of code to report back what is happening and everything looks fine in the code and processing, but the data that gets saved is out out sync, since it appears that for some reason the xxx.count (for only this one master record) is somehow doubling the count, so the data that gets saved is off. For example, say someone makes a change to the third sub-record, the 'count' suddenly becomes 6, so it saves the changes for the sixth sub-record.
    Has anybody else ever seen this phenomenon and knows what causes it? I've spent three fruitless days trying to track this down so far.
    Thanks,
    Bill Ferguson
    A bit of further information.
    In my app, users must list all commodities present at a site first (different screen). They may then go to my Resources screen and input the tonnage and grades of the various commodities present. This ensures that users cannot add tonnage and grade information for a commodity that is not listed as being present at the site.
    So, when they get to the Resources screen, the bottom is all filled out with all of the commodities listed, and they simply have to type in the grade. The users also wnated the ones with information in the grade fields to appear at the top, so I had to add an order by to the query, as follows:
    SELECT a_rec,
           c_code,
           import,
           item,
           grade,
           grade_units,
           child_key,
           count_order
      FROM (SELECT rec a_rec,
                   c.commod || ' - (' || code || ')' c_code,
                   c.import,
                   item,
                   grd grade,
                   grd_units grade_units,
                   child_key,
                   rec count_order
              FROM    RESOURCE_DETAIL rd
                   RIGHT OUTER JOIN
                      commodity c
                   USING (dep_id, code)
             WHERE (CHILD_KEY = 1028244420100003)  -- actually using a variable here instead of hard-coded values
            UNION
            SELECT c.line a_rec,
                   c.commod || ' - (' || code || ')' c_code,
                   import,
                   NULL item,
                   NULL grade,
                   NULL grade_units,
                   NULL child_key,
                   c.line + 200 count_order
              FROM commodity c
             WHERE dep_id = 10282444 -- actually using a variable here instead of hard-coded values
                   AND code NOT IN
                          (SELECT code
                             FROM resource_detail
                            WHERE dep_id = 10282444 AND yr = 2010 AND line = 3)) -- actually using variables here instead of hard-coded values
    ORDER BY import, count_orderNow, on the screen the commodities are listed as:
    Copper
    Gold
    Molybdenum
    Silver
    Gemstone
    Lead
    Zinc
    Uranium
    Gypsum
    REE
    Talc
    Garnet
    But, the code I've added to see what is happening is instead saying the records being processed are in this order:
    Copper
    Garnet
    Gemstone
    Gold
    Gypsum
    Lead
    Molybdenum
    REE
    Silver
    Talc
    Uranium
    Zinc
    I do not have any sort criteria specied in the Report attributes. So, why is the order of processing (for i in 1 .. apex_application.g_f03.count) processing in a different order than what is shown on screen?

    Hi Arie,
    This was a strange one to track down. I wound up adding all kinds of logging statements in my code, writing things out to a table while processing, counts, which record, etc., and suddenly it dawne don me that everything was being processed in alphabetical order by commodity name, even though the screen display was by two other fields. I played around with different 'order by' settings, but the processing somehow was always by the commodity name. I have no idea where it was getting that 'directive', but nothing I could figure out changed it.
    So to recap, in case I didn't explain it well enough above, this is a manually created tabular form, with a 'regular' form above it (master-datail). I use the apex_item.text, etc. constructs to create the tabular form, and then in my 'proceses' I'm using the normal apex_application.g_fxx array to perform the processing. While the screen display from the tabular report shows everything with an order by of two columns, the processing always was done ordered by a diffierent, no-specified column.
    Changing my report definition to use the same 'order by' as the processing seemed to be working fixed the problem, though I have no idea where it was getting the 'order by' from to overwrite what was being on screen. I'm not sure if this is a bug or not, I vaguely remember Scott Spadafore commenting about this behaviour a long, long time back, but I can't find the post. It was probably back in the 2.x days.
    I also have no idea what is causing the array to somehow double for some records and not on others. In this particular case, the record I had on screen only had 7 commodities, but when I printed the result of apex_application.g_fxx.count, it always showed 14, even though on apex.oracle.com, when I tried to re-create the problem, it worked correctly and only reported 7. Most records in my database that I tested this on worked correctly, reporting the correct number of commodities, but occasionally I'd run across one where the number was doubled. I don't know if there is some internal table Apex uses that I could truncate (like possibly wwv_flow_collection_members?) where possisbly this type of information be kept. The only thing I can think of is that somewhere these counts are stored in a collection and it is populated with data from a real old incarnation, and during processing it stumbles across these old records and uses the old values. It doesn't seem like a realistic possibility, but it about the only explanation I can think of.
    Bill Ferguson

  • Early watch alert - problem with generating word document

    Hello experts,
    since last week I am not able to generate word documents of early watch reports. I have access to 4 different solution manager installations (of customers) where the generation was working without problems but stops since last week.
    SAP gui starts word and the standard word sheet is loaded (SAP early watch start page) but without putting data into the sheet. At the same time I get an error message in the sap gui saying:
    Error during download; read details in long text
    Long text:
    Message no. DSVAS824
    Diagnosis
    The application was unable to write a file to a local directory.
    Procedure
    Often the maximum length of 128 characters for the entire file name, which is defined internally, is exceeded. To avoid this problem, you can change the setting.
    To do this, open Microsoft® Word.
    For English interfaces, choose Tools->Options->File Locations->User templates.
    For German interfaces, choose Extras->Optionen->Speicherort für Dateien->Benutzervorlagen.
    Recommendation: Use directory names with a maximum of 60 characters (For example  C:Program FilesMicrosoft OfficeTemplates)
    I have already maintained the path in word options (we use Word 2007). My colleagues have the same problems.
    Any ideas or hints? Thank you in advance.
    BR, Basti

    Hi all,
    SAP is aware of this problem and is working on a fix.
    For a ***temporary workaround**
    run se38
    RAGS_DSWP_SERV_CONTENT_RESET
    (De-Activate content until  26.05.2011 07:28:06
    Execute
    This will allow you to open the report on a temporary basis.

  • SQL Developer Problems with Microsoft Word Apostrophes

    Hi,
    I'm trying to copy and paste a list like the following from Microsoft Word to SQL Developer -
    '123','456','789'
    Shouldnt be a problem.
    But when ever I paste it into an sql file in Developer it comes out with different styled apostrophes which SQL Developer does not seem to like -
    ‘123’,’123’,’123’
    Obviously I can just do a find and replace and change all of the problem apostrophes but is there a way to stop the problem occuring?
    It doesnt matter what font I am using in Word, I always get the slanted style apostrophes. But in Developer, if I just normally type an apostrophe, I get the acceptable version - '

    I hate copying and pasting to/from word it does far to many things I don't want it to do.
    A trick that sometimes works for me is to copy in word, paste in notepad, then copy in notepad and paste into SQL developer.
    I have replicated your issue but I have found that even this dosn't work.
    You could write a VBA macro in word linked to the ctrl + c short cut that does a text copy and a find and replace on the special chars turning them into normal ones but I think this might be overkill.

Maybe you are looking for