How do I include an TOC heading in an second TOC?

I created a main table of contents for my Indesign CC document with all paragraphs that have "Heading 1" as their paragraph style to be includes. That work perfectly fine... with one exception: The heading of other TOCs. I use several TOCs, e.g. one for an index of tables. These have their heading style set yo "Heading 1", but the main TOC simply doesn't include them even though I set it to include everything with "Heading 1" as it style. How do I fix that?

For reasons I don't entirely understand (but probably having to do with not creating a recursive loop problem that would happen if you try to use the same style in the current TOC), ID does not look in TOC stories for paragraphs to include in any TOC. You have to either add a non-printing paragraph placeholder on the page for a TOC to pick up or insert the text manually in any generated TOC.

Similar Messages

  • How to include a license header in fxml file?

    How to include a license header in fxml file?
    I tried xml block comments <!-- mylicense here -->
    but it wasn't accepted by screen builder.
    Also I wondered, even if it had been accepted, would screen builder have saved the header back - or deleted it?

    All XML documents should begin with an XML declaration.
    If you have your fxml file starting with  the following lines :
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- mylicense here -->
    .. it will be loaded in Scene Builder, and saved back as is.

  • How to include WS-Security Header in the WSDL

    hi
    how to include WS-Security Header which have username and password as
    i had seen the below link it deals with just hello world which is not using any Services(DBAdapter) is it possible to use DBAdapter as the steps present in the below link how to include WS-Security Header which have username and password
    http://blogs.oracle.com/reynolds/2005/09/invoking_bpel_from_an_html_for.html

    As Amir suggested, you may provide in the URL but I wouldn't suggest it though. You don't want to hard code the user ID and password within in the WSDL because it is a bad practice especially the user ID and password may be different in different systems and every time you change the password, you have to regenarate your WSDL.
    May be you thought through this but just in case if you didn't
    KK

  • How to count the total lines of the file (including the file header)

    Hi all,
    I am working with Idoc to file scenario(FCC).
    I need to map one of the field with a recound count ie.., count of the total lines of the file (including the file header).
    Eg:Record Count-- mapping area:Total number of records in the file including file header     The total line of the file (including the file header).
    Can i get a help on this.
    Thanks and Regards,
    Manoj

    Hi !
    If there is a tag of your IDOC that occurs the same quantity of times as file lines you have to create in your target file, you could make a Java user defined function in graphical mapping that "caches the entire queue" (use the corresponding option button), that receives as input that field of the IDOC, and returns the "lenght" (.length property value) of that input parameter (it is an array) as output..that should be the file line quantity..you may also add 1 to that count, for the header.
    Hope it helps.
    Regards,
    Matias.

  • How to create a partner and header record using CRM_ORDER_MAINTAIN?

    Hi any one knows how to create a partner and header record using the function module CRM_ORDER_MAINTAIN??
    I tried to  create a record, but i only managed to create a header record and the partner record is not reflected in the transaction.  Why is that so? is there any indicator that i need to include?
    Thanks..
    Jen

    Hi Jen!
    I use this FM and it works perfectly.
    Use this to create a partner:
      gs_partner-ref_handle    = '0000000001'.
      gs_partner-ref_kind      = 'A'.
      gs_partner-ref_partner_handle = '0001'.
      gs_partner-partner_fct   = '00000001'.
      gs_partner-partner_no    = NO_PARTNER. "number of the partner, bu_partner
      gs_partner-display_type  = 'BP'.
      gs_partner-no_type       = 'BP'.
      gs_partner-kind_of_entry = 'C'.
    *  ls_partner_l-ref_handle    = '1'.
      gs_partner-ref_guid      = '00000000000000000000000000000000'.
      APPEND gs_partner  TO gT_partner .
      ls_input_field-ref_kind  = 'A'.
      ls_input_field-logical_key   = '0001'.
      ls_input_field-objectname  = 'PARTNER'.
      ls_input_field-ref_handle  = '0000000001'.
      ls_input_field_names-fieldname = 'DISPLAY_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'KIND_OF_ENTRY'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'NO_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_FCT'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_NO'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      INSERT ls_input_field  INTO TABLE  gt_input_fields.
      clear ls_input_field-field_names[].
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
      EXPORTING
    *    it_schedlin_i   = gt_schedlin_i_com
        it_partner      = gt_partner
    *    it_sales        = gt_sales
    *      it_orgman       = gt_orgman
    *      it_appointment  = gt_appointment
    *      it_ordprp_i     = gt_ordprp_i
    *   it_product_i    = gt_product_i
    *      it_activity_i   = gt_activity_i
    *      it_pridoc       = gt_pridoc_com
      CHANGING
        ct_orderadm_h   = gt_orderadm_h
    *   ct_orderadm_i   = gt_orderadm_i
        ct_input_fields = gt_input_fields.
    *      ct_doc_flow     = gt_doc_flow
    *      cv_log_handle   = gv_log_handle.
    Hope it helps u,
    Regards,
    Mon.

  • How best to include a copyright in JavaDoc?

    Hello.
    I am wondering how best to include a copyright notice, standard legal boilerplate, etc. in JavaDocs.
    I realize that many developers include the text directly in a JavaDoc comment (perhaps using a template in their IDE for generating that automatically), but that seems less than ideal to me. Having a long boilerplate takes up a lot of unnecessary space in source files; with several hundred or thousand source files, that can be a big waste. Also, if the notice needs to be changed or updated, than going back to find and edit every instance of the notice can be challenging, even with a global search and replace. What I would like is basically the equivalent of an "include" tag that will include a single copyright notice wherever it appears, but JavaDoc does not appear to have a suitable feature.
    The initial approach I have taken is to define a custom taglet with this ability. I am also playing with a custom annotation for noting copyrighted code as an additional reference to the copyright notice. The basic structure I have so far looks like this, in org.sample.legal:
    - Copyright.java (interface defining a few constants such as default copyright date, default owner, etc. as well as the full default copyright notice)
    - CopyrightAnnotation.java (annotation type for marking code as copyrighted)
    - CopyrightTaglet.java (taglet for adding "@copyright" tags in JavaDoc)
    Here's what the top of CopyrightTaglet looks like, to give a better sense of what it can handle:
    package org.sample.legal;
    import com.sun.tools.doclets.Taglet;
    import com.sun.javadoc.*;
    import java.util.Map;
    * Represents the "@Copyright" tag.  If empty, the default copyright notice
    * will be displayed.
    * <p>This tag can be used in any overview, package, class, or interface
    * {@link com.sun.javadoc.Doc}.  This is not an inline tag.</p>
    * <p>The tag can display a default value, the default value modified with
    * a different copyright date, or a completely custom value.  To display the
    * default value, use "@Copyright" alone.</p>
    * <p>To specify a different date, enter the copyright years separated by
    * dashes (-) or commas (,); optional spaces are allowed.  For example, the
    * following will be recognized as valid dates:</p>
    * <ol>
    * <li>"@Copyright 1999"</li>
    * <li>"@Copyright 1999, 2000"</li>
    * <li>"@Copyright 2001-2003</li>
    * <li>"@Copyright 2001-3, 2005</li>
    * </ol>
    * <p>To display a completely custom value, simply enter whatever text is to be
    * displayed after the "@Copyright" tag.</p>
    * <p>The text is displayed in italics to remind the reader of its
    * importance.</p>
    * @Copyright
    @CopyrightAnnotation
    public class CopyrightTaglet
    implements Copyright, Taglet {
    private static final String NAME   = "Copyright";
    private static final String HEADER = "Copyright:";The "@Copyright" tag by itself produces output (based on the constants in the Copyright interface) like this:
    Copyright:
    Copyright &copy; 2008 by Sample Organization. All rights reserved.
    I have this all working fine, but my main question concerns whether this is a reasonable approach. Is there a better approach to this problem of making a single copy of the copyright text available everywhere? What other approaches are common?
    Thanks for any advice.
    Edited by: Richard.J.Barbalace on Jun 25, 2008 9:16 AM
    Edited by: Richard.J.Barbalace on Jun 25, 2008 9:18 AM
    Edited by: Richard.J.Barbalace on Jun 25, 2008 9:20 AM
    Edited by: Richard.J.Barbalace on Jun 25, 2008 9:22 AM

    Your approach lets you choose which classes, interfaces and members are copyrighted, or apply different copyrights for different parts of the source code. But in many cases (such as the Java API), the entire published API gets the same copyright notice. So we put the notice in the footer of each page:
    -bottom '<font size="-1">Submit
    a bug or feature<br><br>Java is a trademark or registered trademark of Sun Microsystems,
    Inc. in the US and other countries.<br>Copyright 1993-1999 Sun Microsystems, Inc.
    901 San Antonio Road,<br>Palo Alto, California, 94303, U.S.A. All Rights Reserved.</font>' ^
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html#commandlineexample
    -DOug

  • How I can include several sequences in one sequence file?

    I am new for teststand and forgive me if my question seems silly.
    How I can include several sequences in one sequence file? I would like to use " call sequence" in current file.
    thanks a lot for your kind help

    Hey gunking,
    If you'd like to find out more information about our training courses, I'd be happy to speak with you further about what the course contains and locations offered, but it's probably best if we take this off of the forums for further conversation via phone or email.
    Create a new support request at www.ni.com/contact and set the product as TestStand.  You will be directed to myself or another engineer on my team, at which point you can ask for me or just speak with one of my teammates.
    Off the top of my head, I do know that there are a few courses coming up in Austin in the next couple of weeks (I'm teaching one myself), if you're interested in those.  Otherwise, courses are always being added for the future.
    Derrick S.
    Product Manager
    NI DIAdem
    National Instruments

  • Can any one tell me how to change the current row header in FB1LN tcode

    Hi,
    can any one tell me how to change the current row header in FB1LN tcode.
    I want to show input date also in the layout.
    Regards
    Mave

    Hi
    I know two ways:
    - transaction obvu: here you can insert new fields, but only if these fields are included in certain table (like BKPF, BSEG, BSIS.....
    - if your field isn't included in those table, you have to modify the structure RFPOS and manage it in the BTE 1650. After updating RFPOS you have to run the program RFPOSXEXTEND to update the structure RFPOSXEXT.
    Max

  • How do I include pages conditionally

    I have three incolude files in the mail JSP file. It's given one after another without any condition. How do I include them 'conditionally' -- include the one, which some validation fails. For example, if only shipping address validation fails, it should have only val_ship_addr.jsp included, not others.

    i just wanna see clearly your situation.. what exactly you want to achieve? r u trying to have an error message on screen or something else? can u elaborate further ?
    anyways, i have a simple example on how to include conditionally just to give u an idea..this might help you <i hope>:
    so i hav a main screen named main.jsp .... on the left part of the screen list two links that corresponds to various screen . in short the right part of the screen is dynamic, depending on what the user clicks on the left part of screen.
    suppose i have two menu's on the left screen named : My Profile and Change Password
    /**** here is the main.jsp ********/
    <html>
    <head>
    <script language="javascript">
    function toggleScr(formobj){
    document.formobj.submit();
    </script>
    </head>
    <body>
    <%@ include file="misc.html" %>
    <table width="100%">
    <tr>
    <td width="200px">
    <!-- left panel -->
    <%@ include file="LeftPanel.jsp"%>
    </td>
    <td width="350px">
    <!-- main screen this is the dynamic part -->          
    <%
    if(request.getParameter("scr")!=null){
    String screentype=request.getParameter("scr")
    if(screentype.equalsIgnireCase("B")){
    %>
    <%@ include file="Myprofile.jsp"%>
    <%
    }else{
    %>
    <%@ include file="NewPassword.jsp"%>
    <%
    }else{
    // show the default screen
    %>
    </td>
    </tr>
    </table>
    </body>
    </html>
    /*** here is the LeftPanel.jsp ***/
    <table>
    <tr>
    <td>
    My Profile
    </td>
    </tr>
    <tr>
    <td>
    New Password
    </td>
    </tr></table>
    /*** here is the misc.html ****/
    <FORM NAME="myfprofileform" method="post" action="main.jsp">
    <INPUT TYPE="HIDDEN" NAME="scr" VALUE="A"/>
    </FORM>
    <FORM NAME="newpwdform" method="post" action="main.jsp">
    <INPUT TYPE="HIDDEN" NAME="scr" VALUE="B"/>
    </FORM>

  • How do I include 'Edge Web Fonts' into Edge Animate?

    How do I include 'Edge Web Fonts' (not Google Web Fonts) into Edge Animate?

    Have you tried to use google fonts? I have used them and they work for me.
    When you add your font for example:
    Copy paste:
    <link href='http://fonts.googleapis.com/css?family=Finger+Paint' rel='stylesheet' type='text/css'>
    and then for font family.
    'Finger Paint', cursive;
    then select addfont on the addfont screen

  • How do I include a page from web search into an Email?

    I have a HP TouchSmart 610-1147c Desktop computer. running Windows 7 64 bit.  I should have known the answer to this question years ago, but I don't....terrible huh?  Anyway, how do I include a page from a web search that I did into an Email?  Believe it or not, I've never had to do this before, so don't have the faintest idea how to do this.  I have a feeling that it would be sent as an attachment, but how don't know how to do that!!
    I would appreciate any help that anyone would take the time to give me.  I thank you beforehand for having patience with me and my silly question.
    Auntie CC
    This question was solved.
    View Solution.

    Well, the way I would do it is to copy and paste the web address in the email, so the recipient can click on the link and get right to the Web page.
    For example, I just googled "horses," and here is the result of that search:
    http://www.google.com/#hl=en&output=search&sclient=psy-ab&q=horses&oq=horses&aq=f&aqi=g4&aql=&gs_l=h...
    I highlighted the Web address, copied it, and then pasted it in the response.  Same thing can be done into an emial.
    Does that make sense?  Or were you looking for something else?
    GeorgeFN
    GeorgeFN
    I work on behalf of HP.

  • How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate?

    How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate? It should be noted that I also have another effect (an extrude & bevel) applied which does copy over when I paste (or create an SVG and import) into Edge Animate. Any thoughts on why the drop shadow disappears but the extrude & bevel carries over?

    Which version of Illustrator are you using?
    In earlier versions of Illustrator it is not that easy to apply drop shadows with spot colours.
    Another reason why it's always important to tell which version of AI … well …

  • How to display total in ALV Header

    How to display total in ALV Header?

    Hi Venkey,
    As far as your issue is concerned I would like to quote my perception.
    Create a header internal table with title and number of records.
    At the later part of your program you should have found the total number of records ,now assign it to the header internal table and print it.
    For further clarification you can go check this link:
    http://wiki.sdn.sap.com/wiki/display/ABAP/AddHeadertoALVreport
    Thanks
    P.Srikanth

  • How can I change excel column header using Labile.

    Dear Experts,
                          How can i change excel column header using LabVIEW.
    Thanks for any and all help!
    M.S.Sivaraj.
    Sivaraj M.S
    CLD

    As I said in my previous post, column headers in Excel are merely row 1 cells. May be I missing something here, so please be more explicit with your question.
    I guess you are using the Excel Report tools, and you want to modify an existing sheet. From my limited experience with the Excel Report tools, it is not possible to open an existing woorkbook (except as template...), so the answer to your question should be "Forget it"...
    The work around is to use the example I pointed for you before, and either to write the whole new colum headers as a string array, starting in A1, or to write a single string to a given cell in row 1.
    Hope this helps 
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • How can I include my business email fonts on the ipad signature?

    How can I include my business email fonts on the ipad signature?

    It's a lot easier with Photo Manager Pro.
    https://itunes.apple.com/sg/app/photo-manager-pro/id393858562?mt=8

Maybe you are looking for

  • Error while obtaining JCO connection when creating JCO connection

    Hey, im having a problem when creating a JCO connection in the Web Dynpro Content Administrator.  Creating the Modeldata (Application Data Data type) JCO Worked but when creating the JCO for the RFC Metadata (Dictionary Meta data) there is a problem:

  • EDI validation Error: Segment GS(Functional Group Header) at guideline

    Hi, I am working on EDI 272 transaction(inbound). I created ECS file for EDI 272 and validated the EDI 272 data with ECS file in the B2B document editor. Validation was sucess in the B2B document editor when I upload the same ECS file and tested the

  • On 2007 Imac Intel

    After installing Lion on Imac, the color spinning wheel stays on after 1 hour use. Have to manually turn off computer  wait 5 hours to turn back on for another hour use.

  • Unreliable iCloud calendar sync

    The calendar entries are synced to the "cloud", I can see it in the calendar Web-App, but can not get on the mobile devices (iPad & iPhone). The sync takes place after opening the iOS Calendar app, deactivate and activate the calender sync in the iCl

  • Very new to IPOD and iTunes can I listen to a sample of the song.........

    Howdy all. Very new to IPOD and iTunes but can I listen to a sample of any song before I purchase? If not then I can't see myself buying much. Thankyou.