How to continue tabbing to a second page

I have a form with fields that continue to a second page. The field numbers start over from 1 on the second page, so tabbing doesn't work correctly.

Thank you so much, George. The link to the form is https://workspaces.acrobat.com/?d=ecE3Wja64wN9lQ5wQQTCeA. This is the first time I've used acrobat.com, so I hope I've done it correclty.
Ken

Similar Messages

  • How can I to dissapear the second page when I select a radio buttom YES or NO.

    I want the second page to disappears when I select radio buttom YES or NO.
    If I select YES, the second page continues, but if I press NO, the second page should dissapears, including the footer of the Master Page.
    Please let me know on how to do this, thank you!
    Alexander

    Thank you MTremblay-Savard, I will try to figured out the exact syntax for this one.
    I really appreciated your help!

  • Problem in Continuous check printing from second page in F-58

    Hi ,
    I am using T code F-58 to trigger cheques. I have made a Z* of the standard script F110_PRENUM_CHCK as I just require the Payee name, date, amount in digits and amount in words to be printed on the cheque.I am using the continuous stationary for the cheque . I am using EPSONLQ1150II DOT Matrix printer.
    The cheque dimensions are ; width:202 MM and Height 94 MM excluding the dots on either side.
    I have created a z page format with the same dimensions ,
    also created format type with same name and for device type SWIN - Windows printing via SAPlpd
    z format is linked.
    Also in local system , i defined z page dimensions in server properties
    and selected printing preferences as this z page size .
    Issue :
    When i am trying to take print , check is printing properly in first page for spool 1 .
    If again when trying to print 2nd spool , check is not printing properly in second page check.
    It is printing 2mm down , for 3 rd page further printing downwards.
    As this is pre printed stationary data is not lying correctly from 2 nd page onwards.
    kindly give me any suggestions how to rectify this.
    Thanks & regards,
    Hari priya.

    Issue is not resolved.
    kindly give me any suggestions..
    In SWIN - Windows printing via SAPlpd device type , for DINA4
    Printer initialization :  # no action.
    End of page is having \f
    End of line is having \n
    Reset after exit is having # sapwin x_paper
    Cover page is : # no title page 
    all are in green.
    Same thing i included for MY z page format . But still it is printing same as mentioned above.
    Kindly suggest how to write initialization for z page format for SWIN device type. 
    thanks & regards,
    Hari priya
    Edited by: Hari  Priya on Apr 25, 2011 9:16 AM
    Edited by: Hari  Priya on Apr 25, 2011 11:57 AM

  • Cross-Tab Starting in Second Page

    Crystal 11
    I created a cross tab report that results in a single grid that is sometimes longer than one page. When it is less than one page, the cross-tab grid begins on page one. But when it is greater than one page, it leaves the first page blank and starts on the second page. How do I make it start on the First page regardless?
    I removed the "keep together" in the section expert and I was told about a "Keep Object Together" in the Cross tab expert but I did not find it in there but I did find a "keep columns together". But none of that fix it.
    Help?
    Thanks.

    Did you check whether the New Page Before check box is selected? If this is selected it adds an extra page.
    Well, 'Keep Objects Together' can be found by righ clicking on the CrossTab and selecting Format CrossTab from the context menu.You can also select an object inside the CrossTab i.e Row/Column and right click and select 'Format Object' --> Common tab -->Somewhere down the screen you will see 'Keep Objects Together'
    Hope this helps!

  • How to set the header for second page

    Hello all,
    I'm trying to set different header for first page and page number should starts from second page.
    Below is the sample code to set the header for each and every page.
    DECLARE
    hApplication OLE2.OBJ_TYPE;
    hWindow OLE2.OBJ_TYPE;
    hPane OLE2.OBJ_TYPE;
    hView OLE2.OBJ_TYPE;
    hDocuments OLE2.OBJ_TYPE;
    hDocument OLE2.OBJ_TYPE;
    hSelection OLE2.OBJ_TYPE;
    hParagraphFormat OLE2.OBJ_TYPE;
    hRange OLE2.OBJ_TYPE;
    hFields OLE2.OBJ_TYPE;
    hFont OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    wdAlignParagraphLeft CONSTANT number(3) := 0;
    wdAlignParagraphCenter CONSTANT number(3) := 1;
    wdAlignParagraphRight CONSTANT number(3) := 2;
    wdSeekCurrentPageHeader CONSTANT number(3) := 9;
    wdSeekCurrentPageFooter CONSTANT number(3) := 10;
    wdSeekMainDocument CONSTANT number(3) := 0;
    wdFieldPage CONSTANT number(3) := 33;
    wdFieldNumPages CONSTANT number(3) := 26;
    wdPageBreak CONSTANT number(3) := 7;
    wdStory CONSTANT number(3) := 6;
    myTab CONSTANT varchar2(1) := chr(9);
    myBlue CONSTANT number(8) := 16711680; --FF0000
    myGreen CONSTANT number(8) := 65280; --00FF00
    myRed CONSTANT number(8) := 255; --0000FF
    myDkGreen CONSTANT number(8) := 32768; --008000
    myBlack CONSTANT number(8) := 0; --000000
    myText varchar2(2000);
    BEGIN
    hApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(hApplication, 'Visible', 1);
    hDocuments := OLE2.GET_OBJ_PROPERTY(hApplication, 'Documents');
    hDocument := OLE2.INVOKE_OBJ(hDocuments, 'Add');
    -------- Create Header and Footer --------
    hWindow := OLE2.GET_OBJ_PROPERTY(hApplication, 'ActiveWindow');
    hPane := OLE2.GET_OBJ_PROPERTY(hWindow, 'ActivePane' );
    hView := OLE2.GET_OBJ_PROPERTY(hPane, 'View' );
    ---- Header Section ---
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageHeader);
    hSelection := OLE2.GET_OBJ_PROPERTY(hApplication, 'Selection');
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Times New Roman');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyBlue );
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'This is a');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    OLE2.SET_PROPERTY(hFont, 'Size', 16);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyDkGreen );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Test Header');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- Footer Section ----
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageFooter);
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    hFields := OLE2.GET_OBJ_PROPERTY(hSelection, 'Fields');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Page ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldPage);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, ' of ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldNumPages);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hRange);
    OLE2.RELEASE_OBJ(hFields);
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekMainDocument);
    OLE2.RELEASE_OBJ(hView);
    OLE2.RELEASE_OBJ(hPane);
    OLE2.RELEASE_OBJ(hWindow);
    -------- Insert Text --------
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Arial');
    OLE2.SET_PROPERTY(hFont, 'Size', 12);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE );
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText);
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myRed);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'first ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdPageBreak);
    OLE2.INVOKE(hSelection, 'InsertBreak', args);
    OLE2.DESTROY_ARGLIST(args);
    ----page 2
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText );
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlue);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'second ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- go to the top of the first page
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdStory);
    OLE2.INVOKE(hSelection, 'HomeKey', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hFont);
    OLE2.RELEASE_OBJ(hSelection);
    OLE2.RELEASE_OBJ(hDocument);
    OLE2.RELEASE_OBJ(hDocuments);
    OLE2.RELEASE_OBJ(hApplication);
    END;
    Please help me out
    Thanks,
    Bhavana

    Click on --
    Edit link for Page> Click "Edit Default" link on Banner >
    Under the "Banner Links"
    provide value something like this:
    Label = Help
    URL = /pls/portal30/docs/myhelp.html
    Icon = U can upload any icon here.
    For Application Components = See the Second Last tab on "Edit Component".
    Thanx,
    Chetan.

  • How to get data from a second page?

    Hi guys,
    I have the first page, where I have a button, which will navigate to the second page to let user make some choices.
    After the user makes the choices, user will click a button to get back.
    How can I pass the choices back to the first page?
    Regards,
    Aaron.

    Hi Aaron,
    you can use the EventBus for the same.
    1) publish the event bus on click of the button ( the event f which navigates back to the earlier page)
    2) in the publish of this event bus, pass all the data which you have captured / which has been clicked.
    3) subscribe the eventBus in the App.Controller page ( assuming that you have created an app.view in which you have defined the sap.m.App() , to take care of all the pages to be added into the app).
    4) the handler function of this subscribe, will navigate you to the page required, along with the whole set of data you have passed in the publish of event bus.
    5) use onBeforeShow(oEvent) hook method in the view, which is being finally routed to.
    all the data passed from the previous view will be accessible here via : oEvent.data.dataPassedFromPreviousView
    Note : dataPassedFromPreviousView, assuming is to be the object in which u have set the data in the publish.
    Hope it helps.
    Regards,
    Viren Gupta

  • How do I create a automatic second page with different layout settings?

    Hi there,
    I want to create a business letter template with a different second page. I already managed to create a different layout on page nr two, but
    whenever I write a letter with this template and I reach the end of page one, pages creates a thrid page in between my page nr one and nr two with a mixture of the layout of template page nr two and the footer of page nr one.
    I want pages to take my template page nr two (with different header and footer) as second page instead of creating one itself.
    If I don't need a second page - because my letter is to short - I should not have to delete a second page. It simply should not be there...
    Thanks for Help!
    G4's and 12" PB   Mac OS X (10.4.6)  

    Hello Stefan,
    you achieve this with a little trick. Create your letter and set the layout for the first and the second page by inserting a placeholder text. This placeholder text should fill the first page and the top of the second page, so both pages are build in one section. When the entire letter is layouted well, select the placeholder text and than save the letter as a template.
    Now every time you open this template, you only have to insert the main text (replace the placeholder text with real content), and the second page disappears until the main text overflows the borders of the first page. Than you will get the second page again with the layout you have created for it.
    I hope this will work for you like it works fine for me.

  • How do I get to the second page of a table of contents?

    I have purchased several books that are long enough that their interactive tables of contents require more than one page. I have not been able to figure out how to get to the second or subsequent pages of the table of contents. Tapping or swiping the right side of the page does not advance the page as it does within the book itself, and it does not scroll down as though it were a long one-page list. Tapping on the table of contents icon again does not advance to the next page either. How do I change pages of a table of contents to select a chapter or book beyond the first page of the contents list? This is not addressed in the User's Manual.

    No, sorry.

  • How to continue notes on a 2nd page

    How do I do a multi-line text field that will continue to a 2nd page ? either a predefined (blank) 2nd page or one that is created when text goes beyond the page your on ?

    It's not possible to implement this feature smoothly in a PDF file.

  • How do you get a table to flow onto the second page?

    Since upgrading to Yosemite, I cannot figure out how to get my table to continue on to the second page. If you look at my screenshot, you can see that my table was so big so the whole thing was moved to the next page. I want it to remain on the 1st page and have additional rows continue on to the second page. In the previous version of pages, the column titles would also appear on the second page. Thank you very much for your help.

    Hi F.AD.;
    Go to View > Show Invisibles (Shift+Command+I).
    This will display Paragraph marks (¶) at the end of each paragraph.
    Delete the paragraph mark (¶) that is at the end of the paragraph before the table, i.e. just between the table and the paragraph.
    This will bring the table surely just beneath the paragraph (text), I suppose.
    Hi BePositive26;
    You didn't mention whether my suggestion made easy to solve your problem.
    Regards,

  • Smartform problem how to make second page main window dynamic?

    Hi SAP Community,
    I am facing a problem with designing a smartform. I have taken a table in the main window of the first page, and the main window length varies according to the number of entries in the table. If the records are more than that can be adjusted in the first page then the ramaining records move to the second page main window. After the second page main window i have defined a window which i have marked to get displayed after the main window, but the problem i am facing is that that the second page main window is geting overlapped with the window defined to come after it. Can any one help me with how to control the length of second page main window dynamically.
    Regards,
    Tushar

    Hi,
    Normally, to trigger next page the main window is mandatory.
    However, if the contents of main window are not sufficient enough to move over to next page then the next page would not get trigerred.
    Moreover, please check whether the table of contents in the first page are also existing in the next page otherwise you need to trigger a new page by using a command.
    Also please direct the next page of SECOND page to SECOND itself and check.
    Regards,
    Ram

  • How to print second page as continuation of First Page.

    Hello,
    I am printing a script. I want to print next page as continuation of first page.
    I am printing some contents. It is overflowing the first page, But remaining contents are not appearing at
    Next page.
    How to print that.
    Can any body plz help.

    Hi,
       If the text doesn't fit in page, the it will be printed in the next page.
    If it is one line or two line by increasing the length of the window, you can accomodate.But if it more than than then its not possible to print in the same page.
    If you dont want to get the text truncated then just use PROTECT and ENDPROTECT command in order to protect the text.
    Then the whole text will be printed either in First Page or Second page depending on the amout of text.
    Thanks & Regards,
    Vamsi.

  • How to continue an endnote onto a second page?

    How do I continue an endnote onto a second page? 

         <h:form id="registrationForm">
         <h:panel_grid headerClass="panel-background" footerClass="panel-background">
                   <h:column>                    
                        <h:output_text value="My Applet:"/>
                   </h:column>     
                   <h:column>
                        <f:verbatim escape="false">
                        <jsp:plugin type="applet" code="smartcard.SmartCardApplet"
                             archive="/sharedlib/SmartCardApplet_signed.jar"
                                  name="SmartCardApplet" width="360" height="120">
                        </jsp:plugin>
                        </f:verbatim>
                   </h:column>     
         </h:panel_grid>
         <h:command_button styleClass="style-button" id="register" value="Register"
              action="#{MyBean.register}"/>
         </h:form>
    <table>
    <tbody><tr>
    <td>My Applet:</td>
    </tr>
    <tr>
    <td><OBJECT classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93 name="SmartCardApplet" width="360" height="120" codebase="http://java.sun.com/products/plugin/1.2.2/jinstall-1_2_2-win.cab#Version=1,2,2,0">
    <PARAM name="java_code" value="smartcard.SmartCardApplet">
    <PARAM name="java_archive" value="/sharedlib/SmartCardApplet_signed.jar">
    <PARAM name="type" value="application/x-java-applet;">
    <COMMENT>
    <EMBED type="application/x-java-applet;" name="SmartCardApplet" width="360" height="120" pluginspage="http://java.sun.com/products/plugin/" java_code="smartcard.SmartCardApplet" java_archive="/sharedlib/SmartCardApplet_signed.jar"/>
    <NOEMBED>
    </NOEMBED>
    </COMMENT>
    </OBJECT></td>
    </tr>
    </tbody></table>

  • Tab order moving to second page of form

    I have a two page form. I can set up the tab order perfectly on the first page, but when I try to set up the first object on the second page as the next tab after the last first page tab, it starts back at the first object on page one. Does anyone know how to fix this?

    I use the "Tab Order" toggle under the "View" menu. Thank you so much for your reply!

  • 2 minutes ago I was on a page in the community that had content 2 seconds ago, 1 minute ago etc. Now I can't find it. I see 1 hour ago, 4 hours ago... How do I get back to that page.

    2 minutes ago I was on a page in the community that had content 2 seconds ago, 1 minute ago etc. Now I can't find it. I see 1 hour ago, 4 hours ago... How do I get back to that page.

    Hi Terry,
    2 minutes ago I was on a page in the community that had content 2 seconds ago, 1 minute ago etc. Now I can't find it. I see 1 hour ago, 4 hours ago... How do I get back to that page.
    When you say "2 minutes ago" was that literally 2 minutes ago, or did the page stay idle for some time? The page does not automatically update and continues to show the times of posts when last opened. If you leave the page and return to it, it will then update (reload) with new elapsed times.
    Questions and replies come thick and fast. Perhaps the thread has been pushed down the page by newer posts. It could have been pushed to another page. Click on the Next button (top and bottom of page). "Next" is actually older posts (they are stored in descending time order).
    Have you followed suggestions by b j t and ~Bee?
    Regards,
    Ian.

Maybe you are looking for