Paragraph format import woes...

I may be a bit rusty (almost three years of forced MS Wording, yuck) and a beginner with FM 9, so this may be entirely my own stupidity, but:
I have set up a template document with para styles, master pages etc. When I import the styles into other documents, I noticed that my heading paragraphs lose their autonumbering properties (the box is unticked, building blocks erased) as well as tab presets. Paragraph font properties and master pages on the other hand import fine.
I have tried to circumvent this problem by numerous tricks, e.g. copying text into the template document, erasing all formats before import, removing all formatting from the text before import... Even when I paste plain text into the template the formats suddenly change for no (obvious) reason. I need to focus on translation and have no time to hunt down formatting gremlins - anyone out there with a clue?

Just speculation, but I'll mention it because it caught me out a few times before I got used to it: have you checked "While updating, remove other format/layout overrides"?
Consider two documents that both contain a style :listItem*, where:
:listItem in document B [source] uses the numbering properties
:listItem  in document A [target] does not use the numbering properties
I have the impression that when you import definitions from B into A, the difference between the two definitions is seen as a local override in document A and sedulously preserved – unless you select that "Remove overrides" checkbox
N
* the name is of course arbitrary; or to quote the greatest manual of all time
DVCF comes in two flavors: vanilla and mocha [44]
[44] These names have no technical significance.

