Issue in displaying box in multiple pages of scripts

Hi all,
In my requirement i am getting the output in multiple pages . I am using ' BOX FRAME 30 TW' for getting the box .This box is getting only in first page but is not displaying in multiple pages.
how can i achieve this?
waiting for u r replies.
Regards,
Bhanu.R

Hi Phani,
The box you defined must be on the same page where you defined your first page.
Always take a variable window to make it apper on multiple windows.
First write perform for your box then call your main page.
Much Regards,
Amuktha.

Similar Messages

  • Issue with displaying summary in the Page Bottom

    Hi Friends,
    I have an issue with displaying summary in the page bottom. for this i am using command BOTTOM and ENDBOTTOM in Main Window.
    I designed 2 pages are First and Next, in the first it displays PO Header details and Item details in the Main window and also Item details continuious in the Next Page also.
    If the lines are enough in Bottom then it displays the summary. But if the lines are not enough in bottom then it does not trigger the new page, so that it doesn't displays the Summary in Bottom.
    for ex: Total lines of the page 50 and Bottom required 15 lines. In the next page contains upto 35 lines, it triggers the Bottom.
    But if the lines are more than 35 and below than 50, it does not trigger the new page so that it does not shows the bottom.
    Please help me on the same, this is very urgent.I will give a rewatrd if it is helful.
    Regards,
    Subbarao

    HI,
    Try with printing the bottom data with Protect and ENDPROTECT along with your Bottom and endbottom.
    Eg: Protect
    bottom
    text
    endbottom
    endprotect.
    Regards,
    Venkatesh

  • Using Vector to display ResultSet on multiple pages

    Hi all,
    I want to use Vector for Displaying the ResultSet in multiple pages for my JSP.
    Can anybody assist me on how to display Resultset on multiple pages by using Vectors.
    Thanks for any help in advance.
    regards,
    savdeep

    Haii Pls go through the code
    Vector v=new Vectior()
    while(rs.next())
       v.add(rs.getString(column name));
    v //vector is readyyyyyregards
    Shanu

  • How do display ResultSet in multiple pages ? Please help !!!

    Hi all,
    I want to display the ResultSet of my JSP in multiple pages.I want to group them as a set of 10 records on one page and so on the output
    displayed on further pages in a set of 10 records per page.
    Is there any Simple way to do that ?
    Any response will be highly appreciated.
    Thanks in advance for any help.
    regards,
    savdeep

    Haii
    From the result set put your values inside any util objects like vector or hastable and make use of them to show the result in the page..
    And again it depends on the requirement..
    regards
    Shanu

  • Need help with displaying content on multiple pages

    Hi I'm kind of a dreamweaver newbie and i'm a little in over
    my head. I'm trying to design a web site with the same content
    appearing on multiple pages. Here's the current site...
    http://home.comcast.net/~gascec/cecnh20/index.html
    I'm trying to establish the top bar and side bars of links
    and the logo on each page from one point so i don't have to change
    forty pages if i update a link.
    I know there's a way to do this and i thought it was using a
    CSS page but i can't figure it out and i'm running out of time.
    Help

    Got it. Thank you. I'm having one other problem though. I
    keep getting this bizare message every time i save or try to use
    the template:
    The is an error at line 41 column 7 (absolute position 2486)
    of "~pathandfilename.dwt": Nested editable regions
    The only thing at line 41 is the <body> tag. I took all
    the formating out to try to trim this out... any thoughts about
    this one.
    Thanks G

  • Multiple pages in scripts.

    Hi ,
    Could you please tell me how is multiple pages trigerred in scripts.
    Say the second page.
    Is this done through the print program?
    Are there any specific control commands to do so?
    <<text removed by moderator>>
    Thanks in advance,
    Suchi.
    Edited by: Matt on Nov 13, 2008 2:04 PM - do not use ASAP or urgent.

    Hello all,
    Thanx a lot for ur replies.
    In the debugger mode ,I am able to see the page changing from first to next page,
    but then while executing the print program I see only a single page.
    I have used the following code:
    *& Report  Z_75354_SCRIPT_SESSION
    REPORT  z_75354_script_session.
    TABLES : z75354_emp.
    TYPES :BEGIN OF ty_empdetail,
            zempno TYPE z75354_emp-zempno,
            zmailid TYPE z75354_emp-zmailid,
            zpu TYPE z75354_emp-zpu,
            zmark1 TYPE z75354_emp-zmark1,
      zmark2 TYPE z75354_emp-zmark2,
      zmark3 TYPE z75354_emp-zmark3,
      zmark4 TYPE z75354_emp-zmark4,
      zmark5 TYPE z75354_emp-zmark5,
      zmark6 TYPE z75354_emp-zmark6,
      zmark7 TYPE z75354_emp-zmark7,
      zmark8 TYPE z75354_emp-zmark8,
      zmark9 TYPE z75354_emp-zmark9,
      zmark10 TYPE z75354_emp-zmark10,
      zgrade1 TYPE z75354_emp-zgrade1,
      zgrade2 TYPE z75354_emp-zgrade2,
      zgrade3 TYPE z75354_emp-zgrade3,
      zgrade4 TYPE z75354_emp-zgrade4,
      zgrade5 TYPE z75354_emp-zgrade5,
      zgrade6 TYPE z75354_emp-zgrade6,
      zgrade7 TYPE z75354_emp-zgrade7,
      zgrade8 TYPE z75354_emp-zgrade8,
      zgrade9 TYPE z75354_emp-zgrade9,
      zgrade10 TYPE z75354_emp-zgrade10,
      v_total TYPE i,
    END OF ty_empdetail.
    DATA : i_empdetail TYPE STANDARD TABLE OF ty_empdetail WITH HEADER LINE,
          wa_empdetail TYPE ty_empdetail,
          wa_empdetail_temp  TYPE ty_empdetail,
          l_sum1 TYPE i.
         v_total TYPE char250.
    SELECT-OPTIONS : i_empno FOR z75354_emp-zempno .
    START-OF-SELECTION.
      SELECT zempno
            zmailid
            zpu
            zmark1
            zmark2
            zmark3
            zmark4
            zmark5
            zmark6
            zmark7
            zmark8
            zmark9
            zmark10
            zgrade1
            zgrade2
            zgrade3
            zgrade4
            zgrade4
            zgrade5
            zgrade6
            zgrade7
            zgrade8
            zgrade9
            zgrade10
            FROM z75354_emp INTO CORRESPONDING FIELDS OF TABLE i_empdetail
      WHERE zempno IN i_empno.
      SORT i_empdetail BY zempno zmark10.
      LOOP AT i_empdetail INTO wa_empdetail.
        wa_empdetail_temp = wa_empdetail.
        l_sum1 = wa_empdetail_temp-zmark1
        + wa_empdetail_temp-zmark2 + wa_empdetail_temp-zmark3 +
    wa_empdetail_temp-zmark4  + wa_empdetail_temp-zmark5 +
    wa_empdetail_temp-zmark6 +
    wa_empdetail_temp-zmark7
        + wa_empdetail_temp-zmark8 + wa_empdetail_temp-zmark9 +
    wa_empdetail_temp-zmark10.
        AT END OF zempno.
          MOVE l_sum1 TO wa_empdetail_temp-v_total.
          MODIFY i_empdetail FROM wa_empdetail_temp TRANSPORTING
           v_total.
          CLEAR :
         l_sum1,
               wa_empdetail_temp,
               wa_empdetail.
        ENDAT.
        ENDLOOP.
    END-OF-SELECTION.
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
         form                              = 'Z_TEST_75354'
         language                          = sy-langu
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
      SPONUMIV                          =
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      CODEPAGE                          = 11
      OTHERS                            = 12
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT i_empdetail.  "
        CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          element                        = 'MAIN'
        FUNCTION                       = 'SET'
        TYPE                           = 'BODY'
          window                         = 'MAIN'
      IMPORTING
        PENDING_LINES                  =
      EXCEPTIONS
        ELEMENT                        = 1
        FUNCTION                       = 2
        TYPE                           = 3
        UNOPENED                       = 4
        UNSTARTED                      = 5
        WINDOW                         = 6
        BAD_PAGEFORMAT_FOR_PRINT       = 7
        SPOOL_ERROR                    = 8
        CODEPAGE                       = 9
        OTHERS                         = 10
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'NEW-PAGE'
    EXCEPTIONS
    UNOPENED = 1
    UNSTARTED = 2
    OTHERS = 3
    IF SY-SUBRC NE 0.
    *MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      ENDLOOP.
      CALL FUNCTION 'CLOSE_FORM'
      IMPORTING
        RESULT                         =
        RDI_RESULT                     =
      TABLES
        OTFDATA                        =
      EXCEPTIONS
        UNOPENED                       = 1
        BAD_PAGEFORMAT_FOR_PRINT       = 2
        SEND_ERROR                     = 3
        SPOOL_ERROR                    = 4
        CODEPAGE                       = 5
        OTHERS                         = 6
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help.

  • Expanding text boxes to multiple pages

    I have a dynamic form with expanding text boxes that I originally designed on one page.  As I put in the needed items it was clear to have it fit I would need to go to a second page to have everything needed.  When it is the first page alone the preview pdf works properly automaticallly moving the overflow to the next page.  When the second page is inserted to finsih the form the areas not fitting on the first page when typed into the preview fall off into space and you can no longer see them.  I've treid moving around the heirarchy and have not figured it out.  Does anyone know hoi to fix this?  Is it possible to have a 2 page dynamic form that expands?

    Sorry I have been on vacation and in Europe for a week so I was not able to get to this before I left.
    The root subform (Page level) must be set to flowed if you want it to act the way you want. When doing that you can ignore the need to add the 2nd page and allow the product to break the page where it is needed. I modified your form so it would do this. Note that there is no Page 2 and I added some additional subforms to break up different parts of the form (Headers and unnamed subforms). It is good practice to name your subforms and if you do any code that was added may need to be adjusted to take into account these additional structural changes.
    Please find attached the modifed sample.
    Paul

  • To print multiple page in script

    hii frnds
    my requirement is
    i have to display 1 line item of my table in 1 page and then the second line item in the  second  pages and as on IN A clasical report .
    can any body tel me how to do it . actualy the first line item will be displayed by default and the subsequent pages will be displayed based on a customized button .
    Thanx
    rohit

    Hi Rohit,
    For example, you can create a test script to achieve your requirement.
    Create a Page 'PAGE1', a default paragraph 'AS'. And place the below code in the text element of the Main window. Put 'PAGE1' as the Next Page for Page 'PAGE1' in the Standard Attributes section.
    AS   write 'HI'.  
    /:   NEW-PAGE.    
    AS   write 'Hello'.
    /:   NEW-PAGE.    
    AS   write 'BYE'. 
    Test the script using Menu path Utilities->Test Print.
    Now, you can see first page diplaying text HI, second page displaying text Hello and third page displaying BYE.
    Hope this helps.
    Thanks,
    Srinivas

  • Place multiple page PDF script no longer runs correctly

    I have place multiple PDFs into ID java script. Recently, when running the script, I'm no longer prompted to use current doc or new doc. I also don't get a prompt to place PDF starting on page x. It just opens a new 8.5 x 11 doc and places the PDF pages.
    I haven't deleted my prefs yet (haven't made a note of what they are). Nor have I deleted the script. Thought I'd check here first before nuking prefs or script. I get a lot of PP presentations as PDFs for printing so I need the ability to place into an 11 x 8.5 file.
    AFAIK, I haven't added anything new to my workstation which is running CS3 on Dual G5 with OS10.4.11. I have a tendency to troubleshoot after a 12 hour day and I've found out after the fact I did a lot of unneeded busy work by not thinking on it out more or asking around beforehand.
    Thanks in advance for any help.

    Does any other script show any dialog at all?
    If not, some rogue (or interrupted) script switched off User Interaction. You can enable it again with this one line javascript:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

  • Terms and Conditions to display in the last page of Script

    Hi Experts,
    My requirement is to print the Terms and Conditions in the Last Page of a PO. so for that, I have created one LAST page. Previously i have FIRST Page and Next Page in the Script. In the LAST Page it has to windows. One is for Logo and another one is for Terms and Conditions. I am trying to print to Terms and Conditions through a Standard Text ( Created in SO10) in the Terms and Conditions window.
    The page flow are like FIRST-->NEXT, NEXT>LAST, LAST---->LAST
    Please guide me how shall i proceed to get the output. It would be better if we get the output with out doing any change to the driver program.
    Thanks,
    Priyabrata

    Dear Priyabrata
    The page flow should  like FIRST-->NEXT, NEXT>NEXT, LAST---->
    And call your page in main window at last element.
    This will surely solve your problem.
    Regards,
    Vijay

  • Multiple pages refreshing to common page

    I've been noticing an issue regarding Safari web browser on the iPhone.
    I have my main page set to appleopolis.com, From there, I click on a link and it opens a new browser page to say, Google search (or any page for that matter). If I click refresh on the second browser page, all the pages (pages 1 and 2) refresh to whatever URL I refreshed. This happens to all pages, regardless of whether I have 2, 3, or more pages open nor does it matter which page I refresh.
    Also, I don't have to have the second page opened as a "popup" for this to occur. For Example...
    Page 1 is set to Google.com
    Page 2 is set to NYTimes.com
    Page 3 is set to CNN.com
    ...all three pages were opened individually by clicking the icon on the bottom right corner of the screen. If I were to refresh Page 2, then Page 1, 2 and 3 refresh to NYTimes.com If I refresh Page 3, then Page 1, 2, 3 refresh to Page 3.
    Anyone else have this issue? Any idea why?

    Turning off pop-up blocking half-resolves my issue. If I open multiple pages individually and refresh a page, all the pages no longer refresh to a common page.
    However, in the example where I open a new page through a link from appleopolis, I still have all pages refreshing to a common page. Appleopolis seems to open web-links through a pop-up or new window script. When I click on the link, the address bar for the appleopolis page changes url's but doesn't load unless I hit reload on any of the other pages.

  • MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.

    MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.How do I solve this issue?

    Go step by step and test.
    1. Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204
    2. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    3. Deselect Proxies if selected.
        System Preference > Network > Advanced  > Proxies Tab
        Under "Select Protocol", uncheck any box if selected.
        Click "OK" then  "Apply”.

  • Adobe forms-multiple pages display problem

    Hi All,
      I had a query regarding the display of multiple pages in adobe 5.5 version.
    I had data which suits in more than one page in adobe.But its displaying only the data in the first page.And it is displaying the empty second page also,but with no data.So any suggestions to solve this issue???

    Hi,
    version  5.5.1.280? It is version of Adobe Reader? If yes then you can't use this version for viewing of adobe forms (note 834573 - SAP Interactive Forms by Adobe: Acrobat/Reader version).
    Another suggestion: Is subform of your first Body Page flowed (tab Object->Subform, propertie Content)? If not then content of this Body Page can't dynamically grow.
    Check subforms of your Body Pages, especially tab Object->Pagination.
    Regards
    Michal

  • CR export to excel in BOE displays multiple page headers

    We are using CR 2008 and BOE 3.1. In Designer when report exported to excel with setting show page header once / report works fine.When moved to enterprise and scheduled the same report ( setting check box use report settings) and getting the output format as excel gives multiple page headers . any idea on this. Are the parent settings overiding the user settings. This happening in QA environment as well.Any idea on this ?

    There is an option on the advanced export options to handle headers different ways.  Including how to include headers.  The different SDK's don't handle the all the same however so in some cases you have to modify the report the present headers and footers differently.

  • How to display multiple page images in forms ?

    Hi,
    What is the best method to display multiple pages image(100 pages) in forms 10g?
    Thanks

    Hello,
    <p>this is a link to a tutorial that contains several sample forms.<br> One of them (ALBUM.FMB) demonstrates how to display hundred of images.<br><br>The tutorial is in French, but you can simply download the samples on the introduction chapter</p>Francois

Maybe you are looking for