Autonumbering and variables

I typeset text books that use section numbering in their subheadings. Previously we've worked in Framemaker and are now converting over to InDesign. In Framemaker, we would use autonumbering in the paragraph styles for the subheads. We were able to have the subhead section numbering appear in the upper corners of the page by working with Framemaker's variable settings.
Now that we're using InDesign, we've tried to fix this problem by creating nested styles within the subheads. This doesn't seem to work when we apply the autonumbering in the paragraph styles, and only works when actual text is present.

I'm not sure if the commercial In-Tools.com's Power Headers InDesign plug-in  can capture the auto-number of an InDesign numbered-list paragraph style, so it could be worth your investigating here: http://in-tools.com/products/plugins/power-headers/
Note the suggestion on that page: "For more information on what can be accomplished with Power Headers, please check out the forum here."
You can also contact the folks from the Contact Us link with your specific questions.
And, you might want to test the downloadable trial version in your documents.
Please post what you learn.
And though it's truly a wish with no guarantee of being granted, consider adding your voice for the ability for running header text variables to capture list auto-numbers, with a formal feature request here: Wishform.
HTH
Regards,
Peter
Peter Gold
KnowHow ProServices
Joel Cherney wrote:
Yeah, this one is tough. More and more I think about revisiting Frame (I haven't used it since version 6, I think) for situations just like this. I can just guess from the treatise & answer-book structure that you're dealing with long documents and want as much of this as possible to happen without user intervention. The TOC tool and the cross-references tool both pick up numbered lists, but it seems that text variables do not. So it must be doable for InDesign CS n+1, but a feature request doesn't carry much weight, especially if you are already midstream in conversion to ID.

Similar Messages

  • Pre-planning autonumbering and variables

    Today's question, sorry for the length.  ;-) 
    Recap: Former user of FM 5 or 6 years ago, now using/learning FM 11 and trying to remember a very rusty/weak skillset.
    I have read what I can find on Chapter numbering and variables (FM 9 help files and a few very general blog articles), but I never used either(autonumbering or variables) more than very simplistically in the past. I am trying to design as much structure up front as this is a pilot project that will morph a lot over time. I would appreciate input on whether I am approaching this correctly or if there is a BKM somewhere on how best to design this with concrete examples that would help me with the correct syntax for variable names.
    I am formating a new school curriculum from a series (hundreds) of individual Word docs (with nightmare formatting rife with inconsistencies). Each Word doc includes (in a single file) the Lesson Plan, between 3 and 10 Objectives and then each Objective may have zero to n classroom activities and/or zero to n physical skills (P.E activities which the gym teacher may handle instead and so want to rip out a page with only those physical skills.) Already I am getting emails that say move Lesson 3 plan to be Lesson 5 and reorder Activities 1-4 thus.
    I would like to make this as easy as possible for future formatting (though the SMEs will continue writing content in Word) by using variables and autonumbering so that I can just drag files around and know that they are re-numbered correctly, but I have only minimal experience with this kind of design in FM. In order to be sure that the numbering stays consistent and I don't have to enter it every time myself, I think I need to create each of those categories pulling them out into separate documents and then contain each of those in its own "book."  So each level is actually a book because that is the only way to keep the autonumbering flowing?
    Course (book)
         Cover (document)
         Legalese (document)
         Course Intro (document)
         TOC
            Lesson Plan 1 (book)
                   Body Text (document)
                        Objective 1  (book)
                              Body Text (document)
                                  Activity 1 (document)
                                  Activity n (document)
                                   Physical Skill 1 (document)
                                   Physical Skill n (document)
                        Objective n (book)
                             Body Text (document)
                                  Activity 1 (document)
                                  Activity n (document)
                                  Physical Skill 1 (document)
                                  Physical Skill n (document)
            Lesson Plan n (book)
                  Body Text (document)
                        Objective 1  (book)
                             Body Text (document)
                                  Activity 1 (document)
                                  Activity n (document)
                                  Physical Skill 1 (document)
                                  Physical Skill n (document)
                        Objective n (book)
                             Body Text (document)
                                  Activity 1 (document)
                                  Activity n (document)
                                  Physical Skill 1 (document)
                                  Physical Skill n (document)
             Index
            Glossary
    Then I can create a Master Page for each type of book and document (embedding the graphics that repeat) and apply the autonumbering in each book and the correct name of each thing in the footer. Most (but not all) of these categories have a unique name/title, or I will give them one as I go. Can I use system variables for all of this or should I be creating local user variables in each level?  I guess what I am asking is: is there a way to describe all of this in one place or is this something I need to do in each document? That goes to the proper syntax of the variables (would that be <chaptername> in each doc?) and then I assume I can create hyperlinks or cross-references (not sure which yet) in, say, the body text of the Lesson Plan. The goal for output of this project is printed manuals, on-line digital content, Kindle books, iPad books and then a Captivate training course. FYI, I need to create a high-res version for the digital formats and a low res one for teacher who will be photocopying things like the worksheets that would be 4 color digitally but black and white for their printing purposes, so I am planning on using conditional build tags for that purpose.
    If you read all this and have time to give me some feedback and assistance, thank you very much.
    -Laurie

    I have been looking for FM books for a month now, but the little I did find seemed so ancient or poorly reviewed. I wish they had the FM11 book available that is listed in their Book dropdown, but I went ahead and bought the FM 8 pdf based on your recommendation. I will go off and read with my morning coffee for a bit and check back later to see if anyone else has some input for me.
    Thanks Jeff!

  • Difference between Temp table and Variable table and which one is better performance wise?

    Hello,
    Anyone could you explain What is difference between Temp Table (#, ##) and Variable table (DECLARE @V TABLE (EMP_ID INT)) ?
    Which one is recommended to use for better performance?
    also Is it possible to create CLUSTER and NONCLUSTER Index on Variable table?
    In my case: 1-2 days transactional data are more than 3-4 Millions. I tried using both # and table variable and found table variable is faster.
    Is that Table variable using Memory or Disk space?
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Check following link to see differences b/w TempTable & TableVariable: http://sqlwithmanoj.com/2010/05/15/temporary-tables-vs-table-variables/
    TempTables & TableVariables both use memory & tempDB in similar manner, check this blog post: http://sqlwithmanoj.com/2010/07/20/table-variables-are-not-stored-in-memory-but-in-tempdb/
    Performance wise if you are dealing with millions of records then TempTable is ideal, as you can create explicit indexes on top of them. But if there are less records then TableVariables are good suited.
    On Tables Variable explicit index are not allowed, if you define a PK column, then a Clustered Index will be created automatically.
    But it also depends upon specific scenarios you are dealing with , can you share it?
    ~manoj | email: http://scr.im/m22g
    http://sqlwithmanoj.wordpress.com
    MCCA 2011 | My FB Page

  • Fixed and Variable Breakup of Actual Cost

    We have implemented Material ledger and also activated actual cost component split. We are getting the actual product cost at month end. In the costing cockpit we get the Peiodic unit price(Actual cost) as well as std price of the material. But In costing cockpit we are not able to get the breakup of Fixed and variable. Whereas we are getting Fixed and varible breakup when we check cost component report in ckm3. But there, we can see individual material wise fixed and varibale breakup.
    Can anybody help me so that I can see the Actual Fixed and variable cost for all the products at a time?
    With regards
    Mukesh Poddar

    Fixed price, is the fixed costs - I usually see it in relation to Overhead..
    Fixed costs remain, whether you manufacutre or not.
    Say you are deciding whether to out-source an assembly,  If you outsource, VARIABLE cost will be saved, Material, labor for that assembly, Overhead representing fringes for that labor, the electricity to run that specific machine.  However, you will still have fixed costs of: Management Salary (although some of that can be variable); insurance on the building; heating and cooling for the building; realestate taxes.
    If the cost to make "in house" is 150 each and the vendor is going to charge you 100, thi is only a true saving if your fixed costs are less than 50.
    SAP allows you to separate fixed and variable costs so that you do make/buy analysis, budgeting, etc
    Hope this helps
    Edited by: Althea Madigan on May 12, 2010 2:11 PM

  • SOAP Use Adapter-Specific Message Properties and Variable Transport Binding

    Hi Friends,
       I am new to use to Soap Adapter. Please help me out bellow doubts.
       1.When you use Use Adapter-Specific Message Properties and Variable Transport Binding .
       2. Where exactly  we r using below parameters.
    Remote User : (technical name: SRemoteUser )
    Remote Host : (technical name: SRemoteHost )
    SOAP Action (technical name: SHeaderSOAPACTION )
    To transfer further header fields, set the relevant indicator. You can then store the following attributes and their values in the XI message header:
    Variable Header : (technical name: XHeaderName1 )
    Variable Header : (technical name: XHeaderName2 )
    Variable Header : (technical name: XHeaderName3 )
    Thanks&Regards
    G.Bhanuprakash

    Hi,
       1.When you use Use Adapter-Specific Message Properties and Variable Transport Binding .
    SAP Help says both are needed to be checked when you want to process adapter attributes
    Configuring the Receiver SOAP Adapter - SAP NetWeaver Exchange Infrastructure - SAP Library
    These attributes can be get/set using dynamic configuration and their technical names are what you have pasted:
    Remote User : (technical name: SRemoteUser )
    Remote Host : (technical name: SRemoteHost )
    SOAP Action (technical name: SHeaderSOAPACTION )
    To transfer further header fields, set the relevant indicator. You can then store the following attributes and their values in the XI message header:
    Variable Header : (technical name: XHeaderName1 )
    Variable Header : (technical name: XHeaderName2 )
    Variable Header : (technical name: XHeaderName3 )
    Remote User - the username used to send a message to the adapter engine using SOAP
    Remote Host - hostname which the remote user used
    SOAP Action - SOAP Action of the XI webservice (sender) / SOAP Action of the receiver webservice
    Variable Headers are additional key-value pairs in the HTTP Header that could be accessed in the XI Header using dynamic configuration. The limit is only three though.
    Regards,
    Mark

  • Budget Report to show the fixed and variable split for Materials

    Hello Gurus,
    Could you tell me if there is a budget standards report that will show the fixed and variable split for Materials? Example: Labor, Equip., QC and Overheads? 
    I need it for the correctly rolled-up 'final material number' step.  The report that does this now (without fixed and var split) is the Indented BOM Comparison (sret - cost mgmt-product costing - cost mgmt-customized reports - cost estimate comparison - costed multilevel compare rpt - Indented BOM Comparison).
    Thanks,
    Jefferson

    one simple way is in your final itab declare a slno type i field
    data : begin of itab occurs 0,
    slno type i,
    <other fields>
    end of itab.
    after filling the data in itab.
    loop at itab.
    itab-slno = sy-tabix.
    modify itab.
    endloop.
    in fieldcatalog also you have to define that slno field as the first column.
    but it will change its order if you are sorting the output or filtering the output.
    regards
    shiba dutta

  • How to put the column name and variable value in the alert message.

    Dear,
    how can i put the column name and variable value in the alert message text. i want to display an alert which tell the user about the empty textboxes. that these textboxes must be filled.
    Regards:
    Muhammad Nadeem
    CHIMERA PVT. LTD.
    LAHORE
    [email protected]

    Hello,
    The name of the item that fires the current trigger is stored in the :SYSTEM.TRIGGER_ITEM system variable.
    The value contained in this item can be retrived with the Name_In() built-in
    value := Name_In( 'SYSTEM.TRIGGER_ITEM') ;
    LC$Msg := 'The item ' || :SYSTEM.TRIGGER_ITEM || ' must be entered' ;
    Set_Alert_Property('my_alert_box', ALERT_MESSAGE_TEXT, LC$Msg ) ;
    Ok := Show_Alert( 'my_alert_box' ) ;
    ...Francois

  • Overview report cost estimate (fix and variable)

    Hello
    anybody knows a overview report  where i can see for the current valid cost estimates
    per material
    costs splitt between fix and variable costs
    Alternatively it would be sufficient if this is just shown for a costing run
    In CK40N and all other reports i know i have the complete costs but to see details an extra click to the between fix and variable costs is needed and i can not extract to excel.
    Or is the only option an query on KEKO,KEPH, CKIS?
    Cheers
    Tim

    Hello
    @Sachin: Thanks for the report but the output is not that good - but helpful
    @Eric: Thanks this report solved my problem )
    Cheers
    Tim

  • Product costing - Fixed and variable cost.

    HI,
    I like to know how the cost is divided into fixed and variable at the cost compent level.
    as there is only one setting available at Define Cost Component Structure.
    Kindly let me know how this is done and possible forward the Product costing document and setting.
    my e-mail :[email protected]
    With Regards
    Krishna Singareddy
    Edited by: krishna singareddy on Feb 26, 2008 8:26 PM
    Edited by: krishna singareddy on Feb 26, 2008 8:27 PM

    Hi,  FICO MOH ,
    Do u have any logic if a coast element has 100 how do u divide it among the fixed and variable.
    what is the persentage or based on what it is defined .
    can u put some example pls
    with regards
    krishna

  • Material standard and variable price

    Hi all,
    I've been ask to create a report that shows the variable and standard price of the material for the current month and compare this with the price of a month that they get to choose, and if they don't choose a month to compare it with then I should show the price of that material for every month of the year.
    My question is, where can I find this info in SAP. I know that in MM03 I see the standard and variable price of the month and the previous month, but that's about it.
    where can I find this historical info of prices for material?
    thanks in advanced,
    Fidel Gregorio Peralta.

    Hi!
    You can find current prices in table MBEW. Field VPRSV says, if you find moving avg. in column VERPR or the standard price in STPRS. Currency is company code currency.
    In table MBEWH you find historical values - which are only inserted in case of price changes - so missing periods have same value as last entry before.
    Regards,
    Christian

  • Tables for Fiels Fixed Value and Variable Value

    Hi,
    Can any one tell me where the actual fixed and variable costs are stored in which table and also the planned costs. I have checked it, but it is showing RKPLN as data structure. We are doing development report where in standard Cost Center Report we need to have break up of fixed and variable cost. Please guide me where exactly these fields are stored in which table. its very urgent.

    Hi,
    In regard to the tables for planned data please do a search of the forum as this question has already been asked a few times. E.g. here:
    CO PLANNING TABLES
    In regard to fixed / variable actual costs: these are not stored in separate tables. If a posting contains fixed and variable portions, for example postings resulting from splitting (KSS2), then the fixed portion is stored in the COEP- WKFBTR (line items) and COSS-WKF*  fields (summary items).  Please observe SAP note 192107 on this issue.
    Regards
    Karl

  • Fixed and variable cost component break up in PCA

    Hi,
    Is it possible to get fixed and variable cost component break up and contribution report in PCA at each product group level and lower level of node. I think this requires development. As my client requires the report to have cost break up into fixed and variable in PCA at each line item level. Can anyone solve this

    Hello
    You can get the report by using the  report painter, no development will be required.
    Regards
    Madhav

  • What exactly is the diff between main window and variable window

    what exactly is the diff between main window and variable window in SAP script?

    hi,
    MAIN WINDOW :- In a main window you display text and data, which can cover several pages (flow text). As soon as a main window is completely filled with text and data, the system continues displaying the text in the main window of the next page. It automatically triggers the page break.
    You can define only have one window in a form as main window.
    The main window must have the same width on each page, but can differ in height.
    A page without main window must not call itself as next page, since this would trigger an endless loop. In such a case, the system automatically terminates after three pages.
    VARIABLE WINDOW :- The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different form pages.
    As far as the processing of the window contents is concerned, the system currently treats constant and variable windows alike. The only difference is that constant windows have the same size throughout the form.
    hope this will be useful.
    If useful then reward points.
    with regards,
    Syed

  • Transporting Queries and Variables from QA to DEV

    Hi gurus,
    Is there a way I can transport my query and variables(query components) back to DEV from QA,cos one of the variable that I am using started having a problem in DEV and can't seem to be able to fix it .
    You can check the problem question here
    Problems with a Query
    Thanks

    If you have access you can bundle the report in QA the same way as in Dev.  This is assuming you have a package set up there and basis will probably have to manually move it to the queue and import it.  This can be risky to do.

  • Illustrator Data Sets and Variables Help Please

    Hi, how's everyone doing?  I need a little help with Data Sets and Variables, or at least i believe that's what i need help with.  Ultimately i am trying to run an action on a batch of files. 
    I have an eps file with two images placed side by side.  They are the same image.  I am trying to replace both images and save the file accordingly.  Trying to make this happen using a bunch of files.  All the files can be in one folder and will be the same size. 
    I hope this make sense and what i need done is doable.
    Any help or advise would be greatly appreciated.
    Thanks in advance.

    Not sure a I read you correctly but if I understand you
    what you have to do is make the first two images as dynamic variables using the variable panel and save it as a data set
    then replace those two images and save those as a data set
    So now you have data set one and two.
    You can save that as an variable library (xml)and that can be loaded into other documents.
    The question is can it be actioned?
    It can be scripted and do you want the same two images to replace the same two image in each document.
    I think you really have to tell us more.

Maybe you are looking for

  • How to Get a list of pending deferred tasks

    Hi all there is a bunch of unfinished threads here asking how to get a list/report of deferred tasks that are associated with user objects and scheduled for future execution. I need this list and I can't find out how to get it anyway. I don't care if

  • Wrong password while updating to IOS 7.1.2

    Hello everyone, So on the day it has happened it was all ok in the morning, I put in my password and the iPad did unblock. I did some stuff on the internet and then I saw a suggestion to update to a new IOS 7.1.2. I clicked on the update button and t

  • Copy-Paste From Other Apps (like PPT 2004) Into CS5 Broken ? -  OS 10.6.3

    Hi, New Mac, so to avoid problems went for the new post-Snow Leopard Photoshop CS5. Oops. Copy-Paste From Other Apps Into CS5 Pasting images/photos from Powerpoint 2004 to CS5, I experienced the exact problem posted slightly off topic by james norrin

  • Reading Attributes from same context node of different attributes

    Hi, I  want read Attributes from same context nodes of diifrent attributes. I have attribute A and B of same node, want to get read value from  atrribute A into B. Regards, Brahmaji

  • Complete History of a message transport from sender to the reciever.

    Hi, we had a previous issue of queues getting stuck, and we have scheduled the report 'RSQIWKEX' to reprocess them at regular intervals, and now we have the queues running smoothly. But Our client wants us to get to the bottom of the topic as to why