The last page i printed still in the monitor next to the icons

The last page I printed still in the monitor next to the icons lake a big picture.

Hello ovd,
I want to make sure you get some help for your issue. To do that I need you to provide the type of printer and computer you are using.
↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Similar Messages

  • HT4059 The last page in a chapter is often a repeat of the page 2 pages ago....ie pg 228 is actually a repeat of page 226.

    The last page of a chapter is often a repeat of the page, 2 pages ago. IE. pg 228 is a repeat of page226, not the page following 227.

    You aren't the only one to have had problems with that trilogy - you could try deleting the book and re-downloading it, otherwise see my reply here.

  • Sapscript bottom text in Main, just for the last page, but printing only in the last page

    I need to print a text but only for the last page in the main window.
    I have tried with IF.
    IF &PAGE& = &SAPSCRIPT-FORMPAGES&
    BOTTOM
    ....TEXT
    ENDBOTTOM
    ENDIF
    But it prints in all pages in every main window.
    Can someone point me what I am doing wrong or how can I do this?
    Regards,
    Carlos

    Hello Carlos,
    the problem with this condition is the following.
    The Sapscript composer cannot know during the processing of e.g. the first page,
    how many pages will follow. So &SAPSCRIPT-FORMPAGES& still contains the same
    value like& PAGE& and is filled with the correct values only at the very end of the processing.
    (when the total number of pages is known).
    So I suggest you to use the BOTTOM command in the print program,
    when the processing of all item of the MAIN window is ended.
    There is an other variable &NEXTPAGE&.  &NEXTPAGE& will always be 0
    when it reaches to last page to print. The problem with this variable that
    it can not be used in a condition in MAIN window too, only in a separate page window.
    Regards,
    Hedvig

  • HP Laserjet P3015 double sided - the last odd page prints on the same page when printing two copies

    HP Laserjet P3015 double sided printing is set up on Windows 7.  When printing two copies of a document, if it has odd number of pages, the last page is printed on both sides of the page. There is no page feed for the last page.
    Suppose say there are 3 pages in a document and you want to print two copies. It prints like 1/2, 1/2 and 3/3.  The third page (odd number) print on the same page. The last page page does not print on two pages.
    It works alright on Windows XP.

    Hope that you have configured the correct paper type and size in the printer hardware and also selecting the same paper tray, size, type from the printer driver while printing.
    It may be caused due to the job formatting done by the application software or some jobs settings done from the job/application or printer driver.  Check by toggling the 'collate' option and also try to print from a different application software.
    Please mark the post that solves your problem as Accepted Solution
    Click the 'Kudos Thumbs Up' if this was helpful. Thank You!
    (Although I am an HP employee, I am speaking for myself and not for HP)

  • Print on the last page of a Sapscript form

    Hi,
    Is it possible (and how) to print something (a filed of an internal table) only to the last page of a sapscript form?
    Thanks

    Hi
    if you want to print something at the end of a page....
    You can write it as this...
    in the main window...
    in the data element write it...
    /E END_DATA
    /: IF &PAGE&  EQ  &SAPSCRIPT-FORMPAGES&.
    &W_VALUE&.
    /: ENDIF.
    SAPSCRIPT-FORMPAGES variable is a system variable which stores the total pages.
    PAGE variable stores the current variable accordingly it will check for last page and print it.
    Now call it in the driver program .
    Regards.

  • I don't want to print the last page of a smartform when there is no content

    I don't want to print the last page of a smartform when there is no content. Kindly help

    If the last page is printed, there are two possibilities
    -1- The MAIN WINDOW is only in this page
    -2- The page is explicitly printed from another page (new-page)
    -3- There is date but its only space or skip line.
    So in your form
    -1- Redefine the logic of your form
    -2- Check that, there are some data to be printed before calling the NEW-PAGE
    -3- Do skip or write space lines before printing an actual line and not after
    Regards

  • How to remove item header on the last page

    Hi,
    We have an adobe form where, on the last page a BIG footer gets displayed.
    Now if the number of line items are not enough, they wont go till the last page, but the last would still be printed with no line items, just to accomodate the huge footer that we want to be displayed only on the last page.
    Now in doing this, we want that if there are no line items on the last page, the item header should not be displayed. We are not sure how do we do this.
    The same is accomplished in SAP Script, and there they are using WRITE_FORM with type DELETE. So anything that prints after that even on a new page, the item header wont get printed.
    Please suggest how do we do this in Adobe Forms.
    Thanks,
    Tirth

    Hi Mate,
    there is a contradiction then.
    in table header rows definition, we specify show header in subsequent pages, then the header appears only if there are items displayed on that page. in your case the table header shouldn't be displayed then please check why its comming out there...?
    well in any case if you want the script it would be like below on layout ready event of the header row.
    // run the below script in last page
    if(xfa.layout.page(this) == xfa.layout.pageCount()){
    var pageSFList = xfa.layout.pageContent(xfa.layout.page(this) - 1, "subform", false);
    var pageTotal = 0;
    // for each subform named <Item>, which is the data row of the table
    for (var i = 0; i < pageSFList.length; i++)
         var sf = pageSFList.item(i);
            if(sf.name == "headerrow"){ // if header row is found then chec is data row is visible and set its presence accordingly
               if(sf.parent.item.presence == "hidden"){
                   sf.presence = "hidden";
         if (sf.name == "Item") // if data row itself is found set its presence accordingly
           sf.parent.headerrow.presence = "visible";
    you might need to tweak the code according to your element names.
    hope this helps,
    Cheers,
    Sai

  • Terms and conditions not getting displayed on the last page

    Hi All,
    I have to display a smartform, on the front side of the page i have to display material details and on the back side of the page i have to display terms and conditions. I' am unable to print the material details and terms and conditions in duplex mode, but on the last page only material details are getting displayed, terms and conditions are not getting displayed.
    Can you please help me how to make the terms and conditions get printed on the back side of the last page.
    Thanks,

    I'm a bit confused by the statement "I' am unable to print the material details and terms and conditions in duplex mode".
    I suppose you meant to say "I am able to print the material details and terms and conditions in duplex mode", correct?
    If the problem is that on the last form page, the T&C is not getting printed on the back of the form, you could force the T&C page by using a flow logic command as the very last element of the main window, which gets processed when all the data is already output. For the command, use the 'Go to New Page' and specify the page name for the Terms & Conditions.
    In case this causes an issue that the last page is printed twice (since the T&C page is likely defined with the next page being NEXT_PAGE), then copy the already existing T&C page, call it LASTPAGE and leave the Next Page attribute empty.

  • How to decide the last page in smartforms

    Hi experts,
    I want to display a signature block only in the last page, can anybody tells me the perfect way to decide when it's the last page?
    Now I'm using a window with the check EVENT "Only Before End of Main Window", a flag is set in this window, and then use another window for signature block with the condition of flag is on.
    This method is not working perfectly, sometimes it works fine, sometimes not.
    Please let me know how will you do this, thank you
    Best Regards
    Raymond

    Hi Raymond,
    Try this logic!!!!
    I hope you have used table in main window to  display items. Just after the table in your main window, create a program line and set a variable(let say "x').
    Cretae  a separate window to display the signature. In the signature window use a text element to display the required value. Go to conditions tab of text element and set the condition (i.e. check your variable value which you have assignes before) and accordingly your text will get printed.
    Hope this will help you to resolve the issue & close the thread.
    Do appreciate if found useful.
    BR,
    Vinit

  • Want to hide a field in the last page of report

    Hi All
    I have an issue .. can anyone of the oracle techies give me a solution for this ..? pleeaassee
    The issue is that let us say i have a report for 5 pages. I have placed a field on the margin of a report to display CONTINUE.. . Now we dont want this field to be displayed when the report is on the last page. We tried of setting property of the field Print on to All but last page but it is not accepting that
    can anybody provide a solution for that ..?
    Thanx in advance
    Hari

    The problem you're hitting is that the margin area is formatted before the body area in the report. Since this is the case, you don't know if you are on the last page since the body has yet to be printed when you print your "continue" column.
    There are a several ways to accomplish what you want:
    - Guess whether it is the last page and print based on your "guess"
    Normally you'd use a running count along with a total count to see if you've printed the last instance of the repeating frame and are hence on the last page. Since your object is in the margin rather than the body, you'd need to estimate how many records will fit on the page and if there are less then these many records left then you shouldn't print the "continue" field.
    This can be tricky to do if your frame is variable sized so you don't really know how many instances of the repeating frame will be on each page.
    - Place the "continue" field in the body rather than the margin
    To do this, you need to create a fixed sized frame that all your normal layout goes into. This should be sized to your typical page size. Then create the "continue" field after the fixed sized frame (you may need to re-size the body area - do this in "margin" mode). Set the print condition to "all pages" against the "continue" field so that it prints on every page. You can then use the running count/total count method to determine if the last repeating frame has been printed when you come to print your "continue" field.

  • Footer at the bottom of the last page

    Hello,
    My template BI / Publisher is a page, but when it is executed it may be several pages. I want the footer that appears on the last page, that it's ok, but, and at the bottom of the last page.
    Have you any idea?
    Thanks.

    With the tag :
    Avant le truc.
    +<?start@last-page-first:body?> <?end body?>+
    Après le truc.
    I have the error :
    Font Dir: C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    RTFProcessor setLocale: en-us
    FOProcessor setData: D:\Documents and Settings\bPitault\Bureau\Reporting\SWM_SPE_OM_106\DATA_INT_20080922.xml
    FOProcessor setLocale: en-us
    java.lang.NullPointerException
    +     at oracle.apps.xdo.template.fo.area.PageNumber.formatString(PageNumber.java:104)+
    +     at oracle.apps.xdo.template.fo.IDManager.registerId(IDManager.java:44)+
    +     at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageJoinSeq(AreaTree.java:1106)+
    +     at oracle.apps.xdo.template.fo.area.AreaTree.incrementJoinSequenceIndex(AreaTree.java:219)+
    +     at oracle.apps.xdo.template.fo.area.AreaTree.registerLastPageDocument(AreaTree.java:1089)+
    +     at oracle.apps.xdo.template.fo.area.AreaTree.forceOutput(AreaTree.java:471)+
    +     at oracle.apps.xdo.template.fo.elements.FORoot.end(FORoot.java:58)+
    +     at oracle.apps.xdo.template.fo.FOHandler.endElement(FOHandler.java:386)+
    +     at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)+
    +     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)+
    +     at oracle.apps.xdo.template.fo.FOProcessingEngine.process(FOProcessingEngine.java:279)+
    +     at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1022)+
    +     at RTF2PDF.runRTFto(RTF2PDF.java:626)+
    +     at RTF2PDF.runXDO(RTF2PDF.java:460)+
    +     at RTF2PDF.main(RTF2PDF.java:251)+

  • Going to the last page of a table when adding a new object

    I added a Table(com.sun.rave.web.ui.component.Table) on my page and a button outside of that table to add new object rows. My problem is that I want the table to move to the last page when I add a new object. Instead the default bahaviour is showing the first page. Even if the newly added row is on a page > page 1.
    e.g If I have a table with 5 pages and I am on page 1 and I add an object I want to see the last page of the table where I added the new object. In other words I want it to go to page 5 or page 6 in case the number of the new object is > the number of displayable rows of a page.
    I did it with Javascript but I just dont like it. I wanna do it programmatically.
    Any help?
    Thanks in advance guys!!!

    Hi!
    Try to look here:
    http://forum.java.sun.com/thread.jspa?threadID=5142038&tstart=45
    Thanks,
    Roman.

  • I select "reverse" and printer still prints from page 1; how do I print the last page first, etc

    I select "reverse" so the printer will start printing on the last page and end on the first and it still prints from page 1 leaving me to cplace all the pages in order manually.  How do I do this.  My last HP had no problems;  I have a 6100
    This question was solved.
    View Solution.

    Please try this:
    Enter Control Panel > Devices and Printers.
    Right click the printer icon, click Printing Preferences.
    Select the Advanced tab.
    Set the Pages Order as Front to Back.
    Additioanlly, verify the same setting apply for the used program as customized preferences may kept for a specific program:
    Open the File you would like to print, the click File > Print.
    Click Preferences and verify the page order set as Front to Back.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to print grandtotal in table footer only in the last page in SMARTFORMS

    Hello Experts,
    How do I print the GRANDTOTAL in the table footer only on the LAST PAGE in SMARTFORMS.
    What I have done is in the text element of CELL1 of the table footer i wrote the folowing logic but not working.
    /: IF &SFSY-PAGE& EQ &SFSY-FORMPAGES&.
    * V_SUM.
    /: ENDIF.
    I even tried this.
    /: IF &NEXT-PAGE& EQ 0.
    * V_SUM.
    /: ENDIF.
    but still it displays the grand total on all pages at table footer.
    How do i go for this experts.
    Regards,
    Ranjith N

    HI Nambiar,
    To print the grand total only on the last page then create the secondary window --> create the text node for the grand total -->In the condition tab check only after the end of the main window.
    This grand total will be displayed after all the items and end of the main window.
    Footer in the table displays as the subtotals i.e on every page total is displayed..
    Regards,
    Sravanthi

  • Avoid printing Header and Footer in the last page

    Hi,
    Could anyone please let me know how to avoid print the header and footer in the last page?
    Note: I'm printing RTF template for publishing the output.
    Looking forward for your valuable inputs/suggestions.
    Thanks in advance,
    Regards,
    Muru

    Hai,
    My report got FROM PO & TO PO parameters and i need to print footer only in first page of each PO. Tried with section but now i am getting first page of all PO contionious and then all lines together.
    Please call me or sent replies to [email protected]

Maybe you are looking for

  • My Safari crashes constantly when trying to open a new tab!

    Hey everyone, So I am running OS 10.9.2 on a 15 inch MacBook Pro Retina. Over the last month or so, I'll hit command-T to open a new tab in Safari (with a few tabs already open, 5-6) and I'll get the spinning beach ball - when I go to force quit, it

  • Xml to x3d

    Hi, Could I get details on how to convert an xml file to an x3d formatted file, with xslt transformations? What I have is earthquake datasets in xml, and have to convert it to X3D so as to display the datasets in 3d. Any suggestions would be of great

  • How to define Sparse/dense settings through MAXL script ?

    Hi, How to define Sparse/dense settings through MAXL script ? By default its taking all dimensions as sparse dimension type. I want to define sparse and dense through MAXLand automate everything. Please help me out or advice me work around. Thanks, R

  • Anybody using iPhoto5 to mirror slideshows using a projector?

    How's it working? Do the Ken Burns animations move smoothly on the projection screen? Any tips for an A/V newbie? 20" iMac G5 2.1 GHz PowerPC   Mac OS X (10.4.4)  

  • How do i retrieve bookmarks when they disappear after restore

    WHEN EVER I DO A SYSTEM RESTORE ON MY COMPUTER: WHEN I REOPEN FIRE FOX---ALL OF MY HISTORY IS GONE----AND ALL OF MY BOOKMARKS ARE GONE AS WELL !!! THIS REALLY SUCKS----IS THERE ANYWAY TO RESTORE THEM ????????