Extra page shown in smartform

Hi,
please let me know how can I remove the extra page being printed at the end of the smartform, which I have used on change of some field using an event,.
suppose the data is getting actually printed in 3 pages,  it is showing total of 4 page and 4th page is blank in all cases ,  i just need to remove this extra blank page,
thanks in advance
Rohan

hi,
total pages used are 2 , one for main page and then NEXT PAGE
suppose i gave input as EBELN OF 4500000128  to 4500000129
it shows output as
pages 1 of  4 on the intial page.
4500000128  comprises of 2 pages in all it has 20 details
4500000129 comprises of 1 page worth data contains 2 detail
now in all 3 page shows all the data required..
but the 4th page is shown and it displays a blank window [no data] fills the header though of next page but since no data is there, it shows blank main window
the same case is repeated in all the cases, just the page number changes, but in every case extra blank page at end is shown.
i want to remove the last page being shown
i hope you are clear with the output i am getting

Similar Messages

  • Printing extra pages in smartform

    Hi All,
    i'm new to smartforms.i got an issue on invoice(smartforms).i'm getting 3 extra blank pages in smartform.how and where should i rectify that.can any one help me please.
    thanks in advance

    Hi Mr Rao & Mr Reddy,
    thanks for your prompt responses...added to the question, in the extra page i'm getting spool information.actually the program is set in background.once the invoice is issued the form is sent to printer.and in the spool it is displaying the actual pages only.its not showing the extra pages.but once it is out from the printer,i'm getting the extra pages with the spool information
    the information on the extra page is....
    user:
    host:
    class:
    job:
    these are the four lines i'mm getting on the extra page.could u please help me.
    thanks in advance.

  • How To Delete The Extra Page In Smartform Output

    Hi Friends,
    I am working wih Smarform..which displays P.O Details (Header and Item ) .
    Header Details in Template and Item Details in Table..
    I am trying to print 10 P.O ..for every P.O i kept New page command.
    So..finally i have to get 10 pages in output...instead i am getting 11 pages...
    How to delete the extra page ? Y i am getting this..
    please give helpful answers...
    Points will be given after get the answer.
    Thanks,
    Laxmi

    Hi,
    as someone else said. put the newpage command at the start.
    However with a condition that that it not happens at the first page.
    or
    Determine how many P.O.
    use a counter.
    If this counter is equal to number of P.O, then no newpage command.
    success.
    Gr., Frank

  • How to avoid extra page

    HI all,
    I am getting my ouptut in smartforms . But the problem is i am getting an extra page with logo at the end. How to avoid that?
    Here i am using only 2 windows. LOGO window and main window.
    Thanks & Regards,
    Vineel

    Check your main window and see whether there are any blank lines inside your main window... if that is not the case check whether you are using any command and calling the new-page in smartform... if yes.. goto command and un-check the tick box goto next page.
    Close the thread once your question is answered.
    Regards,
    SaiRam

  • How not to print all the pages of a smartform? (for tr F150 - Dunning)

    Hi Forum
    We have the follow situation:
      For DUNNING (transaction F150) the user want stamp 3 diferents SMARTFORM.
       For the first time the transaction is executed is required only a list of documents, for the second time (via sample printout, indiv dunn notice or dunn history)  once the legal data of the customer is updated, the user wants the list of documents, a letter for the lawyers and a letter for the client, in the follows executions  (3 and up) the user can require only the list of documents or all smartforms (list and letters)
      Via customizing we can control the normal dunning and the legal dunnig, but once the client is in legal status the transaction create only the legal smarforms.
    We found  an user exit associated  EXIT_SAPF150D_001. in the F150 transaction, but is not complete, in sense that are failed some parameters .
      Another option is create an unique smartform with 3 pages where we can control the case for the print, but here is where we ask: How we can do to print a specific page of the smartform without print all of them (how can we print the 2nd and 3rd page without print the firs one) ??
    To control the 3rd execution, we can create a dictionary table with a flag .
    Thank you for your help

    You could create a report containing all the single reports in one using UNION. This report could be placed on a "hidden" page. The link for downloading that report you can place on your page. That should work.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

  • How to use different page scapes in smartforms

    hi
    How to use different page scapes in smartforms.
    I want Potrait format in the 1st page and Lanscape format in 2nd page is it possible if so plz suggest me an idea

    Hi,
    It is possible in smart forms, but not in scripts.
    we can have 3 tabbed options for pages in smart forms.
    <b>General...
    Output options
    Conditions</b>.
    In <b>output options</b> u can define whether a page can portrait or land scape in <b>print attributes</b>.
    Reward if helpful.
    Regards,
    Sandhya

  • How to put page break in SMARTFORMS

    Hi Guys,
              Can anyone please let me know How to put page break in SMARTFORMS
    Regards
    Avi

    Hi,
    Look at the below thread, you will get the answer
    https://www.sdn.sap.com/irj/sdn/profile?userid=2522810
    Regards
    Sudheer

  • Blank page shown instead of Open/Save As dialog box-CSV file download in IE

    I am migrating an application hosted earlier on Oracle 9iAS (9.0.3.1 BP1) to OracleAS 10g (10.1.3) with Struts 1.2.9. While the below JSP code worked for the earlier s/w stack when accessed using IE 5.5 SP2 or above, a blank page is displayed with the new s/w stack. What I mean by "worked earlier" is this. A "Open/Save As" dialog box would appear. Trying to "Open" would open a new IE window launching MS Excel and displaying correct data. Trying to "Save As" would display correct filename and extension in the dialog box.
    <%@page autoFlush="false" contentType="application/x-filler"%>
    <%
    try
    String fileName = "ABC.CSV";
    String strData = "A,B,C";
    response.setContentLength(strData.length());
    response.setHeader("Content-Type","application/octet-stream");
    response.setHeader("Content-Disposition","inline;filename="+fileName);
    ServletOutputStream ouputStream = response.getOutputStream();
    ouputStream.write(strData.getBytes(), 0, strData.getBytes().length);
    ouputStream.flush();
    ouputStream.close();
    catch(Exception e)
    %>
    I tried some changes listed below:
    1. Deliberately introduced compilation errors in the JSP code.
    2. Changed contentType="application/x-filler" to various MIME types like application/x-download, application/vnd.ms-excel, removing it altogether.
    3. Commented out response.setHeader("Content-Type","application/octet-stream") and also tried other MIME types related to CSV/Excel.
    4. Changed Content-Disposition from inline to attachment.
    Each of the above resulted in an unacceptable behaviour compared with the earlier state:
    1. Blank page shown as if nothing was happening even in case of deliberate incorrect JSP syntax.
    2. Dialog box did show up with some combinations. But on trying to "Open" or "Save As", the dialog box shows up a second time. Then while trying to "Open", the contents get opened either inline or in MS Excel but with some additional garbage data like source file name.jsp etc. While trying to "Save As" the file name and extension take on the pattern <URL_Pattern>.htm where URL_Pattern would be "DOWNLOAD_ACTION.do".
    Some other information:
    1. This code works when accessed from desktop local container (Win 2000) but not when deployed on Unix env (HP-UX B.11.11.0109).
    2. Latest patchsets are installed for IE.
    3. The existing application is designed to work for ONLY IE 5.5 SP2 or above, so I haven't tried with other browsers. I have tried both IE 5.5 SP2 and 6.0 SP1.
    Any help in this regard will be highly appreciated.
    Thanks a lot for your valuable time..

    I have made it to work with the below changes:
    1. Changed the URL pattern for <filter-mapping> for *.jsp to /*.jsp
    2. Added <dispatcher>REQUEST</dispatcher> and <dispatcher>FORWARD</dispatcher>
    3. Everything else (code-wise) is as before.
    Because of these changes, the filter, wherein some headers are being added to the response, is being invoked appropriately now.
    Thanks for you time and suggestion though...

  • How to add an extra page to the index.html page on dreamweaver CS6?

    How to add an extra page to the index.html page on dreamweaver CS6?

    Index.html = your domain's home page.  There is only one home page per site.
    To create a new page from your index, go to File > SaveAs > filename.html.  Repeat for other site pages.  Add links on your index page that lead to other site pages.
    See  Creating your first web site in DW CC (5-part tutorial)
    https://helpx.adobe.com/dreamweaver/learn/tutorials/how-to/first-website-part1.html
    Nancy O.

  • Invoice print extra page w/o any data in repetitive area or end of report

    I did not use Page Footer and reduced those "hidden fielded" height to 26 with checkmark for Adjust Area Height, but the invoice will print extra page with blank repetitive area and page footer, Report Header and Repetitive Header showed.
    How to remove the extra page?  
    I have another one that do not print the extra page but each page has same Invoice Total, Frt, Tax with Remittance Address that should only show in the last page.  I know this is because I put Invoice Total in Page Footer. When I remove Page Footer to End of Report area then I got extra page with no data in repetitive area or end of report.

    Hi Lily,
    i think problem be create in Repetetive Area.
    Do this in your PLD,
    ->> Open your PLD and save as a duplicate PLD (Just testing PLD).
    ->> Right Click in PLD and Choose the Display Hidden Fields in PLD.
    ->> Reduce the Height of all fields in Repetetive Area, Page Header and End of Reports.
    for example,
    ->> Select all fields including Hidden fields in Repetetive Area & Repetetive Area Footer and
    Reduce the Height in General tab on Properties Widnow.
    put the Height -> 15 and Font Size -> 10
    ->> Reduce the Repetetive Area Height and put the Tick mark in Area Height Adjustment in Format Tab.
    Try to remove all fieds(including Hidden fields) in Page Footer and Reduce the Height.
    ex. Page Footer Height -> 0
    Regards,
    Madhan.

  • Unwanted Extra page in payment advice form (F110_PRENUM_CHCK, RFFOUS_C)

    Hi,
    We are printing payment advice form along with the check using standard print program RFFOUS_C.
    But instead of using the standard form F110_PRENUM_CHCK we are using our own form. But when printing this form one extra page is coming with no data although all the line items are getting printed in the first page itself.
    Can anyone plz help me on how to avoid this additional blank page.
    And we have defined only one page with all necessary windows although there are 3 pages in the standard form F110_PRENUM_CHCK.

    Hi Nagendranatha,
    in the selection screen of RFFOUS_C, u can c multiple options,among them c the checkboxes that have been checked.. there r options for printing additional details,summary and things like that.. u may find something useful out there.. n also if u r using a variant in the program, just look out for the options that have been checked in the selection screen for this variant..
    hope it helps..

  • Different page orientation in SMARTFORMS

    Hi Experts,
    Is it possible to have different page orientation (portrait/landscape) for different pages in one smartforms? Thanks so much!
    Best Regards,
    randy

    Hi,
    Yes, it is.  Go to the output options of the page and select the portrait/landscape option.
    Regards,
    Nick

  • Export to PDF from Autocad: Acrobat always opens PDF with 'layers panel and page' shown.

    Hello,
    Whenever I export to PDF from Autocad, Adobe Acrobat opens the PDF with the 'Layers Panel and Page' shown.
    Each time I have to manually go to 'Properties' and select 'Page only', close 'Properties' and close the PDF and select to save the changes, in order to show the just the page.
    Is there a way to make PDFs always export to 'Page only' automatically as default?
    Thanks!
    Ione

    Thakns Peter, I had seen this thread, but it doesn't really address my issue. I've exported individual chapters from the book file, all with success, so I know there isn't a file corruption issue.  The problem seems to do more with memory allocation/usage. 
    I have tried: quitting and then immediately exporting the file, and even rebooting and then relanuching and exporting.  Both of these allow me to get a few pages farther along, but still not through the entire book.
    I remember back in the day there used to be a setting for how much RAM/dis c space was allocated to a certain applicatino (I knowm it was a long time ago).  I didn't know if there might be something like this hidden somewhere

  • Acrobat 7 Extra pages with comments

    Using Acrobat 7 and adding a coment using the Text Tool.  When printing the document (14 pages) an extra page is printed after each document page. This extra page say, "No cpomment on this page." Any know how to prevent the extra pages from printing?

    Look at the options in print dialog.

  • CMC is exporting an extra page in my PDF document???

    Hi -
    I have the SAP Business Objects Central Management Console and I am exporting a PDF document. When it exports the document, as a PDF, it's giving me an extra page and it's blank. I am trying to rid the extra page. How can I do that.
    When I export the document as a PDF directly from Crystal Reports 8 it doesn't give me the extra blank page, which is what I am looking for.
    Please help or direct me to the right place.
    Thanks.
    Gennaro

    I searched in SMP and found a lot of SAP KBAs addressing such issue. Please check if any of those are applicable to you :
    1472427 - Blank pages are added when viewing in page mode or exporting to PDF for Web Intelligence document
    1322489 - A blank page is displayed In PDF Export of a webi.
    1779856 - Exporting Crystal report to PDF generates multiple blank pages.
    1217039 - Exporting a report to PDF creates extra blank pages
    There are more. Please check in SMP.

Maybe you are looking for