Microsoft word

Hi everyone,
I've been asking to create a document word using ABAP programming.
I am using the interface I_OI_DOCUMENT_PROXY.
The question is how can I insert a "new page" in the document word ?
Thanks a lot.
Regards.

Hi
Herewith i am sending one report,i hope this will help you to solve your probelm.
  1 ----
  2 *   INCLUDE ZIOIEXCEL                                                  *
  3 ----
  4 * Instantiates the control framework using i_oi_document factory.
  5 * Excapsulates SAP Office Integration specific functionality.  Uses the
  6 * i_oi_document_proxy class to create the document link then
  7 * uses the i_oi_table collection for transporting SAP internal tables
  8 * from the server to the client for display in the active document
  9 * server.
10
11 INCLUDE <CTLDEF>.                "General Definitions For Controls (CET)
12 * Platform- and application-indep. Office integration
13 INCLUDE OFFICEINTEGRATIONINCLUDE.
14
15 CLASS COIEXCEL DEFINITION.  "Excel DOI wrapper class
16   PUBLIC SECTION.
17
18 * Create the control framework and returns a document proxy interface
19   METHODS: CONSTRUCTOR,
20 * Clean up routine
21            DESTROY.
22 * Catch the on_close event to process cleanup
23   METHODS: ON_CLOSE_DOCUMENT
24              FOR EVENT ON_CLOSE_DOCUMENT OF I_OI_DOCUMENT_PROXY.
25   METHODS: CREATEDOCUMENT   "Not used
26              IMPORTING S_DOCTITLE TYPE C
27              EXPORTING RETCODE TYPE T_OI_RET_STRING.
28   METHODS: OPENDOCUMENT
29              IMPORTING FILEURL TYPE C
30              EXPORTING RETCODE TYPE T_OI_RET_STRING.
31   METHODS: TRANSFERTABLE
32               IMPORTING S_TABLENAME TYPE C
33               EXPORTING RETCODE TYPE T_OI_RET_STRING
34               CHANGING I_TAB TYPE TABLE.
35   METHODS: LAUNCHSE16 IMPORTING C_TBLNAME TYPE C
36                                 C_FILEPATH TYPE C
37                       CHANGING  TBL_TAB TYPE TABLE.
38   PRIVATE SECTION.
39   DATA:
40     H_FACTORY TYPE REF TO I_OI_DOCUMENT_FACTORY,
41     H_TABLES TYPE REF TO I_OI_TABLE_COLLECTION,
42     H_DOCUMENT TYPE REF TO I_OI_DOCUMENT_PROXY,
43     S_RETCODE TYPE T_OI_RET_STRING,
44     S_FILEURL(256) TYPE C,
45     S_DOCURL(256) TYPE C.
46
47 ENDCLASS.
48
49 CLASS COIEXCEL IMPLEMENTATION.
50   METHOD CONSTRUCTOR.
51 *----
52 *  For external execution we simply use the factory class.  (vs 4.5)
53 *
54 *----
55 DATA: DOCUMENT_EXCEL TYPE SOI_DOCUMENT_TYPE
56                  VALUE SOI_DOCTYPE_EXCEL97_SHEET.
57
58     CALL FUNCTION 'CONTROL_INIT'   "Initialize the control framework
59          EXCEPTIONS
60               CONTROL_INIT_ERROR = 1
61               OTHERS             = 2.
62 * Starting point - get a reference to the control framework
63     call method c_oi_factory_creator=>get_document_factory
64          exporting factory_type = 'OLE'
65          IMPORTING FACTORY = H_FACTORY
66                    RETCODE = S_RETCODE.
67     call method c_oi_errors=>show_message exporting type = 'E'.
68 * DOI Container object creation
69     CALL METHOD H_FACTORY->START_FACTORY
70          EXPORTING R3_APPLICATION_NAME = 'SAP-Excel DOI'
71                    REGISTER_ON_CLOSE_EVENT = 'X'
72          IMPORTING RETCODE = S_RETCODE.
73 * Get a reference to the document proxy
74     CALL METHOD H_FACTORY->GET_DOCUMENT_PROXY
75       EXPORTING DOCUMENT_TYPE = DOCUMENT_EXCEL
76       IMPORTING DOCUMENT_PROXY = H_DOCUMENT
77             RETCODE = S_RETCODE.
78     CALL METHOD C_OI_ERRORS=>SHOW_MESSAGE
79                             EXPORTING TYPE = 'E'.
80 * Register the on_close event
81    SET HANDLER ME->ON_CLOSE_DOCUMENT FOR H_DOCUMENT.
82
83   ENDMETHOD.                           " Constructor.. COIExcel
84
85 * Cleanup
86   METHOD DESTROY.
87
88     IF NOT H_TABLES IS INITIAL.
89       CALL METHOD H_TABLES->REMOVE_ALL_TABLES
90                     IMPORTING RETCODE = S_RETCODE.
91       FREE H_TABLES.
92     ENDIF.
93
94     IF NOT H_FACTORY IS INITIAL.
95       CALL METHOD H_FACTORY->STOP_FACTORY.
96       FREE H_FACTORY.
97     ENDIF.
98
99     FREE H_DOCUMENT.
100     CALL FUNCTION 'CONTROL_EXIT'.
101
102   ENDMETHOD.                           " Destructor.... COIExcel
103
104   METHOD ON_CLOSE_DOCUMENT.
105 *        for event on_close_document of i_oi_document_proxy.
106     IF NOT H_DOCUMENT IS INITIAL.
107       CALL METHOD H_DOCUMENT->CLOSE_DOCUMENT
108         IMPORTING RETCODE = S_RETCODE.
109       CALL METHOD C_OI_ERRORS=>SHOW_MESSAGE
110                                     EXPORTING TYPE = 'E'.
111     ENDIF.
112
113 * Cleanup the DOI allocations and the control framework.
114     CALL METHOD ME->DESTROY.
115 *   message id 'mo' type 'S' number '001' with 'Enter selection table.'.
116   ENDMETHOD.
117
118   METHOD CREATEDOCUMENT.
119 *        importing s_doctitle type c
120 *        exporting s_retcode type t_oi_ret_string.
121
122     IF NOT H_DOCUMENT IS INITIAL.
123       CALL METHOD H_DOCUMENT->CREATE_DOCUMENT
124         EXPORTING OPEN_INPLACE = ' '
125                 DOCUMENT_TITLE = S_DOCTITLE
126         IMPORTING RETCODE = S_RETCODE.
127       CALL METHOD C_OI_ERRORS=>SHOW_MESSAGE EXPORTING TYPE = 'E'.
128     ENDIF.
129
130   ENDMETHOD.
131
132 * Parameters are set to open the document specified by fileurl,
133 *  opened externally, and run the startup macro that resides
134 *  inside the Excel document.
135   METHOD OPENDOCUMENT.
136 *   importing fileurl type c
137 *   exporting s_retcode type t_oi_ret_string.
138
139     CALL METHOD H_DOCUMENT->OPEN_DOCUMENT
140            EXPORTING
141                     DOCUMENT_URL = FILEURL
142                     OPEN_INPLACE = ' '
143                     STARTUP_MACRO    = 'Module1.LoadR3Data'
144           IMPORTING RETCODE = S_RETCODE.
145
146     CALL METHOD C_OI_ERRORS=>SHOW_MESSAGE EXPORTING TYPE ='E'.
147
148   ENDMETHOD.
149
150   METHOD TRANSFERTABLE.
151 *    importing s_tblname type c
152 *    exporting retcode type t_oi_ret_string
153 *    changing i_tab type table
154
155     IF H_TABLES IS INITIAL.
156       CALL METHOD H_FACTORY->GET_TABLE_COLLECTION
157                     IMPORTING TABLE_COLLECTION = H_TABLES
158                               RETCODE = S_RETCODE.
159       CALL METHOD C_OI_ERRORS=>SHOW_MESSAGE EXPORTING TYPE = 'E'.
160     ENDIF.
161
162 *transfer data to presentation server
163     CALL METHOD H_TABLES->ADD_TABLE
164          EXPORTING TABLE_NAME   = 'ITAB'
165                    TABLE_TYPE   = H_TABLES->TABLE_TYPE_OUTPUT
166                    DDIC_NAME    = S_TABLENAME
167                    DESCRIPTION  = 'Block Data'
168          IMPORTING
169                    RETCODE      = S_RETCODE
170          CHANGING  DATA_TABLE   = I_TAB.
171     RETCODE = S_RETCODE.
172   ENDMETHOD.
173
174 * Specific method for use in the ZBTableListGeneration program.
175 * Simplifies the dynamic program creation
176   METHOD LAUNCHSE16.
177 *      importing c_tblname type c
178 *                c_filepath type c
179 *      changing  tbl_tab type table
180
181     CALL METHOD ME->TRANSFERTABLE
182                   EXPORTING S_TABLENAME = C_TBLNAME
183                   IMPORTING RETCODE = S_RETCODE
184                   CHANGING I_TAB = TBL_TAB.
185
186     CALL METHOD ME->OPENDOCUMENT
187                  EXPORTING FILEURL = C_FILEPATH.
188   ENDMETHOD.
189
190 ENDCLASS.                              "COIEXCEL Implemetation
Thanks
Mrutyunjaya Tripathy