Similar Messages

  • How can I move paragraph formats from one document to a new one?

    How can I move paragraph formats from one document to a new one?

    > How can I move paragraph formats from one document to a new one?
    Have both open.
    File > Import > Formats
    Import from Document: [ nameofsource.fm ]
    [ Deselect All ]
    [*] Paragraph Formats
    [ Import ]
    Now, do the existing paras in the importing document have exactly the same names?

  • Paragraph Format being lost

    Hi there
    I'm working on an FAPI client to translate text in Frame Documents. One of the first things we do is store the formatting for each paragraph,
    and then write it back out to the translated document.
    However, in one document I'm working on, when my client attempts to get a handle
    for one particular paragraph format, it gets a null a handle instead and that formatting is not applied. Instead, formatting from the previous paragraph (namely an obnoxious green font colour!) is being applied.
    In order to set the translated text into the document, we delete the content that was originally there. Could that have a role to play?
    I notice that before and after translation, the paragraph format in question is not contained in the paragraph format catalogue.
    When I click on the paragraph which has this formatting applied to it, it has an asterisk before the name. Is this significant?
    Any answers would be appreciated
    Thanks
    Eric

    Eric,
    I think the answer you are looking for is yes, there can be "formats" in the document that are not in the catalog. However, they aren't really formats at all, because if they were, they would be in the catalog. From an API perspective, all they are is a string property assigned to a paragraph.
    With the FDK, format usage can be confusing. You might think that you can just set the FP_Name property for an FO_Pgf object to apply a format, but that is really nothing more than a string that is used for reference later, either by you (the programmer) or the interface (the GUI). To apply a format, you have to find the format object (FO_PgfFmt) itself, capture its settings, then apply them to the FO_Pgf (I gather you know this already). It's important to remember, though, that you aren't really creating any kind of link between the format object and the paragraph; rather, you are just transfering the settings from one to another. Incidentally, both types of objects have an FP_Name property, so when you transfer the properties from the format to the pgf, that name gets transferred as well. This presents the illusion that there is some intrinsic link between the two afterwards, but it really was nothing but a string property transfer.
    The problem you are having is that this FP_Name property was somehow set with a value that doesn't reflect an actual format in the catalog. This could have been done with the FDK, of course, but there are a number of ways to do it in the interface as well. One of the simplest ways is to open the paragraph designer, "create" a new format, but deselect the option to add it to the catalog. The paragraph will then maintain the assignment of this "format," but it doesn't really exist. It's just the FP_Name property amidst the zillions of other paragraph-related properties.
    Others have suggested that format overrides might be the cause, but I don't think that is quite applicable in your case. You should still be able to retrieve an FO_PgfFmt object by name, if it existed. Your problem is that the format doesn't exist. Note that in the interface, both a non-existent format and an paragraph with format overrides will show with an asterisk in the toolbar, adding to the possible confusion here.
    Solution?  I think you'll need to clean up your docs   You can do this with the FDK by seeking out any paragraph with an imaginary formats, then creating a new FO_PgfFmt object with the respective properties. Or, better yet, do it once manually and be done with it.
    Russ

  • Include text's paragraph format

    Hi experts,
    I have a include text in my smartforms. I'm using the smartform's form routine section to include this text, because my text is dinamically set up. After including it with the following code the paragraph and text formats are ignored. How could I apply my character and paragraph formats?
      CALL FUNCTION 'SSFRT_READ_INCLUDE_TEXT'
           EXPORTING
                I_TEXTKEY   = TEXTKEY
                I_LANGUAGES = ls_LANGUAGES
           IMPORTING
                O_LANGU     = LANGU
                O_TEXT      = lt_text
           EXCEPTIONS
                OTHERS      = 1.
      CHECK SY-SUBRC EQ 0.
      CALL FUNCTION 'SSFCOMP_CONVERT_ITF_TO_TOKEN'
           EXPORTING
                I_TEXT     = lt_TEXT
                I_NAME     = NAME
                I_LANGU    = 'H'
                I_TEXTTYPE = ''
           IMPORTING
                E_TOKEN = L_TOKEN.
      CALL FUNCTION 'SSFCOMP_WRITE_TEXT'
           EXPORTING
                NAME              = NAME
                LANGU             = LANGU
                STYLE             = STYLE
                STYLEVARI         = STYLEVARI
                TEXT              = L_TOKEN
                APPEND_MODE       = APP_MODE
                PROTECT           = PROTECT
                TEXTTYPE          = ''
           EXCEPTIONS
                NON_MAIN_OVERFLOW = 1
                OTHERS            = 2.

    Okay, I've got the solution.  L_TOKEN contains the smartforms style. I have to set it according to my form.

  • Export paragraph format tag to attribute

    Hi All,
    Using structured FM 11 on Windows 7.
    I need a way to round-trip paragraph format tags. I know it is easy to assign them on import with the EDD, but I'm not sure how to save them on export.
    I was hoping the read/write rules could contain something along the lines of:
    attribute "paraFormat" is fm property paragraph format tag;
    I figure it can probably be done with ExtendScript or a custom API, but I would rather avoid these if possible.
    Thanks!
    Trevor

    Trevor,
    I think you are out of luck with r/w rules. The assumption is that formatting logic is owned by the EDD and would therefore have no relevance in the XML. Like you surmise, an import/export API client could do it. An ExtendScript could also do it before the import, by populating the attributes ahead of time. That would be a very simple script, maybe 20 lines or so.
    My FrameSLT plugin could also populate the attributes ahead of time with a Node Wizard Script, but that isn't free like ES. www.weststreetconsulting.com.
    Russ

  • How do I un-clutter list of hundreds of paragraph formats

    When I pull down the menu of paragraph formats I see a HUGE number of them scrolling down beyond my screen.  God forbid I should ever have to choose one that begins with a letter late in the alphabet.  Help files mention a catalog window but I have looked everywhere for this mythical thing and can't find it.  If I do find this catalog, can I delete all the tags I don't need for this one document without losing them permanently for all documents?  Can I set preferences to have new documents list just a few of my favorites without dealing with this enormous cumbersome list every time?
    Using FM 9.0.
    Thanks for your help!
    Paul

    Paul_RS wrote:
    When I pull down the menu of paragraph formats I see a HUGE number of them scrolling down beyond my screen.  God forbid I should ever have to choose one that begins with a letter late in the alphabet.  Help files mention a catalog window but I have looked everywhere for this mythical thing and can't find it.  If I do find this catalog, can I delete all the tags I don't need for this one document without losing them permanently for all documents?  Can I set preferences to have new documents list just a few of my favorites without dealing with this enormous cumbersome list every time?
    Using FM 9.0.
    Thanks for your help!
    Paul
    Hi, Paul:
    Paragraph, character, and table format definitions are stored in each file.
    To delete formats from the paragraph or character format catalog, open the catalog with Format > Paragraphs > Catalog, or Format > Characters > Catalog, click Delete** to open the deletion dialog box, select a format by clicking a visible format name, by navigating through the list with arrow keys, or by typing the initial letter of a format's name. Repeatedly typing the same initial moves through the formats that begin with that letter. Click Delete to "nominate" the selected format for deletion. You can't select multiple formats in the list by Shift+Click or Ctrl+Click. Click Done to perform the actual deletion, or Cancel if you change your mind.
    An alternate way to open the format deletion dialog box is by clicking the Delete option that appears by clicking the Commands button in the Paragraph, Character, and Table designers.
    To assure that you don't lose formats you may want to use at another time, save a copy of the file with a descriptive name, such as "AllFormatsInTheKnownUniverse.fm." You can delete all the content to unclutter the file, without losing the formats. You can import formats from one file to another, or from one file to multiple files in a book. Search Google for "framemaker import formats" without quotes for information at Adobe forums, in FrameMaker Help, and from other sources.
    **Note that pressing Delete to open the deletion dialog box does not delete the format that's selected in the catalog.
    One way to eliminate all the unused formats from a catalog is to use File > Utilities > Create and Apply Formats. BEWARE: it's dangerous; read up on it in Help, and save a copy of your file before using. You'll find unfamiliar format names in the catalog this creates, such as Mapping Table Title and some others; they're from items on Master and Reference Pages.
    Better and safer than Create and Apply Formats are the excellent inexpensive tools for maintaining paragraph and character format catalogs from siliconprairiesoftware.com.
    The table format catalog is only visible in the Table Designer (Table > Table Designer.)
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How to create paragraph format in smartforms

    Hi All,
    Let me know how to create paragraph format in smartforms?
    Thanks&Regards
    Mahesh

    Hi
    When we create a smartform we can see in <b>global settings</b> , <b>form attributes</b>.
    In <b>form attributes</b> we set the over all style of the smartform. Goto <b>form attributes</b> and open the tab <b>output options</b>. Here you can see the <b>Style box</b>. In this style box we enter the smartstyle created in transaction code <b>smartstyles</b>.
    Open transaction <b>smartstyles</b>.
    Create a new style.
    Upon creating a new style you will see 3 folder structures under style name.
    1. Header data
    2. Paragraph format
    3. Character format
    To create paragraph format right click on the paragraph format node and click Create Node. Give it name. Now you will get a screen with 4 tabs.
    Indents and spacing
    Fonts
    Tabs
    Numbering and outline
    Here you can provide the look you want.
    Now add this smartstyle in your smartform's form attribute.
    You can also provide individual smartstyles to each text element you create by giving the name of smartstyle in its output options tab. Each text element has a individual output option tab here you can give any smartstyle.
    Click on the general attribute tab of any text element and give the paragraph format directly or by going to SAPScript editor mode.
    Any more questions you can ask me directly mailing me.
    Please do reward points if satisfied.

  • For SAPscript INCLUDE TEXT, how to align as Paragraph format

    Hi experts and ABAP colleagues!
    Need your help on this sapscript problem:
    How to align texts taken from "INCLUDE TEXT" in SAPscript, according to tab defined in Paragraph Format?
    For example, I defined BG to have tabstop at the 2nd column (or equivalent to 1st tab position) where I need to print the text, and then declared it in SE71 like below:
    However the text prints at the leftmost instead of at the 2nd col position - (8th char tab defined in par. format BG).  Hence it is not aligned to its proper heading.  Line Number instead of Description - which is not okay for client view that needs these Thai texts. 
    The technical details I included below.  Kindly examine:
    1.)  Window >Main > Text Element > Include Text command
    /E   ITEM_TEXT
    BG   ,,&TTXIT-TDTEXT&
    /:   INCLUDE &T166P-TXNAM& OBJECT &T166P-TDOBJECT& ID &T166P-TDID&
    /:   NEW-PARAGRAPH BG
    Note:  I used command "NEW-PARAGRAPH" and had exactly the above code in se71.  Anything missed here?  Pls. help.  Thanks.
    #2.) Paragraph Format > Tab
    No. -
      Tab Position -
    Alignment
    1            8,00 CH            LEFT
    2            28,00 CH          CENTER
    etc.
    Note:   and then i put in  ",,&TTXIT-TDTEXT&" (see above) with the 2 comma's beforehand to say that its on the 1st tab or at the 8th character where it should be printed, but does not give intended result... pls help.
    #3.) Paragraph Formats > Standard Attributes
    Left Margin - 0 cm
    Alignment - Left
    no blank lines checkbox - ticked
    Note:  Is there any more attribute i can manipulate from here to force display at the right position?
    Thank you so much in advance for all your help.  Our project team will really appreciate it.  May the Lord bless you as we go through our SAP work!
    Sincerely,
    Celeste

    Here's a thought, instead of using tabs, try writing a method that takes a string that is the starting string, a pad character, and a length and returns a string padded to that length with the specified character.
    public String padR(String src, String padChar, int len)
        // ... You get to fill in the rest suggestion try to do it without a loop
    }Have fun,
    PS.

  • TAB in paragraph format for Script

    hi,
    i am doubt with the tabs for paragraph format in the script. how actually it work? i try to make change on the tab, but some time even i put a larger value, the space in the output will become smaller, can anyone explain to me how the tab actually work?
    thanks

    Thanks you very much.
    but one more question, let say, if i have 3 tabs for an output.
    HARLO,,MY,,WORLD,,!
    any i configure the tabs as, 20, 30,15 all in CH
    so after the "HARLO, it will have 20 CH of spacing, follow by "MY", 30 spacing, and 'MY" 15 spacing, end with "!"?
    it this the way it works?
    or it works in accumulate way, which include the text display as well?
    i found in the forum, say that, it will fix the length of a field( if i display a field), even there is no any value in that field. so how does it work on this?
    alot of question very thansk for the temper.

  • Problem in creating new/changing paragraph format in sapscript

    hi,
    i am developing new sapscript form
    based on standard sapscript : SD_PICK_SINGLE .
    The problem is that I neither can't create new paragraph format in se71
    for this form nor change an exist paragrapf format .
    does anyone encountered such a problem
    and can help me solve it ?
    ami

    Hi,
         You have copied the Standard Sapscript, but i think you have not converted the Original Language "DE", as the standard one will be in "DE", so it is not allowing you to create new paragraph format or any changes.
          Open the copied Zform in DE language, Click on Menu> Utilities> Convert original language,
          Give From = DE
                  To    = EN
    Save and Open the Same Zform in EN language and do any modification.
    Regards
    Bala Krishna

  • HT202020 Using a SDHC card adapter I can import directly on my iPad2 videos (.mov) taken with a Panasonic DMC-ZS3. The same video files (same file format) imported in Aperture 3.3 cannot be synchronized with iPad. Is Aperture causing the problem?

    Using a SDHC card adapter I can import directly on my iPad2 videos (.mov) taken with a Panasonic DMC-ZS3. The same video files (same file format) imported in Aperture 3.3 cannot be synchronized with iPad. Is Aperture causing the problem?

    Oh, baby! This bad boy flies!! Here's what to expect:
    I had 40,000 images in Aperture 3 and it was dog slow at everything. I installed 3.1 update today. It took 5 minutes to update the database and then behaved marginally better than before at ASIC library navigation. I was disappointed.
    Then I QUIT the app. It took a couple of hours to "update files for sharing" with a counter that went to 110,000 images. So it must have updated every thumbnail and variation of preview. Turned it back on , and BAM. Came up fully in seconds. Paused for 10 seconds ten everything was lickrty split. For the first time ever, I can use the Projects view with all 791 projects and scroll quickly. I even put it in photos modevand whipped thru all 49,000 images!
    Haven't done anybprocessing yet, but i'm liking it!!
    Jim

  • Replace a paragraph format with another in the every page

    I am doing some cleanup before exporting and I don't know much about FrameMaker....
    I want to replace the paragraph format ABC with XYZ in every page, how would I do this? 
    I  also have a paragraph format I want to delete and make it just a Normal paragraph  in every page, I image it will be the same process as 1?
    Your help is appreciated

    Try this …
    make a back-up just in case
    find a paragraph with the style you want to apply (XYZ, in your example)
    select Edit > Copy special > Paragraph formatthis copies the format to the clipboard
    open the Find/Change dialogue
    put the cursor in a paragraph using the format you want to replace (ABC in your example) and select Paragraph tag from the Find pulldownif you're in luck, FM may well read the current format from the cursor position; if not, type it in
    select By pasting from the the Change pulldown
    click [Change] to see whether the result is what you expect
    click [Change all] once you're feeling confident
    Use the same technique to replace all occurrences of the style you want to delete (PQR, f'r instance) with another style, then delete PQR using the paragraph designer

  • Multiple character formats in a paragraph format

    Hi. I've searched the general discussion and did not find this issue.
    I have one paragraph format called Bomb that consists of a Wingding character (M) in the Numbering tab that prints a little black bomb in a side head. I combine with format with two other paragraph formats called Caution and Warning. These formats are in column and use a red, bold autonumber (CAUTION, WARNING) followed by a couple of spaces--the text goes immediately after the spaces.
    My bosses now want the bomb symbol and the CAUTION/WARNING word in the side head, with the text in column. I can't see how to combine that Wingding character with the regular Verdana word. I had to do something similar with my Note format, except that I put the word "note" by itself as a side head and created a format to follow it called NoteAft for the text.This way, I have a line with the Note format, followed by a paragraph return, then the NoteAft format for the text.
    I'd rather not have to use three formats to replace the existing two for Caution/Warning, so I hope y'all can help me figure out how to handle this thing.
    I appreciate your suggestions! BTW, I'm using FM 7.2 but will want to switch over to 9.0 when my bosses agree.
    Dimi Everette

    OK, I managed to answer my own question!
    Bomb para format: tab at 0.2 cm (not sure that's required...), Next Para tag is CAUTION; default font is Verdana; Run-In Head with no default punctuation; Numbering tab has Autonumber format checked, M in text field with Wingdings char format; defaults for Advanced and Table Cell tabs.
    I press Return and CAUTION appears.
    CAUTION para format: no tabs, Next Para is NoteAft; default font is Verdana; Side Head--Alignment: First Baseline; Numbering tab has Autonumber format checked, CAUTION in text field with RedBold char format; defaults for Advanced and Table Cell tabs.
    I press Return and type the text of the CAUTION in the NoteAft style.
    I'm going to change that Para tag to BombCaution and create another para tag with for BombWarning and be set! Of course this won't work unless your master page uses a column with room for side heads.
    If you know of something more elegant, please pass it along.
    Dimi

  • Use of "Next paragraph same page" check box in paragraph format of SCRIPT?

    Hi Guys,
    What is the use of "Next paragraph same page" check box in paragraph format of SCRIPT?
    Don't Send me the F1 help ....i am not clear with that help it is quite confusing.
    Provide example if possible.
    Solutions will be rewarded.
    Regards,
    GURU

    Hello.
    You probably know the idea of PROTECT command. It makes that a paragraph wont break in two. If it fit's totaly in one page it will print in that page. If not, it will print totaly in the second page (won't break at the middle).
    The checkbox you are asking, makes the same with two paragraphs. This means that if you have paragraphs A and B (A becomes first) and if paragraph A has that option, the next paragraph won't break, and appear in the second page. If paragraph A is in first page, paragraph B will print in first page too, or they will both print in second page.
    Try it.
    Best regards.
    Valter Oliveira.

  • Paragraph format drop-down not opening automatically with F9

    Hello,
    I use FrameMaker 9.0p237 on Windows 7. When I am exiting a document and press the F9 key, the paragraph format drop-down appears in the bottom left of the window. However, the drop-down does not open automatically. I must manually open it or type in the name of a paragraph format. When I used Windows XP, it opened automatically and I could easily see what options I could choose when typing, or just click one. This is slowing my process at editing because it is tedious to manually open the drop-down. I can't easily type the formats' names because I do not yet remember them by heart. Please see attached screenshot of area of window in question.
    Is there a way I can get this drop-down to open automatically like it used to? I sure hope so. Thank you.

    Thanks to everyone to responded to my question... In summary, I would categorize this as a bug in the product.  It really slows down my ability to edit quickly.  I'll work more toward memorizing the paragraph format names so I can simply type them.  Thanks again.

Maybe you are looking for

  • Sap-syscmd=nocookie and Statefull BSP's - Session timeout

    I have a tricky problem - and I'am hoping for your helpfull input... please.. I have developed a Statefull BSP application - and this application should be called from a SAP CRM application - and it should be possible to call and execute this aplicat

  • How can I restore files from /User/ohthatchris/Library ?

    I've been having a bit of a saga with Time Machine, and I think I'm almost there but I need a tip or two. I run TM on a Time Capsule, and have for some time. I wanted to do some renovation when I updated my air to Mountain Lion, as follows: Final BU

  • FCP won't play Keynote QT movie

    Just converted a Keynote presentation into a QT movie but it refuse to playin FCP, it plays ok in Quick Time. When I try and play it in FCP it brings up the message 'general error' and 'File Error'. The Keynote QT movie of the music plays ok in FCP t

  • Motion 4.0.0 chrashes

    Every time I try to start Motion 4.0.0 it chrashes saying this (Crash report below). In addition Final Cut Pro runs quite unstable to. System is up to date and quite fresh (set up end of march). Any idea? Help really would be appreciated. Thanks a lo

  • 8220 External Display

    Up got an 8220 flip phone and installed the BB Desktop Manager.  Manager indicated that software updates to v4.6 were available and I updated.  Now the external display no longer displays the time but my servicer provider's logo.  I have been all thr