Help dynamically generating RTF table of contents

I inserted a TOC in word (Insert -> References -> Index & Tables -> TOC) into my template. I then set the TITLE field to level 1 and the EPI_COLUMN4 field to level 2 and then did a Update TOC -> Entire table:
<?TITLE?> <!-- set as level 1 -->
<?for-each:CHAPTER1_ROW?>
<?EPI_COLUMN4?> <!-- set as level 2 -->
<?EPI_CLOB1?>
<?end for-each?>
When generating the preview my TOC looks like:
CHAPTER 1..........................................0
EPI_COLUMN4..................................... 0
1. Its not repeating the multiple EPI_COLUMN4, only shows the first
2. It doesn't show the value of EPI_COLUMN4 instead shows EPI_COLUMN4??

I have done TOC,
let me look at your files
send me the xml and template to
fusion[dot]object[at]gmail[dot]com

Similar Messages

  • I cannot generate a table of contents in INDesign3

    Hi There:
    I'm fairly new to Indesign CS3 and I need to generate a table of contents. I created a book file which consists of 20 chapters. I also created a Frontmatter file, which is also part of the book file. According to the help menu, I should open up the FM file and choose, LAYOUT>TABLE OF CONTENTS to begin. However this option under layout doesn't exist. Is there a plug-in I am missing. HELP! I need to generate this TOC at some point today.
    thanks much to whomever can help.
    -Lisa

    As far as I know, it should be there always unless the menus themselves have been turned off by someone. Might as well check though.
    1) GO to Edit > Menus (opens Menu Customization)
    2) Select Application Menus from the Category field
    3) Expand "Layout" under Application Menu Command and make sure the Visibility icon is active for the TOC items (at bottom)
    edit: Of course you could also go to Window > Workspace and select reset menus

  • Populating values in dynamically generated internal table

    Hi,
    We can generate internal tables dynamically and also populate them with values from database.But is there any way to populate the dynamically generated internal table(has 2-3 selected fields) with values from another internal table(has all fields required by the program) being populated within the same program?
    Thanks & Regards,
    Savitha

    Hi
    Dynamic internal table is internal table that we create on the fly with flexible column numbers.
    For sample code, please look at this code tutorial. Hopefully it can help you
    Check this link:
    http://www.****************/Tutorials/ABAP/DynamicInternaltable/DynamicInternalTable.htm
    Reward points if useful
    Regards
    Anji

  • How can I generate a table of contents from bookmarks

    How can I generate a Table of Contents from bookmarks in Adobe Acrobat XI?

    Something to try.
    Rick Bostein  provided a "Create Bookmark Report" Acrobat Action.
    With this report as a PDF you could insert it at the start of your PDF document to serve as a "TOC". 
    Go here:
    https://acrobatusers.com/actions-exchange 
    Scroll down some.
    Be well...

  • Can you generate a Table of Contents using bookmarks?

    Hi,
    I am a newbie to InDesign and am probably missing the obvious but...
    I am creating a document in InDesign and want to generate a Table of Contents. I have just created a de facto ToC with Bookmarks for the exported PDF version of the file, but there seems to be no way to take this information and use it to creat an actual ToC in the ID file itself. My bookmark list contains the information for all the chapter and sub headings along with the page locations, all the data I need to create my ToC, but I can't find a way to do this. I don't understand why I have to use paragraph styles to set this up? It is overly complicated for my needs, added to that it is duplicating my work. If I have to set up paragraph styles for the print version and bookmarks for the PDF version, why can't one set of information be used to generate both version of a Toc?

    You don't consider 100 pages a long doc? Ouch. If it needs a TOC, I'd say that's pretty definitive for it being long.
    I know users who set up styles for even one-page projects. I figure it's worth setting up a style for any formatting that will repeat more than twice, regardless of document length. It's pretty fast using the format/select/define style method  of formatting text the way you want, then selecting it and choosing "New Style" from the appropriate panel.

  • Adobe acrobat pro 9 help button shows no table of contents

    When I open adobe acrobat pro 9 and select the help button the help window opens but there is no table of contents and if I try to search for a topic nothing happens... Any help here?

    Have you tired Adobe Acrobat 9 Pro ?
    If there are Icons in the upper left of the screen, try some of them.

  • How to keep superscript format when generating a table of contents

    Hi,
    I have a superscript ® in a title in a document that needs to be brought in the Table of contents. When I do generate the TOC, I cannot keep the superscript format in the TOC.
    I could cheat and replace it manually, but there has to be a way it stays with those properties every time I regenerate the TOC.
    Any idea how?
    Regards.

    re: I am trying to find the natively-superscripted Unicode R character and cannot find how to create it.
    There doesn't appear to be one.
    There is one for lowercase r: \u02B3
    Resources:
    Character Name Index
    decodeunicode.org . Last Entries

  • Reg:doubt in dynamic generated internal table

    hi everyone,
                 i generated a internal table dynamically,the output is in fied symbol,i want to create a internal table using the field symbol sturture,how to create that????
    plz tell me how to create a internal table referencing field symbol structure........
    very urgent plz help.........
    thanks in advance....
    regards,
    balaji.s

    Hi ,
           check out   a small part of an alv report which is using dynamic internal table
    data: dy_table type ref to data,
          dy_line type ref to data.
    field-symbols: <dyn_table> type standard table,
                   <dyn_wa> type any,
                   <dyn_line> type any.
        call method cl_alv_table_create=>create_dynamic_table
          exporting
            it_fieldcatalog = ifc
          importing
            ep_table        = dy_table.
        assign dy_table->* to <dyn_table>.
    CREATE A DYNAMIC WORK AREA.
        create data dy_line like line of <dyn_table>.
        sort it_mard by matnr werks.
        loop at it_mard into wa_mard.
          at new matnr.
            assign dy_line->* to <dyn_wa>.
            assign component 'MATNR' of structure <dyn_wa> to <dyn_line>.
            <dyn_line> = wa_mard-matnr.
            read table it_mard2 into wa_mard1 with key matnr = wa_mard-matnr.
            v_amount = wa_mard1-v_total * p_unit.
            call function 'SPELL_AMOUNT'
              exporting
                amount = v_amount
           currency        = 'INR'
      FILLER          = ' '
            language        = sy-langu
          importing
            in_words        = v_price
          exceptions
            not_found       = 1
            too_large       = 2
            others          = 3
            if sy-subrc <> 0.
              message id sy-msgid type sy-msgty number sy-msgno
                      with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            endif.
            assign component 'V_TOTAL' of structure <dyn_wa> to <dyn_line>.
            <dyn_line> = wa_mard1-v_total.
            assign component 'V_PRICE' of structure <dyn_wa> to <dyn_line>.
            <dyn_line> = v_price-word.
          endat.
          concatenate 'STOCK' '-' 'IN' '-' wa_mard-werks into v_new.
          assign component v_new of structure <dyn_wa> to <dyn_line>.
          <dyn_line> = wa_mard-labst.
          at end of matnr.
            append <dyn_wa> to <dyn_table>.
            clear wa_mard.
            clear <dyn_wa>.
            unassign <dyn_line>.
            unassign <dyn_wa>.
          endat.
        endloop.
    rewards points if helpful.

  • How to get the duplicate rows in dynamically generate data table [list items collection] and send emails in sharepoint2010

    Hi,
    i have share point list like  below
    ID   name AdminEmail Useremail   URl   DueDate   UploadSatus
    1    ppp     [email protected]  [email protected]    url  some date    uploaded
    2    yyy       [email protected]   [email protected]   url somedate    empty
    3  xxx         [email protected]   [email protected]    url   somedate   empty
    4  jjj           [email protected]    [email protected]  url     somedate   emp
    AdminEmail and UserEmail  are lookup column
    i using query the list using caml query
    inside of foreach i am checking  two condition like below
    one is upload status in not empty
    i need to send to mail to admin user  this part i have done my adding all list items which have datatable apply group by working fine
    in send condition i am checking difference between DueDate And current date value
    if the value is =1 or -1
    if the value is i
    thank
    i am getting the
    table like below
    ID   name AdminEmail Useremail   URl   DueDate   Upload
    2    yyy       [email protected]   [email protected]   url   somedate    empty
    3  xxx         [email protected]   [email protected]    url   somedate   empty
    4  jjj           [email protected]    [email protected]  url     somedate   empty
    my issue is here  how can i get the dynamic table rows which are same values of AdminEmail and user email  one set and distintict rows are another set
     sets which are same emails are same
    3  xxx         [email protected]   [email protected]    url   somedate   empty
    4  jjj           [email protected]    [email protected]  url     somedate   empty
    set 2
    2    yyy       [email protected]   [email protected]   url   somedate    empty
     how can i get this separate this can any one tell i need to send mail only one time to user [adim and user] .planing to aviod duplicate mail
    Srinivas

    your case better to use the two data tables to store the data
    DataTable dt = list.Items.GetDataTable();
    foreach (DataRow row in dt.Rows)

  • How to upload an excel to a dynamically generated internal table?

    Hi,
    I have an excel sheet. I have to create an internal table dynamically according to the fields of the excel sheet. The internal table i have created successfully, the fields are exactly coming as the excel sheet. I need to upload the excel sheet directly to my Internal table.
    Similar to the FM GUI_UPLOAD, which directly uploads the text document into the internal table
    I am not able to pass my dynamic internal table to the GUI_UPLOAD, The tables parameter in the GUI_UPLOAD is accepting only the standard tables.
    How to do?
    -Sudheer

    Hi,
    Use TEXT_CONVERT_XLS_TO_SAP  Function  Module.
    AWARD POINTS IF USEFUL

  • Please help to generate the table from column to rows

    Hello -
    I have one table with more than 100 columns there are 70 column start with HC1.....HC70 (they are not in sequence) and has some value 0 or 1
    Table structure:
    HICN_ID HC1 HC2 HC4 HC5 HC6.................................HC70
    1234A 0 1 1 0 1 1
    3456D 1 0 0 1 0 0
    Now What i want is like this..
    HICN_ID HC
    1234A 2
    1234A 4
    1234A 6
    3456D 1
    3456D 5
    Can you please help me on this
    thanks
    nick

    Please look at the same scenario from the below link.
    You can accomplish this by a "pivot" query. Please look at the small testcase that I prepared below:
    SQL> desc t1
    Name Null? Type
    NAME VARCHAR2(10)
    YEAR NUMBER(4)
    VALUE NUMBER(4)
    SQL>
    SQL> select * from t1;
    NAME YEAR VALUE
    john 1991 1000
    john 1992 2000
    john 1993 3000
    jack 1991 1500
    jack 1992 1200
    jack 1993 1340
    mary 1991 1250
    mary 1992 2323
    mary 1993 8700
    9 rows selected.
    SQL> -- now, try out the pivot query
    SQL> select year,
    2 max( decode( name, 'john', value, null ) ) "JOHN",
    3 max( decode( name, 'jack', value, null ) ) "JACK",
    4 max( decode( name, 'mary', value, null ) ) "MARY"
    5 from
    6 (
    7 select name, year, value
    8 from t1
    9 )
    10 group by year ;
    YEAR JOHN JACK MARY
    1991 1000 1500 1250
    1992 2000 1200 2323
    1993 3000 1340 8700
    SQL>
    Hope that helps.
    Source : http://p2p.wrox.com/oracle/11931-sql-query-convert-columns-into-rows.html
    Thanks,
    Balaji K.

  • Is there any way to generate table of contents in adobe for a report output

    Hi All,
    I need to display the output of a report in an PDF and layout needs to be developed in Adobe Print Forms. I want to know if there is a way to generate a table of contents for the output in adobe form on a particular page.
    Thanks...

    Hi,
    Thanks for the reply. I am new to the adobe and to the javascript.
    I would appreciate if you can guide me as to where can I get the online help on javascript related to Adobe Print and Interactive Forms.

  • Table of Content Help - Anchored Objects/Listing Order

    For the love of god this is extremely frustrating.   I have been searching for literally hours trying to find the solution.
    I have a large document, linked frames from page 1 through page 44 for example.
    On many pages I have figures, and using an incrementing paragraph style, these figure captions are numbered sequentially.
    When generating a table of contents, any figures that are in the main linked frames are created in the proper order.
    My issue is that on a few pages, I have figures inside anchored objects - basically an anchored text frame with a picture and the figure label text using my paragraph style.
    These anchored objects are not being put in the table of contents in the proper order - they are being added to the end of the toc!  Indesign should be smart enough to add items on the page in the proper order - be it the main frame or an anchored one!
    For example
    Figure 1 - page 1
    Figure 2 - page 1
    Figure 3 - page 2
    Figure 5 - Page 3
    Figure 4 - Page 2 <<< huh?
    Any assistance would be GREATLY appreciated.

    After looking at this a bit more, this may or may not work so we might need to get dirty on this one .....................
    Some clues can be found here : http://www.oracle.com/technetwork/middleware/bi-publisher/bip-bookbinding-176639.pdf
    Looking at Page 7, it should be obvious that we can add additional deatils to the reports, including cover pages.
    Though, after looking at Page 8, I think I may have you slightly in the wrong direction. toc-template appears to simply cover the commands for the table of contents and there is another template to control everything. But is that file visible to edit?
    If you run FRConfig.cmd, you can find more clues.
    Go to the MBeans tab, expand com.hyperion, then expand Financial Reporting, and Attributes.
    The two attributes that immeidately jump out are TextPrintTemplate and BookTOCPrintTemplate
    - TextPrintTemplate is the FR_TextTemplate.doc file in <<EPM_ORACLE_INSTANCE>>/products/FinancialReporting/bin/ folder
    - BookTOCPrintTemplate is the toc-template.rtf file previously discussed.
    Once again, though, the other template exposed to us is most likely just driving the content and is not at a high enough definition level for this to work how you want it to.
    I would say to use the example in the PDF and try adding that to the table of contents page before it does all of the loops. Perhaps it will work from there, perhaps not.
    If that doesn't work, Thursday we can attempt to drill into this more.
    :)

  • Generating table of contents by chapter number and title in reports

    Hi all,
    how can i generate a table of contents in reports?
    I will definitely need the chapter numbers and their respective titles to do that.
    Are there specific templates to follow in order to do that?
    Thanks.

    Your profile lists 10.6.2 as your OS version. If this is true, it may be the source of problems with Pages. Keeping both the OS and iWork apps updated will avoid some problems.
    Jerry

  • FrameMaker Table of Contents TOC Help Needed

    I am working on a book using Frame Maker 8 and I am trying to generate a table of contents for the first time.
    The book has several chapters, and I am able to generate a TOC with the Chapter titles without a problem.
    Within the chapters, there are outlines. When I generate the TOC with the Heading1Start and Heading1 (marked with roman numerals in the body text), it works fine too.
    But then when I add the Heading2Start and Heading 2 (marked with capital letters A, B, C in the body text), it generates the TOC list with only the headings and page numbers but without the capital letters for the paragraph numbers.
    Basically, I'm getting something that looks like this:
    Chapter 1 ....... 7
    I. Overview ... 13
    Introduction 13
    when what I need is this:
    Chapter 1 ....... 7
    I. Overview ... 13
    A. Introduction 13
    How do I fix this?
    I apologize if this is a simple topic of if the answer is elsewhere. I searched for an answer in a few places but did not find one.

    have you used the <$paranum> building block on your TOC reference page?
    I explain this and other building blocks on p.372 of my book. The <$paranum> functionality is the same in FM11 as in FM8.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11
    P: 714.798.7596 | C: 714.585.2335 | [email protected]
    @mattrsullivan LinkedIn facebook mattrsullivan.com

Maybe you are looking for

  • Graphics in Pages 5?

    I have just opened a complex documents full of graphics and tables in the new Pages, and certain graphic images which were floating and not affecting the text layout in the Table of Contents, are now affecting the text layout and are not selectable.

  • SONY TV Skype Issues - no audio on KDL-46W905A

    Hi, I own a SONY KDL-46905A TV and recently bought an overpriced CMU BR200 Webcam.  When I connect to another party, they can hear and see me but I can only see them.  I have tried it with a few people and checked that their end is not on mute.  When

  • Problem with a Bex Query Report with Web Intelligence

    Hello! I have a Bex query (with query Bex version 7.0) I'm connecting with Web Intelligence (4.0) but one of the attributes instead of displaying the description shows only the key, and it is strange because other cubes if given by the conversion. I

  • Cannot play streaming video created by iweb

    I loaded on to an iweb page a video I created with Quicktime pro. It is playing on my inac and on my macbook but does not play on my ipad 2. Any suggestion?

  • Ringtone problem, assigned ringtones not working

    I realized that the phone would not ring assigned ringtones. I made numerous phone calls to tech support and spent hours with them troubleshooting this problem. We tried everything When your ATT account has caller ID block, in order to unblock the nu