Placing and then splitting a Word doc

I have a long (for me) and pretty messy Word Doc that I need to bring into InDesign and turn into a 32 page report. It is a continuous doc with 7 sections.
When I bring into InDesign (place and shift+click) it creates a continouos multipage InDesign file that flows from beginning to end in a chain of text boxes.
Not sure how this is going to end up or where the page breaks are going to be, especially when I start reformatting and resizing the text and inserting images.
What I would like to do after import is to split the 7 sections at section end (so that section 1 is a chain of text frames, section 2 is a chain of text frames etc etc.). That way if I make changes in the first section it isn’t going to have a knock on all the way through the doc to the end.
If I use the Breakframe Applescript that is bundled in the script palette it seems to break the links between every text box. I suppose i could then laboriously go through an relink the boxes in Section 1, Section 2 ext but this seems quite painful.
Is there a way to achieve this? If not what would be good practice to bring the Word Doc in in defined chunks?

You can apply a paragraph style with keep option: On Next Page to each section title, and that will keep every section start on a it's own page even if you make any change.
Another option you can create book document:
InDesign / Creating book files
http://help.adobe.com/en_US/indesign/cs/using/WSa285fff53dea4f8617383751001ea8cb3f-6ccaa.h tml

Similar Messages

  • How To UPLOAD a DATA (.DAT) fiel from PC to internal table and then split it into the data different columns

    Hi all,
    I am new to ABAP Development. I need to upload a .DAT file (the file doesn#t have any proper structure-- Please find the .DAT file in the attachment). After uploading the DATA (.DAT) fiel I need to split in into different columns. Refering the attached .DAT fiel the fields in bracets like:
    [Arbeitstag],  [Pecunia], [Mita], [Kunde], [Auftrag] and  [Position] are different fields that need to be arranged in columns in an internal table. this .DAT fiel which I want to upload and then SPLIT it into various fields will will treated as MASTER DATA table for further programming. The program that I had written is as below. Also please refer the attached .DAT table.
    Please if any one could help me. i searched a lot in different forums but couldn't find me  a solution. Also note that the attached fiel is in text (.txt) format here but in real situation the same fiel is in DATA (.DAT) format.
    *& Report  ZDEMO_ZEITERFASSUNG9
    REPORT  ZDEMO_ZEITERFASSUNG9.
    Types: Begin of ttab,
            Rec(1000) type c,
           End of ttab.
    DATA: itab  type table of ttab.
    DATA: wa_tab type ttab.
    DATA: file_str type string.
    Parameters: p_file type localfile.
    At selection-screen on value-request for p_file.
                                           CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
                                            EXPORTING
    *                                          PROGRAM_NAME        = SYST-REPID
    *                                          DYNPRO_NUMBER       = SYST-DYNNR
    *                                          FIELD_NAME          = ' '
                                               STATIC              = 'X'
    *                                          MASK                = ' '
                                             CHANGING
                                               file_name           = p_file.
    *                                        EXCEPTIONS
    *                                          MASK_TOO_LONG       = 1
    *                                          OTHERS              = 2
    Start-of-Selection.
      file_str = P_file.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = '\\10.10.1.92\Volume_1\_projekte\Zeiterfassung-SAP\BUP_ZEIT.DAT'   " This the file  source address
          FILETYPE                      = 'DAT'
          HAS_FIELD_SEPARATOR           = ';'
    *     HEADER_LENGTH                 = 0
    *     READ_BY_LINE                  = 'X'
    *     DAT_MODE                      = ' '
    *     CODEPAGE                      = ' '
    *     IGNORE_CERR                   = ABAP_TRUE
    *     REPLACEMENT                   = '#'
    *     CHECK_BOM                     = ' '
    *     VIRUS_SCAN_PROFILE            =
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
    *     HEADER                        =
        tables
          data_tab                      = itab
       EXCEPTIONS
         FILE_OPEN_ERROR               = 1
         FILE_READ_ERROR               = 2
         NO_BATCH                      = 3
         GUI_REFUSE_FILETRANSFER       = 4
         INVALID_TYPE                  = 5
         NO_AUTHORITY                  = 6
         UNKNOWN_ERROR                 = 7
         BAD_DATA_FORMAT               = 8
         HEADER_NOT_ALLOWED            = 9
         SEPARATOR_NOT_ALLOWED         = 10
         HEADER_TOO_LONG               = 11
         UNKNOWN_DP_ERROR              = 12
         ACCESS_DENIED                 = 13
         DP_OUT_OF_MEMORY              = 14
         DISK_FULL                     = 15
         DP_TIMEOUT                    = 16
         OTHERS                        = 17
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP at itab into wa_tab.
            WRITE: / wa_tab.
      ENDLOOP.
    I will be grateful to all you experts for ur inputs
    regards
    Chandan Singh

    For every Auftrag, there are multiple Position entries.
    Rest of the blocks don't seems to have any relation.
    So you can check this code to see how internal table lt_str is built whose first 3 fields have data contained in Auftrag, and next 3 fields have Position data. The structure is flat, assuming that every Position record is related to preceding Auftrag.
    Try out this snippet.
    DATA lt_data TYPE TABLE OF string.
    DATA lv_data TYPE string.
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = 'C:\temp\test.txt'
      CHANGING
        data_tab = lt_data
      EXCEPTIONS
        OTHERS   = 19.
    CHECK sy-subrc EQ 0.
    TYPES:
    BEGIN OF ty_str,
      a1 TYPE string,
      a2 TYPE string,
      a3 TYPE string,
      p1 TYPE string,
      p2 TYPE string,
      p3 TYPE string,
    END OF ty_str.
    DATA: lt_str TYPE TABLE OF ty_str,
          ls_str TYPE ty_str,
          lv_block TYPE string,
          lv_flag TYPE boolean.
    LOOP AT lt_data INTO lv_data.
      CASE lv_data.
        WHEN '[Version]' OR '[StdSatz]' OR '[Arbeitstag]' OR '[Pecunia]'
             OR '[Mita]' OR '[Kunde]' OR '[Auftrag]' OR '[Position]'.
          lv_block = lv_data.
          lv_flag = abap_false.
        WHEN OTHERS.
          lv_flag = abap_true.
      ENDCASE.
      CHECK lv_flag EQ abap_true.
      CASE lv_block.
        WHEN '[Auftrag]'.
          SPLIT lv_data AT ';' INTO ls_str-a1 ls_str-a2 ls_str-a3.
        WHEN '[Position]'.
          SPLIT lv_data AT ';' INTO ls_str-p1 ls_str-p2 ls_str-p3.
          APPEND ls_str TO lt_str.
      ENDCASE.
    ENDLOOP.

  • How can I transfer text and format from a Word Doc to a new Pages Doc?

    How can I transfer text and format from a Word Doc to a new Pages Doc?

    Select, and Copy in the Word doc and Paste in the Pages doc. It may not be perfect. Importing (Opening) the Word doc is probably better than using Copy/Paste for large amounts of content.
    Jerry

  • When i import a word.doc and open on my iPad in  Pages, and then later export and reopen as a word.doc on my PC, hyphenation is lost

    when i import a word.doc to my iPad in Pages and then, later, export back to my PC as a word.doc, why does hyphenation disappear?

    Perhaps it would work better if you use one of the apps specifically designed to interface with MS Word, instead of Pages which has to convert everything in and out.

  • Is there a way of printing or copy and pasting to a word doc markers

    I have a long interview which I have created over 50 markers for various points in the audio. I want to put these into a word doc with timings for easier logging.
    Any ideas?

    I'm afraid not - development stopped on it about 10 years ago. All you need to do though is copy the wav file, complete with cue list, and find a pc to open it on. Then you can export the cue list as a text file that you should be able to save and open up on a mac, almost certainly. And since there are at least ten times as many PCs as there are Macs, I wouldn't have thought that it would be too difficult to find one...

  • Stylesheets and applying to imported Word docs. (RHx5)

    I've been reading a comments about style sheets, importing Word docs and formatting issues (in regards to importing Word docs and pre-determined styles/bullets/numbering).  I also saw that someone was trying to create a css outside of RH and was having issues.  This leads me to a couple of questions.
    1.  When importing Word docs, does RH create a separate css for each doc, or is there an option to not have this occur when performing the import process?
    2.  If I am understanding css', you should only have one per project, if you want all of html pages to appear identical, correct?
    3.  What do you do if you've made the mistake of having several different css' out there, making everything appear funky?  Can you create a new project and import the documents without the css and apply a new css (created in the new project) to all of the html files?  Will this assist in correcting a lot of the spacing, bullet and numbering problems?
    4.  Can I view the default css and edit it?
    I think I have a big problem on my hands.  I was trying to make things easier for SMEs who were designated to write procedures in Word by creating the pre-defined formats.  After reading PG's pages, I sunk into my chair.  I was having the problems he mentioned.  I tried to edit some of the pages in the html editor and appear to have made them worse.  I was trying to simplify the code a little (with what knowledge I currently have with html, which is minimal).  I am fortunate that I only have about 200 documents that could be impacted.  Any comments/suggestions are greatly appreciated.
    Rob

    1] When importing Word docs, does RH create a separate css for each doc, or is there an option to not have this occur when performing the import process?
    That's the way it is, no option.
    2.  If I am understanding css', you should only have one per project, if you want all of html pages to appear identical, correct?
    With the "if you want them identical" proviso, you would only have one CSS but you don't have to have them all identical. That is your call.
    3.  What do you do if you've made the mistake of having several different css' out there, making everything appear funky?  Can you create a new project and import the documents without the css and apply a new css (created in the new project) to all of the html files?  Will this assist in correcting a lot of the spacing, bullet and numbering problems?
    It's not a mistake but if you want to get out of that situation, you need to do some cleaning up. The first step will be to create a CSS that contains all your existing style names, note I say names. Each of your CSS files will have a variety of styles but let's make it easy for this explanation. One has H1, H2, P and P.Note (a class) while another has One has H1, H2, P and P.Warning (a class). Now let's say you have just two topics, one has CSS_1 and one has CSS_2. The H1, H2 and P styles may be the same or different but assuming they are different, you now want them to be the same so what you want is a CSS with H1, H2, P, P.Note and P.Warning. You could then apply that to both topics and all the content would be displayed as defined in CSS_3. Obviously the real task is bigger but the principals are the same.
    The way I would tackle it is to create a new CSS and copy in the styles from the biggest of your existing CSS files. Then I would look at the others and copy in any styles that are not already in. That gives you all the style names, albeit with the wrong appearance. Then you start working through the styles to get them right. It is not as bad as it sounds. I recommend using Top Style from http://www.bradsoft.com. There's a free version that only opens one CSS at a time but you can see what you are doing with it. The others can be open in Notepad.
    4.  Can I view the default css and edit it?
    Yes.
    I think I have a big problem on my hands.  I was trying to make things easier for SMEs who were designated to write procedures in Word by creating the pre-defined formats.  After reading PG's pages, I sunk into my chair.  I was having the problems he mentioned.  I tried to edit some of the pages in the html editor and appear to have made them worse.  I was trying to simplify the code a little (with what knowledge I currently have with html, which is minimal).  I am fortunate that I only have about 200 documents that could be impacted.  Any comments/suggestions are greatly appreciated.
    Next time you need input from the SMEs, output to one Word template from RH so that they all have the same appearance. Their job is provide content so the styles are irrelevant to them.
    Yes you've got some work but it isn't too massive. Hope this helps.
    See www.grainge.org for RoboHelp and Authoring tips

  • Need to copy text in e mail and paste to seperate word doc file

    Previous to Firefox 4 I could highlight text in body of e mail, select Edit and drop down to copy then minimize screen and select Word Doc file, then paste and print text.
    Please advise, Coyote Deb

    You have the orange Firefox button?
    You can call up the classic menu bar ''temporarily'' by tapping the Alt key or pressing F10. To display the classic menu bar all the time, choose
    View > Toolbars > Menu Bar
    That will replace the orange Firefox button.
    Also, you should be able to copy by right-clicking on the selected text and choosing Copy from the pop-up menu. Could be quicker in some cases.

  • How do I make hearts and symbols disappear from Word Doc converted from pdf?

    This is the first time I've tried to convert a document.  I am in a new job and I'm stuck.  How do I convert pdf to word and not get symbols all over the Word doc?

    Appears to be a font related issue.
    Regardless, all you can do with the circumstances you describe is to use MS Word to perform cleanup of the export content.
    Alternatively print the PDF to paper and use that as a source for transcription into a fresh word processor file.
    Be well...

  • How can I scan to PDF and then save as Word?

    Don't know if the above got through or not.
    When I scan in documents do I scan as jpg or tif when I want to convert to PDF then to MS Word?

    Hi George,
    I think I've answered this another post of yours. The best bet is to go straight from the scanner to a format that Word can read (most scanning software should offer that capability), and cut out the middleman (as much as I love Acrobat, it's not necessary in this case).
    Best,
    Sara

  • How to copy and paste photos to word doc?

    how to copy and paste photos from finder to word doc? It just shows the url...

    Hi John,
    You can do as the followings:
    Create a blank form with InfoPath Designer 2010,
    Add a Rich Text Box control and Submit button in the blank form
    Publish the form to your SharePoint site
    Open the form library and create a document
    Copy the table with text from word file
    Paste the table in the Rich Text Box area, the paste option is Keep Source Formatting
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Reading ams word doc and creating another ms word doc with this same data

    I have a ms word doc and i hav to create different word docs from it with different name.The docs will contain the same data as the mother document but some cases,some strings will be replaced by some new strings for each document to be created.plz help me out.
    File ReadDocFileInput = new File(inFilePath + "APX-DBEST.DOC");
    BufferedReader readXML = new BufferedReader(new InputStreamReader(new FileInputStream(outFile)));
              String FirstTag = null;
              String writeIntoDoc = null;
              String writeTagName = null;
              String writeTagSTEPName = null;
              File WriteDocFileOutput = new File(inFilePath + "APX-DBEST-" + writeTagName + ".RTF");
              BufferedReader fis = new BufferedReader(new InputStreamReader(
                        new FileInputStream(ReadDocFileInput)));
              //FileInputStream fis = new FileInputStream(ReadDocFileInput);
              //FileOutputStream fos = new FileOutputStream(WriteDocFileOutput);
              PrintWriter fos = new PrintWriter(new FileOutputStream(WriteDocFileOutput) );
              //int i =0;
              //char ch;
              while((writeIntoDoc = fis.readLine())!=null){
                   //ch = (char)i;
                   fos.write(writeIntoDoc);
              fis.close();
              fos.close();
              //WriteDocFileOutput.renameTo(new File(inFilePath + "APX-DBEST-" + writeTagName + ".DOC"));
    this is the code i hav written...anything wrong in it?...it does not working.

    I didn't read your code. But if you want to copy a file, commons has a neat tool for it:
    import org.apache.commons.io.IOUtils;
    import java.io.*;
    class CommonsFileCopy {
        public static void main(String[] args) {
            String fIn = "CommonsFileCopy.java";
            String fOut = "(copy) CommonsFileCopy.java";
            try {
                InputStream inStream = new BufferedInputStream(new FileInputStream(fIn));
                OutputStream outStream = new FileOutputStream(new File(fOut));
                IOUtils.copy(inStream, outStream);
                System.out.println("Copied \""+fIn+"\" to \""+fOut+"\" successful");
            catch(IOException ioe) { ioe.printStackTrace(); }
    }

  • I type my search words, hit enter and then the search words get deleted so no search is performed what to do?

    I open Firefox and then put in the words I wanted to search for. I hit enter and the search words disappeared. I repeated it several times using a variety of search words. Same thing. Restarted the computer, reset Firefox. Still not performing searches.

    hello StewartFloyd, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, maybe an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • My 3050 J610 printer goes into standby or sleep mode and then I cannot print docs to it wirelessly

    Everytime I do not print something for a few hours, my printer goes into standby or sleep mode.  When it does this, it cannot be used to print from my laptop or android to it.  Is there a way to set this up so that it doesn't "go to sleep" and it is always available to me to print with.  I like the printer, but it seems kind of off that you cannot print on it wirelessly and it is considered a WIRELESS printer.  That's the only reason I bought it and now I can't even use it without walking downstairs and turning the printer back on again.  If I wanted to do that every time I would just print from my main computer!
    Thanks,
    Ashley
    This question was solved.
    View Solution.

    Ok, I know this thread is a little old, but it would not allow me to start a new one, since I am new. I am having the same issues with my 3050 J610 as everyone else. It makes you think there is a wireless connection problem, but that is not the case. The printer goes into a standby mode and there is no way to bring it out of it, unless you cycle the printer. The panel buttons will still work, you just lose the ability to print wirelessly.
    I have had my 3050 J610 in two different rooms, master bedroom and basement office. Both areas work well when it is connected and awake. After a while of inactivity, it goes into standby mode and cannot print wirelessly. Here are steps I have taken so far:
    When the printer goes into standby and will not print wirelessly, I have check to make sure there is still a connection between the router and the printer - There is
    I have set a static Id for the printer at .210
    Cycling the printer brings the connection back instantly.
    The front panel buttons work just fine when it does not have connectivity
    In the basement, the machine has excellent signal and connection.
    I have checked the recommendations in this thread, and like others, there are no options under the advanced tab of the maintenance page. The problem is a standby or sleep issue. When this arises, it has connection to the router, but the wireless computer does not have connection to the machine. I know when it was in the bedroom, the light would blink 3 or 4 times now and then throughout the night. We need a way to turn off the standby, or bring the machine out of standby mode. It is not an issue of the router, channel, interference, or software. It is the sole issue of standby or sleep modes. I have been pulling my hair out for almost two years over this issue. I swore I would not buy another HP product after the problems I had with a printer and laptop. But I thought I would give HP another chance.

  • How do I begin with a template and then import a Word document?

    I know I can open a word document in pages (I do this all the time). But I have a specific template and I want the word document I open to take up the designed elements of the template. How do I do that?

    George
    You can import the styles from another document:
    +Menu > Format > Import Styles…+
    but it will come down to what you need to retain from what.
    You can not import layout or elements, so you will have to work out which holds most of what you want and import the styles from one and apply that or copy and paste into the document that contains most of the work.
    Don't forget you can use the thumbnails to copy across whole pages/sections.
    This is where Pages extremely weak and poorly thought through layout methods fall down. You will not be able to apply the master pages and master page layouts, to existing work, that you can in other DTP software.
    Peter

  • How can I do a screen dump and paste into a word doc?

    I need to screen dump and paste into a word doc

    Abduction!: https://addons.mozilla.org/firefox/addon/3408
    FireShot: https://addons.mozilla.org/firefox/addon/5648
    Screenshot Pimp: https://addons.mozilla.org/firefox/addon/12985
    Screengrab: https://addons.mozilla.org/firefox/addon/1146

Maybe you are looking for

  • IDE BLOCK ACESS in the MS-6570 K7N2-L (nFORCE 2)

    I possess a K7N2-L with chipset nFORCE 2 and vi something in software SANDRA 2004 that it did not please me very. I verified exactly that the access to the hard disk is carried through in 16bits instead of 32bits, with qualified IDE BLOCK. It would l

  • How to avoid OCM reinstall through OPatch when using EM Harvester?

    Currently running OEM Grid Control 11g (11.1.0.1.1GC PSU) on an infrastructure repository database (11.2.0.1.2). Previously had OCM installed in every ORACLE_HOME in our environment. I removed all existing OCM installations and OCM Instrumentation in

  • Sql time issue

    i have a time/date feild in Access database,,but when i make a select statement of the time, it gives me a strange date with the time : 1899-12-30 15:16:19 1899-12-30 15:17:19 1899-12-30 15:18:19 1899-12-30 15:19:19 1899-12-30 15:20:19 1899-12-30 15:

  • Problem displaying only one arabic letter

    i have read an arabic text and print it , it displaye all letteres except of the arabic letter "fa" it display insted of it "?". i use UTF8 encoding which is ok for arabic letter but i can't understand why it doesn't display the letter "fa". i use Ec

  • Can't see 'white' colored page number on colored object/paper

    I am using Pages '09 (v 4.3) and am having a devil of a time trying to get a 'white colored' page number to show up over a colored object that is streched over the sheet/paper to provide a color background. The problem seems limited to only when I wa