TOC third page problems

Our TOC entries look like this:
Chapter 1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1-1
HOWEVER, if the TOC goes past the second page, they lose the leader dots:
Chapter 99 Florbling the Gromitz     99-1
(No, we don't really have 99 chapters!)
In my vast ignorance, I have no idea how to fix this. In their (presumably less vast) ignorance, neither do my Frame "experts" in-house. I've wandered around menus and Help without making any progress.
I'm running 8.0p266, non-structured.
Thanks in advance for any insight!

What is the Master Page for the initial TOC page?
What is the MP for the third page?
(the 2nd page should be immaterial to the problem)
So, if I do the Format > Page Layout > Master Page Usage thing on the third page of the TOC, I see (faked as text);
Use Master Page:
Right/Left is selected
Apply to:
Current Page (v) is selected
Even (Left) and Odd (Right) are selected
Second page is the same; first is the same except "Custom: First" is selected instead of Right/Left under Use Master Page:.
If the 3rd page is using an MP that differs from the 1st & 2nd pages, what is the layout of that page?
Um...so I assume it's using Odd (Right). How do I tell what the layout of that page is? I go to View/Master Pages, and Right looks the same as Left to me.
With the TOC.fm file open to frame, on page 3, can you hand-type a TOC entry that gets the proper dotted tab leader formatting?
No. On page 2, I can type xyz<tab> and get leader dots; on page 3, no dots (and the tab does nothing visible).
And please confirm that the "xyzzyTOC" paragraph types that are failing  on page 3 are the exact same pgf fmt names that work on p1 and p2.
Yes. That's what I meant about adding entries *earlier* that push entires onto page 3 -- the same entries that looked fine on page 2 are bogus on page 3.

Similar Messages

  • Passing values to between Pages from a PLSQL Procedure in third Page

    Hello,
    I have a form divided into 3 pages. The first Page is used to select Template which is used to call a screen Page 54 and Page 55 (Wizard Based screen).
    From Page 55 (third page) of my application, When I click on Finish Button (Submit Button), a PLSQL Procedure is called which inserts values in 5 to 6 tables on a schema. The Success message include Article &DOCID. successfully Added.
    When I return to the first Page which is Page 24, it displays no value for DOCID.
    Sample Example =
    DECLARE
    DOCID VARCHAR2(30);
    BEGIN
    INSERT INTO SURE_DOCUMENT
    DOCUMENT_ID
    , DOCUMENT_TYPE
    , TITLE
    , STATUS
    , DISTRIBUTION
    , ARCHIVE_REVIEW_DATE
    , CONTENT_TYPE
    , IMPACT
    , SKILL_LEVEL
    , SOURCE
    , SERVER_MIN_VERSION
    , SERVER_MAX_VERSION
    , REFRESH_INTERVAL
    , LAST_REFRESH
    , FOLDER_ID
    , TOPIC_ID
    , NOTE_POSITION
    , OWNING_SITE
    , MODIFY_NUMBER
    , VERSION_STRING
    , ALIAS
    , EXTKEY
    , FORMAT_MODIFIER
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( SURE_DOCUMENT_SEQ.NEXTVAL || '.1'
    , :ARTICLE_TYPE
    , :TITLE
    , :STATUS
    , :DISTRIBUTION
    , SYSDATE
    , 'TEXT/PLAIN'
    , 'LOW'
    , 'NOVICE'
    , 'ADHOC'
    , :RDBMS_MIN_VERSION
    , :RDBMS_MAX_VERSION
    , NULL
    , NULL
    , :FOLDER
    , :TOPIC
    , NULL
    , 1
    , 1
    , NULL
    , NULL
    , NULL
    , NULL
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    COMMIT;
    SELECT SURE_DOCUMENT_SEQ.CURRVAL INTO DOCID FROM DUAL;
    INSERT INTO SURE_DOCUMENT_CONTRIBUTORS
    DOCUMENT_ID
    , SURE_SEQUENCE
    , USER_ID
    , CONTRIBUTION_DATE
    , CONTRIBUTION_ROLE
    , MODIFY_NUMBER
    , REASON
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , 'SKOPPALK.UK'
    , SYSDATE
    , 'Contributing Author'
    , 1
    , 'Contributing Author'
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    INSERT INTO SURE_DOCUMENT_LANGUAGES
    DOCUMENT_ID
    , SURE_SEQUENCE
    , LANGUAGE
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , 'USAENG'
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    INSERT INTO KREW_WORKFLOW
    DOCUMENT_ID
    , PRIORITY
    , OWNER
    , REVIEWER
    , MODERATOR
    , ASSIGNED_DATE
    , DUE_DATE
    , CHECKED_OUT_BY
    , CHECKED_OUT_DATE
    , VERSION_STRING
    , DESCRIPTION
    , AUTHORS
    , COMMENTS
    , UPD_DATE
    , COPYSTATUS
    , COPYDISTRIBUTION
    , COPYFOLDERID
    VALUES
    DOCID
    , 3
    , DECODE(:OWNERS, NULL, 'UNASSIGNED',:OWNERS)
    , DECODE(:REVIEWER, NULL, 'UNASSIGNED',:REVIEWER)
    , DECODE(:MODERATOR, NULL, 'UNASSIGNED',:MODERATOR)
    , SYSDATE
    , SYSDATE + 7
    , NULL
    , NULL
    , 'SKOPPALK.UK'
    , :TITLE
    , :AUTHORS
    , :COMMENTS
    , SYSDATE
    , :STATUS
    , :DISTRIBUTION
    , :FOLDER
    INSERT INTO SURE_DOCUMENT_KEYWORDS
    DOCUMENT_ID
    , SURE_SEQUENCE
    , KEYWORD_TYPE
    , KEYWORD
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , 'NOTE'
    , :KEYWORDS
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    INSERT INTO SURE_DOCUMENT_REFERENCES
    DOCUMENT_ID
    , SURE_SEQUENCE
    , REFERENCE_SOURCE
    , REFERENCE_DOCUMENT_ID
    , REFERENCE_TYPE
    , REFERENCE_DESCRIPTION
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , 'NOTE'
    , DOCID || '.1'
    , 'NOTE'
    , :REFERENCES
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    INSERT INTO SURE_DOCUMENT_PLATFORMS
    DOCUMENT_ID
    , SURE_SEQUENCE
    , PLATFORM_ID
    , MIN_VERSION
    , MAX_VERSION
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , :PLATFORMS
    , NULL
    , NULL
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    INSERT INTO SURE_DOCUMENT_PRODUCTS
    DOCUMENT_ID
    , SURE_SEQUENCE
    , PRODUCT_ID
    , COMPONENT_ID
    , MIN_VERSION
    , MAX_VERSION
    , DELETED
    , CREATED_BY
    , CREATED_DATE
    , CREATED_SITE
    , UPDATED_BY
    , UPDATED_DATE
    , UPDATED_SITE
    VALUES
    ( DOCID
    , 1
    , :PRODUCTS
    , NULL
    , NULL
    , NULL
    , 'N'
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    , HTMLDB_CUSTOM_AUTH.GET_USER
    , SYSDATE
    , 1
    COMMIT;
    END;
    The Success message is as follows:
    Article &DOCID. Created/Updated Successfully

    Shivanand,
    There's no need to post that much code when you could create a very short test case that demonstrates only the problem you are having.
    You're using &NAME. notation on something that isn't a page or application item. You can't reference PL/SQL variables that way (or any other way) outside the PL/SQL scope. For your situation, you could create a page item named P55_DOCID and assign it a value in the PL/SQL process (:P55_DOCID := DOCID;), then reference &P55_DOCID. in HTML areas like the success message.
    Scott

  • I have rearranged all icons on the second and third pages to have a just a photo on my home, but if i switch off the iphone when i restarted it all the icons come back in the old position on the home and second page. I have ios5.

    I have rearranged all icons on the second and third pages to have a just a photo on my home, but if i switch off the iphone when i restarted it all the icons come back in the old position on the home and second page. I have ios5.

    you can suggest it here - http://www.apple.com/feedback/iphone.html
    And it is only a problem if you want a blank first screen.  Personally, it would drive me nuts always having to swipe over one page to get to my apps - the only time I unlock my iPhone is to use it or run an app, so no, I have no need nor desire to have a first screen with no icons at all.
    But, if they'd put it in as an option so people like yourself can also have what they want, that's fine too    So send them your feedback (they actually do listen - iOS 5 includes a number of things people have been asking for on these forums, like being able to delete individual entries from the call history, inproved alerts/notifications, being able to opt out of all the location based data they collect,...).

  • The main window of third page will not display the text element

    Hey, smartform guru,
    I am working on the smartform to print PO data.
    The smartform has first page and next page as usual.
    I created a third page P_TERMS to print the terms and conditions for PO printout.
    I used commend node to assign the page P_TERMS as the "Go to new page" and it did go to the P_TERMS page but the text element will not print in the main window in P_TERMS page.
    The text element will print in the secondary window.Since the terams and conditions are 4 pages long, I expected it to print in the main window, so I do not have to define several extra pages to print them.
    Any idea?
    Thanks in advance!
    Fisher Li

    Hi Fisher,
    Unfortunately, In a smartform, only single main window is continued to all pages even though you can declare windows under each page as main window, but it actually acts as the same window for all pages. It just means that if text from 1st page is overflowed, it will continue to the next page with main window.
    Command line to go to next page will create an extra page but since text is not flowed in main window, it won't print the text element you have included in main window on third page.
    The solution to your problem as I see is that either you include your terms and conditions in the main window of your first page and just before your text element for T&Cs, use Command to go to third page.
    Hope it helps.
    Ravi

  • Third page is not comming in smartform print preview

    Hi Gurus,
                 I have designed the smart  which has three pages first and third pages are constant so they
                dont have any main window but second page is variable so it has one main window
                but the problem is third page  is not comming in print preview though I have given the next page
                as page3 in page2  and also I have tried to create command on page2 and assigned next page
                as page3  and there is no condition so why it is not showing the third page.
                please guide if it is possible and also let me know if not possible.
    Thanks & Regards
    Mani

    Hi Mani
    Page 1 : Next page-->Page 2
    Page 2 : Next page --> Page 2 since it contains main window
    after the main window create the  command node
    go to next page : page 3.
    Page 3: Next page --> Blank.
    Regards,
    Sravanthi

  • TOC update generates additional TOC reference page

    Hello,
    I'm working on documents with embedded table of contents (as a text insert in the document itself). To update the embedded TOC, I choose Special > Table of contents, save and close the TOC file, and then update the text insert. Normally this works without problem.
    However, for one document, with each TOC update an additional "TOC" reference page is generated in the TOC file, and therefore all adjustments (such as paragraph numbering) are lost.
    Every time I recreate my formats on the reference page, i.e. add nothing but <$paranum> to the respective entries, the next TOC update creates an additional reference page named TOC with standard entries.
    I've already deleted the TOC and generated a new file, but I'm having the same problem again each time I update a TOC
    Any suggestions what might be wrong?
    I'm using FM 8.0p277 on Windows XP.
    Thanks a lot in advance.
    Johannes

    Thanks for posting the second part of the story - makes the forum a useful source of information.
    Did you not get an error message about "generated files not updated" when the ToC had unavailable fonts?

  • Creating a TOC in pages

    Can someone help in creating a Table of Contents (TOC) in Pages? I'm new to the Pages world, and am currently creating a document on the iCloud site with Pages. I can't seem to find a link, button, etc for creating a TOC.

    What on page 62 does not apply to a Blank Template? I understand that you are using the Blank, but what I don't think that you understand is that Blank is a Template.
    Is this what you are choosing?

  • Pages ePub export - Can I use TOC for page breaks?

    I want to export a Pages file to ePub. Things work *almost* perfectly, except the page breaks disappear.
    I've read a few other threads, such as this one, that say that Pages uses the *first* style from the TOC to make page breaks. That doesn't work great for me, since I have multiple styles in my TOC that should all be page breaks.
    https://discussions.apple.com/thread/3722549?start=0&tstart=0
    Is there any way to force pages to use multiple styles from the TOC as page breaks, or will I have to enter them manually? Thanks.
    **Edit:** I noticed that the chapters are actually occurring correctly. So I guess what I want is to force the epub to start each chapter on a new page. Is that possible?

    Fair enough.
    I used the word "chapter" because that's what the epub document calls them, but section is a better word. Some headings look like this
    Test 29
    Section I - Logical Reasoning
    Test 30
    Section II - Reading Comprehsion
    Passage I - Wine
    Test 32
    Section I - Reading Comprehension
    Passage I - Wine
    Sometimes the Test # should appear in the TOC ( if it's the first section from that test) and other times it shouldn't. As things stand, I had to remove the Test # from the headings where the Test # doesn't appear in the TOC. Because a new section starts from the line styled to appear in the TOC, I was getting:
    "Test 30
    <section/chapter break>
    Section II - Reading Comprehension"

  • Insert and then show the result and refresh page problem

    hi all,
    I collect the form value and put them into db, and then display this student 's inform out from db including the one we just submit, first I do it on this way
      insertpayment(UserId, FeeType, DuteDate, OfficerReason, OtherReason, CompleteDate,
                            InterviewDate, ApprovalDate,PaymentYear);
                   studentRecords= getFound(UserId);
                     userSession.setAttribute("studentRecords", studentRecords);
                     RequestDispatcher disp;
                   // disp = getServletContext().getRequestDispatcher("/WEB-INF/jsp/   studentRecords= getFound(UserId);");
                     disp = getServletContext().getRequestDispatcher("/showPayment");
                    disp.forward(req, res); then whenever I refresh my showRecords.jsp" I call the insert function. THAT IS HORRIABLE.
    I try to move the studentRecords= getFound(UserId); to my showPayment servlet and then forward the result to showRecords.jsp, but I alwarys get error
    PWC4011: Unable to set request character encoding to UTF-8 from context /report, because request parameters have already been read, or ServletRequest.getReader() has already been called
    How should I handle this kind of problem??

    Karan, thank you for the link, i read a few articles, I only get the sample part part use res.sendRedirect("/myfolder/showPayment"); in my insert servlet and use forward to display the page
    userSession.setAttribute("studentRecords", studentRecords);
                  RequestDispatcher disp;
                  disp = getServletContext().getRequestDispatcher("/WEB-INF/jsp/secure/admin/showRecords.jsp");
                   disp.forward(req, res);   
    this solute the refresh page problem, but bring the new problem I can't use the following way to disable the back button. not the perter solution
    maybe I did not understand PRC more advice!!
    response.setHeader("Cache-Control","no-cache"); //Forces caches to obtain a new copy of the page from the origin server
    response.setHeader("Cache-Control","no-store"); //Directs caches not to store the page under any circumstance
    response.setDateHeader("Expires", 0); //Causes the proxy cache to see the page as "stale"
    response.setHeader("Pragma","no-cache"); //HTTP 1.0 backward compatibility

  • Is it possible to create a ToC on Pages for IOS ?

    Hello
    Is it possible to create a ToC on Pages for IOS ?
    If its not possible its really a must have feature !
    Regards

    Creating a ToC with Pages for iOS doesn't seem possible. To let the good folks at Apple know how you feel, send your feedback to them:
    http://www.apple.com/feedback/

  • Direct the control to third page from 1st page instead of 2nd page.

    Hello All.
    I have three seeded pages.
    -When i click on *'Add Button'* On the first page, the control goes to 2nd page. When in click on *'Find Button'* on 2nd page, the control goes to 3rd page which is a search page.
    My Question: When i click on Add Button on 1st page, the control should be directed to the *3rd page, the search* instead of the 2nd page.
    How can i achieve it..??
    What shall i write in the extension of the controller.?
    Need an answer urgently.
    Regards

    Hi,
    I understand you are trying to customize a standard page flow instead of A->B->C, you want to make it
    A->C,
    You have to extend the A's Controller and get the handle of the "Add Button" and transfer the page to 3rd page.
    Decompile the 2nd page controller and check what the standard code is doing for the event 'Find Button' click.
    You have to replicate the same.
    But this could give some error, since the third page might expect some parameters which was passed from 2nd page.
    You have to try and check.
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • I have 10 UiWebView to load different charts and maps on an iPad,using UIScrollView to scroll through each page, problem is on loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally,so how to make the scroll smooth?

    I have 8-10 UiWebView's  to load different charts and maps on an iPad, i am using UIScrollView to scroll through each page, problem is while loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally, my query is can i load UiWebView on background and how to make sure the scoll of pages is smooth, even though the loading of UiWebViews may take time.
    Note :i have tried disabled scrolling on webview, so when i scroll on the page  the scroll event will be of UiScrollView, so believe no conflict with UiWebView.
    also in ios 6 i read about suppressesIncrementalRendering = True but i want to support ios5, also as UiWebViews are said to be running on main thread by default, i suspect when loading of webViews and when user tries to scroll the page, the main thread is busy, but i want the scroll of the page to be smooth  even though the loading of UiWebViews may take time.

    You will probably get a faster and more accurate answer if
    you repost in the Developers Forum.

  • My solution for cannot turn page problem in ADE

    It seems this problem has been there for a while. I have this problem in ADE 2.0 and 3.0. I solve this problem on my computer today.
    This problem is not a "turnning page" problem but an UI refresh problem, if you turn page, close ADE and reopen it, you will find the page actually turnned,  I guess this problem occurs on a computer which have two display card. On my laptop, a NVIDIA, and an integrated. ADE works fine on NVIDIA and not on the integrated one.
    So Here is my solution: Tell ADE not running on the integrated display card but on NVIDIA. You can do so by using NVIDIA's control panel program. "manage 3D settings" -> "program setting" tab, add ADE, and tell it running on NVIDIA.

    System: Windows 7; graphics (onboard Motherboard) Intel(R) HD Graphics 4600 Properties.
    I have the same problem:
    ADE does not turn page *unless* I resize the ADE window after turning the page.  After resizing the ADE window, the page will turn.
    I don't have multiple displays.  I don't know how to adjust my display setting to facilitate ADE.  Still looking for a solution... If you find a solution or a better product, let us know.

  • FM TOC reference page generation

    Is there a way to force FM to use a document's modified TOC reference page instead of it generating a second one when creating a separate TOC file?

    Wes Edmonds wrote:
    I modified the TOC reference page of the document I completed as follows:
    openXmlElementId <$relfilename>:<$UniqueXmlElementId> <$RelativeXmlElementId>
    openObjectId <$relfilename>:<$ObjectType> <$ObjectId>
    <$elemtextonly>
           <$paranum>\t<$elemtextonly> ......................................................................<$pagenum >
                <$paranum>\t<$elemtextonly> .................................................................<$pagenum>
                        <$paranum>\t<$elemtextonly> .........................................................<$pagenum>
                        <$paranum>\t<$elemtextonly> .........................................................<$pagenum>
    Each of these lines is formatted with its own Paragraph Tag (ie. Pgblk()TOC, Task()TOC, etc) which are Tahoma, 10pt.
    When I generate a standalone TOC clicking [Special] >Table of Contents... > [Yes] (Do you want to creat a standalone TOC for this doc?), the new standalone TOC will not look like I expect and in the reference pages and I will have a second TOC ref page named "TOC1" with the following code:
    <$elemtextonly> <$pagenum>
    openXmlElementId <$relfilename>:<$UniqueXmlElementId> <$RelativeXmlElementId>
    openObjectId <$relfilename>:<$ObjectType> <$ObjectId>
    <$elemtextonly> <$pagenum>
    <$elemtextonly> <$pagenum>
    <$elemtextonly> <$pagenum>
    <$elemtextonly> <$pagenum>
    Each of these lines are in default Times New Roman font, 12pt and seems to be what FM uses to generate the TOC instead of my modified reference page from the original doc. 
    I remember having this happen a few years ago, probably in FrameMaker 7.x, perhaps 6.x. I can't remember ever finding its cause, or a remedy that avoids it. A quick Google search today didn't reveal the secret fix, though, I didn't dig deep into the results.
    My solution was to import the TOC formats into the TOC<#> from either the document set's TOC template, or the main TOC document itself. This should fix the page layouts and text properties, but will not change the page references, etc., so the reformatted TOC should be what you expect.
    An alternate approach is to create a copy of the TOC template in the directory where the chapter TOC will be created, name and save it to the TOC<#> that you anticipate will be generated. IIRC, generating the chapter TOC will fill the anticipated TOC with correct information formatted correctly.
    Another option is to create a container TOC document with the correct formatting and import the generated TOC into it - this depends on having a version of FrameMaker that can import FM files.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • TOC entry sequence problem

    I may be missing something very obvious structurally, but the problem is that I am generating a table of contents based on a TOPIC TITLE on a page and the SUBHEADERS on the pages. Both have styles identified, but when generating the TOC, the SUBHEADERS from the "next" pages appear under the TOPIC TITLES of the previous pages. For example, if I have SUBHEADER "A" and "B" listed on the page with TOPIC TITLE "TB". In the generated TOC, SUBHEADERS "A" and "B" are listed under TOPIC TITLE "TA" which is the page prior to "TB". Don't get it and can't seem to solve it. If anyone can shed some light, please advise.
    Thanks,
    John

    Pix attached. It appears that the subheadings (Flame Bullet style) are appearing on the pages previous to each title in the TOC.
    Thank you.

Maybe you are looking for