Similar Messages

  • Firefox, Microsoft word, iPhoto, and more won't open.

    Basically, everything except Safari and Photo Booth continuously refuse to open. I click on them, the icon bounces for a good minute or so, and then I get a pop-up window saying it closed unexpectedly. I don't know if this helps, but here's the detailed information...
    Process: Microsoft Word [1102]
    Path: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word
    Identifier: com.microsoft.Word
    Version: 12.2.2 (12.2.2)
    Build Info: Unknown-90817~0
    Code Type: X86 (Native)
    Parent Process: launchd [82]
    Date/Time: 2010-11-10 13:53:15.199 -0500
    OS Version: Mac OS X 10.6.3 (10D2084)
    Report Version: 6
    Interval Since Last Report: 872543 sec
    Crashes Since Last Report: 257
    Per-App Interval Since Last Report: 1347793 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: 892F90B7-FC3D-4E20-9C1A-521E0EAB9CB2
    I tried uninstalling and reinstalling firefox four times. After the last uninstall, I didn't even reinstall it. Safari is extremely slow on my computer, and YouTube refuses to work, as well. What should I do?

    Welcome to Apple Discussions!
    The first thing to try is to repair your hard drive. Boot from your install disc, choose your language, and then navigate to Disk Utility from the menu bar. Go to the First Aid tab and select your hard drive and then "Repair Disk". Repair it until there is nothing left to repair.
    When done, you might want to update your software if you are still running 10.6.3--I believe that 10.6.5 is out now.
    Good luck!

  • My Microsoft Word gives me an error report as soon as I try to open Word Document

    I have the Microsoft Word for Mac 2011 and I've had it for almost 3 years now. I didn't have any problems until I decided to update it since I haven't done so when I installed Microsoft on my Macbook pro. After about 3 or 4 updates I started having difficulties when it suddenly gives me an error once I tried creating a new document that says: "Microsoft Word has encountered a problem and needs to close. We are sorry for the inconvenience." and underneath it says More Information so I clicked on it and this is what it gave me:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2015-02-16 05:22:55 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.2.0.120402
    Crashed Module Name: libobjc.A.dylib
    Crashed Module Version: unknown
    Crashed Module Offset: 0x000010a7
    Blame Module Name: Microsoft Word
    Blame Module Version: 14.2.0.120402
    Blame Module Offset: 0x0021002b
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    I clicked on check for updates just in case I missed any, but it says there's no updates available. Also, I restarted my computer twice and it still doesn't work. Did the updates messed it up? I really need to fix this problem soon because I'm going to need Word for school. Please and thank you!
    Edit: I'll be moving this question over the other forum, but can anyone at least solve this problem for me here?

    Microsoft Word is a Microsoft app. You should post your question to a Microsoft forum.
    Cheers,
    GB

  • Whenever I try to open Microsoft Word it doesn't open and shows me an error report!

    Whenever I try to open Microsoft Word it doesn't open and shows me an error report! I don't know what to do! Help!!!!
    This is the extra info that comes along with the error report:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2013-08-30 16:41:14 -0400
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.1.0.110310
    Crashed Module Name: MBURibbon
    Crashed Module Version: 14.3.4.130416
    Crashed Module Offset: 0x000072f0
    Blame Module Name: MBURibbon
    Blame Module Version: 14.3.4.130416
    Blame Module Offset: 0x000072f0
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    What should I do??????

    It might be a good idea to also ask here:
    Office for Mac forums

  • Is there a way to create form fields to tab into and type and or drop down selection fields in pages as you can with microsoft word?

    is there a way to create form fields to tab into and type and or drop down selection fields in pages as you can with microsoft word?

    No

  • My pages is showing error while opening a document in microsoft word format. Please help

    While trying to open documents in microsoft word format, pages is showing an error. It is unable to complete the task and is requesting me to reopen pages but then no response. However I am able to work on pages format. Please help.
    thanks

    When you open a Word document in Pages, it is translated into the internal .pages document format — and you are no longer working in the original Word document format. This translation also occurs in reverse when exporting a document back to Word. When you open a Word document in Pages, if it has issues with the translation (missing font characteristics, other issues), it will open a warning dialog box and display these issues for you.
    If however, you prefer to always work in the native Word document format, and not risk translation issues, then you should be using MS Word in Office for Mac 2011 with the latest update.

  • How do I convert a pdf in Adobe Acrobat 9 to Microsoft Word document?

    How do I convert a pdf in Acrobat 9 to a Microsoft Word document?

    Hi fireatty,
    In Acrobat 9, you can use the Export command (File > Export) to export your PDF to Word format.
    Please let us know if you need additional assistance.
    Best,
    Sara

  • Creating TOC Bookmarks in a PDF created from Microsoft Word

    Does anyone know how to modify PDF creation settings so that bookmarks are automatically set from the Table of Contents in the PDF version of a Microsoft Word document? This is possible in Windows using word and Acrobat Pro. But it's not automatic in the OSX-resident PDF creator and I can't find any way to modify preferences. I'm using Word 2004 (11.3.5) for Mac. Thanks!
    iMac 21" Intel   Mac OS X (10.4.10)  

    I am using Acrobat XI Pro on PC.
    Of course, I have done all the steps you mention,  but I wanted someone to confirm me if these setting values are correct in order to obtain the best results. I repeat the paragraph of my previous discussion that I want to clarify, just in case some of you can help me, mainly about optimization
    I digitalized the document from the scanner. This scanner is installed in the net, so I personalized the settings in Acrobat and I chose memory mode instead of native mode.
    Mode color: black on white
    Resolution: 600 ppp
    As you say in your mail, I understand I should choose ClearScan OCR not searchable just at this moment.
    Well, and what about the options of optimization?, JBIG2 (without lost)?, 4 CCITT?
    And filters?, I have: activated, low, activated, medium
    Are these values congruous or compatible?
    Thank you
    De: Phillip Jones [email protected]
    Enviado el: martes, 27 de noviembre de 2012 18:24
    Para: Suárez Suárez, Manuela
    Asunto: I cannot edit text in a PDF created from scanning
    Re: I cannot edit text in a PDF created from scanning
    created by Phillip Jones<http://forums.adobe.com/people/PhillipMJones> in Creating, Editing & Exporting PDFs - View the full discussion<http://forums.adobe.com/message/4877588#4877588

  • Adobe does not recognize footers in Microsoft Word 2007 to PDF

    I have copied and pasted the details, below, from a previous message I have sent out to an assistive technology listserv.
    I am encountering this problem with various builds and versions of Adobe Acrobat:
    Acrobat X on a Windows Vista 64-bit build (note that this is the best Acrobat I can install on Windows Vista, Adobe Reader XI is not even supported)
    Acrobat X on a Windows XP build, sorry, do not know the bit count (it is my work computer so I can't upgrade anything)
    Acrobat 9 on a Windows 7 64-bit build.
    I have also encountered and checked into whether or not the PDF reads (and does what I want it to) in JAWS 14, latest update (Feb 2013). We encounter the same problem with JAWS and this morning found out that there is a conversion error between Word and Adobe. (See this post, where the ---- are).
    Summary, I have spoken with JAWS, put out a support ticket with NVDA via e-mail, spoken with Microsoft, and tried to communicate with Adobe about this issue for help and Adobe is refusing to help. The other places tried everything they knew but they could not get it to work. I even tried to strip all the page numbers from Word and number using Adobe's page numbering feature, but that was not successful either because I cannot use Roman numerals.
    I would appreciate any feedback the Adobe Forums can give me; please note that I cannot post a sample document at this time as the only document I have is a private work document (cannot share those by policy, so I will have to make up a fake document if I get the time and energy).
    Thank you very much for your time and expertise. The pertient info is above and below in "Original Message" and "Activities section" - the other information is there if you'd like to look. And to provide feedback to Adobe about things I think they could improve, since they will not let me email them directly.
    ----Original Message----
    My question concerns the reading of Footers / Headers in Microsoft Word 2007 and Adobe Acrobat (headers/footers designed in Microsoft Word 2007 and then converted to PDF with "Bookmark" checked in Adobe Acrobat conversion settings).
    The document is a word document containing 50+ pages. There are 12 pages of "front matter" that are marked with Roman numerals. Subsequently, the body text of the document has an Arabic number (1, 2, 3, 4, etc.) in the bottom right corner. Footers are used properly in the document. All Table of Contents links, which do link to both headings in the "front matter" and to headings in the body text, are picked up properly. Literately, the only thing not reading on the document are page numbers (the Word Status bar is reading its page numbers, but the page numbers in the footer are not reading).
    I then need to convert the document to Adobe Acrobat PDF. Granted, I have a full copy of Adobe Acrobat X available to me, and my various assistive technologies have always functioned better when opened directly in Acrobat (rather than Adobe Reader). So, I set the accessibility options (from Word) properly, asking it to bookmark Headers and Footers as appropriate, thinking that this will pick up the page numbers and make them read as the bottom right corner of my PDF.
    All links work in Adobe to navigate by section/heading. All figures are alt tagged. Everything is perfect - but the one thing that NVDA won't read are the page numbers. Visually, the page numbers are there on the document, but NVDA won't pick them up. Additionally, I also changed the appropriate page numbers in Adobe (Page Thumbnail Pane, on the Navigation Pane I believe it is called) - to reflect the section where it is Roman numerals and Arabic numerals. This did not help, and for what it is worth, I cannot get NVDA to voice when I am in this pane, so I don't seem to have a chance of getting the page number info from there.
    NVDA reads the document just fine except for the above-mentioned snare. However, when it reads, it will go to the next page, and say, "Page 2 of 54, (page text), Page 3 of 54 (page text)," etc. when I will need it to say Page ii of 54 (page text), Page iii of 54 (page text)," and so on, changing to "Page 1" when the Arabic numbers are used.
    I know that the Page Label issue is part of Adobe's issue, with them not releasing the PageLabel aspect. (I have looked through some NVDA tickets). I do not know how to put a "changeset" into my copy of NVDA though, or even if it would help (I have no computer scripting skill). The easy answer would be to upgrade to Adobe Reader XI and see if that helps, but I don't have the ability to put it on every computer I use, and *I need this file to read consistently across multiple versions of Adobe* (including Adobe Reader/Acrobat 9, X, and XI). (This file is also going out to people who may not have the latest version of Adobe, but are also running some copy of NVDA, either a portable or a full install).
    Is there any way to pick up the Footers with page numbers voicing in NVDA, and/or have it read the user-editable page number box that is on Adobe's Toolbar (next to the 1 of 54 parentheses). This user-editable box, to jump to page numbers, reflects the Roman numerals I have loaded into the pages of Adobe. When I press Ctrl+Shift+N in Adobe, I can also go to the appropriate page (if I type in iii, it will take me to iii, if I type in 34, it will take me to the Arabic number 34 -- NOT the 34 of 54, which would land me on a different page. And I want to land on the page that has the Arabic 34, so that's functioning fine.
    I just need the page numbers in the footer to voice, "Page iii," or "Page iv," or "Page 29," etc. If I could get NVDA to do that, I could say to viewers of this document, "If you are using NVDA, remember to Ctrl+Shift+N to get the GoTo Box, then type in the page number you want if you cannot follow a link or a bookmark." This document is *very* accessible in my opinion with lots of ways to navigate...the only aspect of navigation that isn't being picked up are those footer page numbers!
    I do have my Document Formatting settings on the NVDA menu set to "Report Headers," but that does not seem to help in either Microsoft Word 2007 or Adobe Acrobat. I have even switched the page numbers from the footer to the header to see if that would help and it didn't.
    ----Activities I have done today----
    I spent over an hour on the phone today with Freedom Scientific (makers of JAWS) trying to troubleshoot this. We discovered that Footers will not read very well in JAWS and Microsoft Word 2007 (only solution is to stop reading document text and read Virtual Viewer text briefly, then go back out to document text, then back into Virtual Viewer which is NOT an acceptable or accessible solution whatsoever -- too much work for someone trying to read the document) -- and then we also discovered that:
    Upon conversion from Word 2007 to .txt file (.docx to .txt), there are no alt tags for the figures in the document, or page numbers.
    Upon conversion from Word 2007 to Adobe Acrobat X then to .txt file, every insert of a page number and footer is replaced with the same alt numberpad numerical code: the one that generates female. ♀No wonder JAWS and NVDA are skipping this, neither understand how to communicate it.
    On the advice of JAWS Technical Support I contacted Microsoft Accessibility Technical Support and spent an hour on the phone with them. They say that unless Adobe can find a solution, it appears that it is impossible for Microsoft products to read the footer if JAWS was unsuccessful doing what I wanted it to do. The document/footer in question includes about 12 pages of front matter (numbered in Roman numerals) and 44 pages of body text (numbered in Arabic numerals).
    I kindly explained to the Microsoft Support Agent that I found this issue hard to believe, although I understood. Sighted folks have the ability to make their documents look quite professional and that is the caliber and quality of documents anticipated from everyone, especially college students graduating from school, or job applicants. That a coding issue prevents the footer from being read properly, except in Edit view, is disappointing. The representative was with me 100% of the way. She completely understood where I came from. And yes, when I am designing the document myself, I know what I put there (or I pretty much do, anyway). But if I recieve a document, it is much harder to tell what is really there or not, or how the page numbers really lay. And this is confusing as heck, believe me.
    I then called Adobe Technical Support, after having a brief online chat with them. Granted, I had to leave the chat in the middle because I got interuptted by something that was high-priority, but the woman chatting from Adobe says that chat is only for installation issues, and I will have to pay to open a support ticket. Excuse me? I have paid a hefty sum of money for Adobe Acrobat 9 and Adobe Acrobat X (work paid for the other Acrobat X copy). I deserve this problem to be troubleshooted for free. There was even a statement on the Adobe Acrobat X website that said Acrobat X users didn't have to pay for support, but Reader users did.
    ----Slight bit of rant and constructive criticism----
    In speaking with Adobe Technical Support, I had to wait on hold for 30 minutes before my call was answered, and then I had to consent to being on hold countless times and had to answer, "Yes, I am converting from Word 2007 to PDF using Adobe Acrobat X" at least 6 times. The representative would put me on hold, then ask me the question, then put me on hold again, repeated 6 times over 45 minutes. At the end of 45 minutes (1 hour and 20 minutes of wasted time by now, that I must justify to my employer) - I told the representative I wanted to speak with his supervisor immediately, I did not care if he was trying to fill out a support ticket (and putting me on hold at least 4 more times in 10 minutes while he claimed he was filling out the support ticket) - and finally he put me on hold again and gave me to a very helpful supervisor. Within 6 minutes of speaking with the supervisor the supervisor had my support ticket filled out and I should recieve a call from Adobe within the next 30 minutes if his estimation was right (he estimated two hours, but it's been an hour and a half).
    I have yet to know what can be done about my document. Freedom Scientific Technical Support is closed now for the day and I need to work tomorrow and Friday away from the phone. As I stated to Microsoft Accessibility Support, I truly feel that Adobe should read the page footers, every document says that Adobe should be able to read the page footers, and I feel slighted that as a person who uses assistive technology, there is some glitch that isn't making this happen. I am not blaming a specific place per se, except I am a little frustrated with Adobe especially since they have not gotten back to me, and I am frustrated with their customer service. JAWS customer service and Microsoft customer service were both exemparly, and I cannot say enough good things about them. My wasted time with Adobe however, that was disrespect in my opinion. And I certainly will not pay to open a support ticket, and my workplace has a site license. They've paid enough already.
    If you've read this far, thank you. I look forward to replies, or at least understanding. And if anyone has ideas, I'd appreciate it very much (yes, I have tried taking the page numbers off and using Adobe's page number feature, but that would not allow Roman numerals. Only Arabic.).

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • File locking with OSX Server & Microsoft Word

    We have a small office LAN based on a Airport Extreme bases station. Periodically Microsoft Word reports a break in connection to the shared folder where we store documents to get disconnected. When that happens and the user reconnects to the share, the user gets the file read-only message for the Word document that was open at the time.
    I have found that in order to clear the read-only flag, I have to restart the server and open the Word file on the server with the ID of the user who was editing the file on the remote computer. Only that seems to clear the file locking that causes the file to be read-only.
    I cannot figure out a less drastic way to release the lock file. I don't see any hidden temp files in the same folder as the document that is locked for editing found by ls -a or in the root direction of the shared folder in the .TemporaryItems/folders.<UID> that seems to be holding the lock.
    I have run chflags nouchg <Word file> from Terminal, but that seems to have no effect either. I also used xattr to see if there were any locks held that way, but I don't see anything that way either.
    File sharing to Macs only, which are configured just to use AFP through OSX Server.
    Does anyone understand how the file locks of Word documents can be released directly with out restarting the server?
    I should add that the underlying problems seems to be WiFi related. The behavior is that the WiFi connection seems to break long enough that the shared volumes disconnects. Outlook also causes a break. This behavior seems to have started with 10.9 and the purchase of new Retina Display MacBook Pros. I turned off AppNap on the Office applications but that is not clearly helpful. I also have been told the problem seems more likely to occur when Word is open in the background and another program like Outlook is in the foreground.
    Any suggestions appreciated.

    Apple write an operating system and also produce file sharing software as part of that to be used as a file server. Apple provide documentation for third-party software developers on how they should write software to work with Apple's software and also give those developers early access to new versions so those third-party developers can test and if needed make adjustments and issue updates to cope with any Apple changes.
    Some third-party developers are good at dealing with this, some are bad, and some totally ignore what Apple does and give the impression they don't care if their product works properly or not. I think we can all judge where Microsoft sits.
    It appears Microsoft have never paid any attention in particular to how Apple expect file-locking to be handled when accessing files on a Mac server. There have been problems for years and years and years with Office. Two other problems I have seen which seem different to yours but probably related are -
    With Office documents it is supposed to be possible for more than one person to edit the same file at the same time, consider it a miracle if this actually works
    With Office in particular Word, there is an auto-save function, unfortunately the way this seems to be implemented it seems that Word creates a new temporary file each time it auto-saves the document and keeps all the previous temporary files open still, this eventually means potentially over a hundred temporary files are open - just for one Word document and you can then hit a limit on the total number of files you are allowed to have open at the same time. At this point further auto-saves fail, and you also encounter great difficulty doing a real full save of the document.
    I do not hold Apple completely blameless over this issue, it is likely their file-locking implementations change too often, and have inadequate documentation, however even considering this a company the size of Microsoft with the amount of sales (and profit) they derive from Office for the Mac has no excuses at all for failing to put the effort in to resolve any such clearly critical problems.
    We could go on and on about other areas where Microsoft don't play by the (software) rules. Even in Windows Office does not obey the standard print dialog rules Microsoft specified themselves!
    Unfortunately not only is Office for Mac upgraded infrequently, but even when new paid for upgrades are released Microsoft have a history of still not fixing bugs. It goes without saying that a mere free update is even less likely to actually fix a bug, typically such free updates only address security issues. The next version of Office is going to be Office for Mac 2014 see http://www.macworld.com/article/2106643/microsoft-will-release-a-new-version-of- office-for-mac-this-year.html
    One area I confidently predict Microsoft not to resolve in Office for Mac 2014 is that fact that Word for Mac still does not support right-to-left languages like Hebrew and Arabic. This is despite the fact that OS X itself has supported this for years and years, and despite the fact other Mac programs support this including the free TextEdit and Pages - both of which can read Word files. Some people may remember that at one point the Israeli Government temporarily banned all Microsoft software over this issue. See http://apple-beta.slashdot.org/story/03/10/15/2215249/israeli-government-suspend s-microsoft-contracts This issue goes back over TEN years!!
    I note that Microsoft has now taken their OfficeForMac blog offline, probably due to the weight of criticisms. I would not say it is due to out-right anti-Microsoft hate, that war ended long ago. We just want products that work. I myself do use Microsoft products, even at home - where they are the best solution, so I use Microsoft Media Center for example. Sadly this is now being neglected by Microsoft.

  • Pages '08 to Microsoft Word '04

    I have pages '08 and i was wondering if i could print out a document from pages from the application microsoft word '03
    Is there a setting i have to change on page to do this?

    2 methods:
    Menu > File > Save As… > Save copy as… (bottom of window) : Word Document
    or
    Menu > File > Export… > Word
    It may help to download and read the Pages09_UserGuide.pdf and view the Video Tutorials both from under the Help menu.
    This is also a good resource.
    Peter

  • Copying from Oracle SQL Developer to Microsoft Word doesn't retain formatting (Font,colors etc)

    Copying from Oracle SQL Developer Worksheet doesn't retain formatting (font,color etc...)in Microsoft Word but copying from other programs such as
    visual studio, chrome browser etc works fine. This doesn't work even after changed the setting to Keep Source formatting of Options-> Copy and Paste Settings

    Hi,
    I notice that you have cross posted in Answers forum and Oracle forum. Have you tried Mr. Peter's suggestion?
    Then, I recommend we check the Word settings:
    1. Go to: Options > Advanced > Cut, Copy and Paste
    2.  Make sure that Use smart cut and paste is ticked. 
    3. Click the Settings button next to this option
    4. Make sure that Smart Style
    Behavior is checked.
    If the issue still exists, please upload a sample through One Drive, I want to test.
    Regards,
    George Zhao
    TechNet Community Support

  • HP Laserjet PRO MFP125nw doesn't print Microsoft Word documents from PC

    Hello.
    I've recently bought a brand new HP Laserjet PRO MFP125nw printer. The functions seemed really nice and the price was acceptable. I've brought it to my home, installed it following the manual, connected it to Wi-Fi etc. It generally works fairly well. PDF files are printed perfectly well, the scaning function works and it's generally a nice piece of technology.
    The only problem is that it just doesn't want to pring Microsoft Word documents from my PC. It prints it perfectly when I try to print .docx from my smartphone using the app, but it doesn't respond when I try doing it from the PC.
    My Office version is 2007 Enterprise. Do you have any idea what I should do?
    Thank you in advance

    Thank you a lot for a quick reply, Cbert. It's fantastic to see HP actually reading their forums and trying to help!
    I'll try plugging it into the wall and directly to the PC with a USB, we'll see if it works out.
    About Word, i've already tried reinstalling Word, even installed a 2003 version to check if it works with that. Well it doesn't. And as i've written before, I tried turning some .docx files to .pdf using a converter, but it still doesn't print them.
    Anyway, i'll try the first two points and keep you updated, thanks!

  • Adding Company Knowledge with OpsMgr 2012 Console - "Failed to launch Microsoft Word"

    Hi everyone!
    I'm trying to add company knowledge using the OpsMgr 2012 console (32-bit) on Windows 7 Ultimate (32-bit) using the guidelines provided at the following link...
    http://technet.microsoft.com/en-us/library/hh212900.aspx
    I'm using Office 2010 Pro Plus SP1 (32-bit) with the .NET Programmability feature and the Microsoft Visual Studio 2005 Tools for Office Second Edition Runtime installed, but I get the dreaded "failed to launch Microsoft Word" error...
    ...any help or guidance would be greatly apprecaited!
    Regards,
    JJ

    Thanks Andres!
    I have confirmed that the following instructions does allow you to use Word 2010 32-bit running on Windows 7 64-bit or Windows Server 2008 R2 to edit company
    knowledge...
    1. Go to the directory where the OpsMgr console is installed (example: C:\Program Files\System Center\Operations Manager 2012\Console )
    2. Make a copy of Microsoft.EnterpriseManagement.Monitoring.Console.exe.config
    3. Edit Microsoft.EnterpriseManagement.Monitoring.Console.exe.config using Administrator rights
    4. Search for “</dependentAssembly>” and remove the “<publisherPolicy apply="no" />” line immediately following the “</dependentAssembly>” line
    Hope this helps!
    Regards,
    JJ
    Well, firstly I have to agree with other people's comments along the lines of "It shouldn't be this hard!", but I can happily say that the solution above (by IM5FOOTNOTHIN)
    worked for me...once I noticed this crucial footnote: "Do this for
    ALL instances of the
    <publisherPolicy apply="no" /> line that immediately follow the </dependentAssembly> line"

  • I updated to Firefox 4, and now it won't open Word documents. It doesn't even give me an option to open or save. When I looked under Tools, Applications - Microsoft Word was not in the Content list. What can I do to restore automatic opening of Word?

    Word opens fine in other browsers.
    The web link, ending in doc, appears at the bottom of the page - but Firefox just stays on the original page.

    Ok, when you go to the Content menu, you see a list of files which are set to open with a particular program by default.
    To change the application, click the one which is assigned to it already and then from the dropdown menu which appears, click the bottom option called "Use Other".
    This will open a menu where you'll see another set of apps you can use to open the file with. If Microsoft Word is not in the list, click the "Browse" button and then navigate to the folder containing Word.exe. I don't have it on my system, but I believe you'll find it in C:\Program Files\Microsoft\Word

  • When I'm on microsoft word and typing and get to the  bottom of the page a new page doesn't just come up, i have to manually put it there so then when i go back and add stuff to the first page i loose whatever was at the bottom. how do i stop this?

    When I'm on microsoft word on my macbook air and get to the bottom a the page, a new page does not come up. i have to manually insert one. so then when i go back to edit my work and add something in what ever was at the bottom of the page disappears. how can i stop this from happening or change it so a new page opens by itself?

    It sounds like you have chosen a publishing template rather than a word processing template. There are two basic modes in MS Word: word processing and publishing layout. Word processing mode (and all word processing templates) have a continuous text box in the page for writing text. The publishing layout mode (and publishing templates) are documents that have text boxes placed for articles, titles, pictures, etc. Be sure to choose the word document template and you’ll get what you expect. Do not choose the word publishing document.

Maybe you are looking for

  • Two AirPorts in the Same Network...

    I am using an AirPort Extreme 802.11n and I want to add my OLD Airport Extreme 802.11b/g in another part of the house but I just cannot seem to get them to play together. I also have an AirPort Express currently working quite nicely within the AirPor

  • How to best manage a large photo library

    When our family became Mac users in 2008, it was suggested by apple support to create separate iPhoto libaries for each year due to the size of our photo library. So we did this and also purchased the iPhoto Library Manager application to keep everyt

  • What can I do if I do not have a serial number, because LR 5 was an additional to my Leica purchase?

    What can I do if I do not have a serial number, because LR 5 was an additional to my Leica purchase?

  • How can you increase/change the font size using window.print

    We don't use BI/XML Publisher. I have a button with an URL Redirect to print. javascript:window.print(); How can I give the user the option to print with a different font or larger size or optionally to set it the same for everyone? thanks John

  • Write PBL code in one place

    There are about 10 activities in a process. Most of them have some PBL code snippet such as calculating deadline (including calendar rules) and throwing exceptions. I also need to create about 50 processes and about more than 500 activities. It is te