Smartforms -Page Skipping Problem in Continue Sheet Printing.....

Hi Gurus,
I face problem with multiple page printing in dot matrix printer for purchase order printing.
Here are the details about my requirement
Our client Purchase order pre-printed Paper size Width 303 mm Height 203 mm and continued sheet. I have created a z layout zpoprint for the above size and assigned it in smarforms and select DINA4 transverse in printer. Whenever we printing 2nd page it starts printing after 5 cm. My friends asked me to create a customized page format in server properties in printer. Is there any other way to overcome this issue? Anybody face this problem kindly reply to me. 
By
SP. Manavalan

Hi
Though you can double check the page layouts of both pages of your smartform, also keep in consideration that using a dot matrix printer to get the output of smartforms will have some impact of the positioning of the print as dot matrix printers are mechanical in nature(wheels are moving!).
Whereas, in laser printers, the whole data is taken, formatted and then sent to print.
Regards
Raj

Similar Messages

  • 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

  • Problem in PI Sheet Print out

    Dear PP Guys
    I am facing a problem while taking Print out of PI sheet in PDF format...
    The Contents of the PI sheet are getting out of the std A4 size paper.
    How can we fit the PI sheet content to a A4 size paper while taking print
    We are using EHP 4.0 pack and SAP R/3 ECC6.4
    Regds
    RB

    hi Kunal
    The solution i identified for this error ,
    If i give some othere number in serial number display befor goint to printer selection screen
    Its not showing any error .
    but if i giv same challan number in serial number befor printer selection screen , then its showing error
    If u have any idea , y its not allowing , ..?? u can explain me
    Thanks

  • Smartforms Page Numbers problem

    Hi All,
    Can any one suggest me in this issue
    i need continue to next page<PAGE NO> in the last of smartfoprm pages if there is more than one page
    for that what to do
    Thanks
    Surendra

    Hi Suri,
    How about this commands
    &SFSY-FORMPAGES& 
    Displays the total number of pages for the currently processed form. This  allows you to include texts such as'Page x of y' into your output. 
    &SFSY-JOBPAGES& 
    Contains the total page number of all forms in the currently processed print  request. 
    Regards,
    Pravin

  • Problem in Continues GR printing

    Hi all,
        I hv made smart form for GR print . I m using standrad selection screen MB90, output type WE03 & standrad print program SAPM07DR ->M07DRENT-> M07DRAUS  i have copied that program and assigned my smart form in this program. now my problem is that when i select range for printing GRs then i have to click on print again and again for each GR. I want that all GRs should be print by single click.   Give some solution according to this standrad program.
    I sending u program codes where i have made changes.
    FORM lesen_wes USING objky lgortsplit.
    TABLES: MAKT.
    DATA: GR_FM            TYPE rs38l_fnam.
    data : print_params type SSFCTRLOP.
    data : print_out type SSFCOMPOP.
    DATA: BEGIN OF ITAB_MKPF OCCURS 0.
      INCLUDE STRUCTURE mkpf.
    DATA : END OF ITAB_MKPF.
    DATA: BEGIN OF ITAB_MAKT OCCURS 0.
         INCLUDE STRUCTURE MAKT.
    DATA: END OF ITAB_MAKT.
    DATA: BEGIN OF ITAB_MSEG OCCURS 0.
          include structure mseg.
    data:    END OF ITAB_MSEG.
    DATA: BEGIN OF ITAB_LFA1 OCCURS 0.
          include structure lfa1.
    data:      END OF ITAB_LFA1.
      REFRESH traptab.
      CLEAR retco.
      CLEAR: xkopfdr, new_page.
      nast_key = objky.
      SELECT SINGLE * FROM mkpf WHERE mblnr = nast_key-mblnr
                                AND   mjahr = nast_key-mjahr.
      MOVE-CORRESPONDING mkpf TO ITAB_MKPF. "  JITENDRA
      MOVE-CORRESPONDING mkpf TO traptab.               "note 205937
      zaehler_m = 1.
      SELECT * FROM mseg WHERE mblnr = mkpf-mblnr
                         AND   mjahr = mkpf-mjahr
                         AND   BWART <> '543'.
      SELECT * FROM MAKT WHERE MATNR = MSEG-MATNR.
      SELECT * FROM LFA1 WHERE LIFNR = MSEG-LIFNR.
        IF sy-subrc ne 0.
          retco = sy-subrc.
          EXIT.
        ENDIF.
        IF zaehler_m = 1.
          CLEAR zaehler_m.
          PERFORM tab001w_lesen.
        ENDIF.
       MOVE-CORRESPONDING mseg TO ITAB_MSEG.   "  JITENDRA
        MOVE: MSEG-LIFNR TO ITAB_MSEG-LIFNR,
             MSEG-EBELN TO ITAB_MSEG-EBELN,
             MSEG-EBELP TO ITAB_MSEG-EBELP,
             MSEG-ZEILE TO ITAB_MSEG-ZEILE,
             MSEG-MATNR TO ITAB_MSEG-MATNR,
             MSEG-LGORT TO ITAB_MSEG-LGORT,
             MSEG-ERFME TO ITAB_MSEG-ERFME,
             MSEG-LSMNG TO ITAB_MSEG-LSMNG,
             MSEG-ERFMG TO ITAB_MSEG-ERFMG,
             MSEG-BWART TO ITAB_MSEG-BWART,
             MAKT-MAKTX TO ITAB_MSEG-SGTXT.
        MOVE-CORRESPONDING MAKT TO ITAB_MAKT.
        MOVE-CORRESPONDING LFA1 TO ITAB_LFA1.
        MOVE-CORRESPONDING mseg TO traptab.
        APPEND ITAB_MSEG.
        APPEND ITAB_MAKT.
        APPEND ITAB_LFA1.
        APPEND traptab.
      ENDSELECT.
      ENDSELECT.
      ENDSELECT.
      PERFORM open_form_sammel.
      IF NOT lgortsplit IS INITIAL.                       "431555
        SORT traptab BY werks lgort zeile.                "431555
      ELSE.                                               "431555
        SORT traptab BY werks zeile.                      "431555
      ENDIF.                                              "431555
      LOOP AT traptab.
        MOVE-CORRESPONDING traptab TO mkpf.
        MOVE-CORRESPONDING traptab TO mseg.
        PERFORM tab156_lesen.
        CHECK not t156-kzdru is initial.
        xskkz = t156-rstyp.
        IF not mseg-evers is initial.         "Versandvorschriften lesen.
          PERFORM t027_lesen.
        ENDIF.
        PERFORM bestellung_lesen.
        IF not ekpo-knttp is initial and not
              ekpo-weunb is initial.
           PERFORM kontierung_lesen.     "Für WE unbewertet
        ENDIF.
        IF not mseg-ematn is initial.
          PERFORM lesen_htn.
        ELSE.                                         "111277/PH
          CLEAR am07m-mfrpn.                          "111277/PH
        ENDIF.
        IF mseg-matnr is initial.
          mseg-menge = mseg-bpmng.
          mseg-meins = mseg-bprme.
          PERFORM bestelltext_lesen.
          CLEAR mabdr.
        ELSE.
          PERFORM material_lesen.
        ENDIF.
        PERFORM tab024_lesen.
        PERFORM t064b_lesen.
        PERFORM tab001w_lesen_2.
        PERFORM ladr_lesen.
        PERFORM helpdata1.
       PERFORM we03_ausgabe USING lgortsplit.
        PERFORM helpdata2.
      ENDLOOP.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING
              FORMNAME                 = 'ZGR_FRM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
           IMPORTING
             FM_NAME                   = GR_FM
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
          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 GR_FM
        EXPORTING
        ARCHIVE_INDEX              =
        ARCHIVE_INDEX_TAB          =
        ARCHIVE_PARAMETERS         =
        CONTROL_PARAMETERS         =
        MAIL_APPL_OBJ              =
        MAIL_RECIPIENT             =
        MAIL_SENDER                =
        OUTPUT_OPTIONS             =
        USER_SETTINGS              = 'X'
          ITAB1                      = ITAB_MKPF
          ITAB                       = ITAB_MSEG
          ITAB2                      = ITAB_LFA1
      IMPORTING
        DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            =
        JOB_OUTPUT_OPTIONS         =
        TABLES
          ITAB_OUT                   = ITAB_MSEG
          ITAB_MAT                   = ITAB_MAKT
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    PERFORM close_form.
    ENDFORM.
    Thanks in Advance
    Jitendra

    Hi,
    When you fires/triggers the Output in the Loop of GR's it will print the multiple docu's.
    Since you are using the Std program include, that may not be happening to print multiple doc's continuously.
    Generally we print/take the output of a single Document only in most of the cases.
    Regards,
    Anji

  • Smartforms - page protection problem

    Hi,
    I have made an invoice form with smartforms. To protect the positions of page breakes, I have made all position nodes in one folder note and set the page protection flag for that folder. Because in tables the page protection option is not working, I have made it all with paragraphs...
    This is my problem now:
    If the form has more than one page, I have to show the sum of all positions of the first page on the bottom of the page and one the top of the next page. Therefore I have calculated the sum inside the loop of the positions (at the end of the loop).
    This is normaly working... But if I have two pages and only <b>ONE</b> position does not fit on the first page, the calculated sum contains the sum of <b>ALL</b> positions, although the last position is shown on the next page!
    Any ideas, how I can only calculate the positions that fit on one page <b>FOR REAL</b>?
    Thank You very much!
    Cheers Arne

    Hi,
    I encountered a similar problem as ur doing.In dat scenario what i did was that I created a <b>Loop</b> instead of a table and secondly based on the page size please create a style with proper an appropriate tab and use this through out while displaying the line items.
    Using a tab will ensure equal spacing everywhere and the data will not overflow from any line and where ur writing a variable place an addition (C) at the end of that variables between the &. This also ensures that the data doesnt overflow and confines to the space.
    Hope this will help.
    Varun

  • Smartforms : page count problem

    Hi everyone,
    I am using the system variable SFSY-FORMPAGES and when the total pages is above 9, I get a star "*" instead of the real number of pages.
    Can someone help.
    Thanks in advance.

    Hi David,
      maybe there isn't enough space for the text in the field
    Try to use SFSY-FORMPAGES(C) (condense spaces) or try to give more space to the text.
    Let me know.
    Best regards,
    Manuel
    PS: please remember to close the thread and to reward points when your problem is solved. Thank you

  • Reports: Object not printing on 'ALL PAGES' as specified in Property sheet,

    Oracle Reports 6.0.8.11.3
    Object not printing on 'ALL PAGES' as specified in Property sheet, 'PRINT OBJECT ON' property.
    page size orientation has been verified at main report layout node 'f4', it is set 11x8.5
    Thanks for your help.

    Got it.
    Problem:
    Heading included in Main body printing only on first page even though, PROPERTY, ‘PRINT_OBJECTS_ON’ for all objects are set to:
    ‘ALL PAGES.
    Solution: Select the parent frame of the objects that are printing on all pages and drag it down to include the frame that encloses the Heading information that is currently not printing.

  • Problems printing duplex, page 1 on sheet 1 but pages 2 and 3 on sheet 2

    When I am printing documents in duplex form page 1 ends up on sheet 1, but pages 2 and 3 are on sheet 2. Why does it always skip one page? Please help me, I am out of options...

    Hi alexandra1987,
    Are you still facing this issue?
    Which application of Adobe you are using Reader/Acrobat and what is the version of Acrobat/Reader you have?
    Let me know how do choose duplex printing settings.
    Regards,
    Ajlan Huda.

  • I'm trying to print envelopes by using Pages merge.  It continues to read it as a 8.5X11 sheet even though I have set the page size to 6.5X4.75

    I've merged names and addresses to be printed in Pages.  The page size is set to 6.5 x 4.75 but the printer keeps trying to print as if it is an 8.5 x 11 sheet. Any ideas where I'm missing a setting?  I've been merging things for 25 years and I've never had this problem.

    Hi fruhulda!
    Thank you so much!  I called the printer company and finally got the problem solved.  This printer must print with the long side oriented as the pass through.  The envelope I was using had been oriented to have the short side pass through.  It doesn't really seem logic that the printer cannot print the sizes entered but when I changed the orientation in Page Set Up it worked. 
    Had I check this would have certainly helped.
    Melmom

  • Printing to dot matrix printer using continuous sheets

    Hi;
    Can anybody help me;
    We have a web-based application.We have developed it with java and jsp. We want to print out several bills to continuous sheet.We are doing printing out with internet explorer and getting first page arranged but the following pages are sliding down.
    Is there any way to print out to continuos sheet with dot matrix printer through java

    You mean you want the browser to do that? Frankly I don't think you are likely to succeed, but possibly using CSS (with an "@media print" section) might work. Specify fonts, font sizes, try to control everything that can be controlled through CSS. Note that this has nothing to do with Java.

  • Using C4795 printer for 4X6 photo printing. Prints not registered, can start randomly on page, skip

    C4795, printing 4X6 photos with new iMAC and iPhoto software.  Downloaded latest drivers.  Printing starts randomly on page,
    sometimes skipping half a page, sometimes just a sliver.  Prints are OK with my other 8150 printer, but not 4795.  Any ideas?
    Thanks, John

    Hi John.
    Perhaps it's a printer configuration problem (maybe the paper size is set to a different value than what's in the printer), but you may want to try printing with HP Photo Creations as a test. The program is a free download from www.hp.com/go/hppc, and can load photos from your iPhoto library.
    Here's a quick tutorial on printing 4x6 photos with HP Photo Creations:
    http://h30434.www3.hp.com/t5/Home-Web-Printing/HP-Photo-Printing-Software-How-to-change-predefined-s...
    Hope this helps,
    RocketLife
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • Problem Fixed! Print Apps with Scheduled Delivery continuing to print

    Some Scheduled Delivery Print Apps may have continued to print once selected as a Print Now function on an Officejet 6500, 7500, and 8500, Photosmart D110 and B210.  This has been solved as of June 23, 2011. 
    See the Managing Scheduled Delivery Apps page for setting up a new Print App with Scheduled Delivery.  Anytime you wish to unsubscribe follow these steps.
    Although I am an HP employee my posts and replies are my own.

    Hi N2KZJ,
    Try the solutions located at this website: How to Manage, Pause, or Unsubscribe from Prints and Faxes
    Please post here if you this solved your problem (and select Solved) or if you need further help.
    JamieAtHp
    I work on behalf of HP.

  • HP5610 printing partial page (intermittent problem)

    My HP5610 sometimes prints only  a partial page.  It begins printing, but about halfway through the page the print head simply continues to go back and forth in the same position.  It does not advance.  I have to cancel printing. 
    This is an intermittent problem.  Sometimes it prints the whole page.
    It has been a great machine and I hate to give it up.
    Anyone have an idea what the problem might be?

    Hi @Deb74 , and welcome to the HP Forums!
    I can see you're running into print issues.  I would like to help!
    Before we get started, I need a little info:
    Are you using Windows or Macintosh?
    Is it a 32-bit or a 64-bit system?
    Are you connected wireless, or via a USB cable?
    Are you able to make a copy without issues?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Hi There, I have a problem when trying to print either Email or from a web page.

    Hi There,
    I have a problem when trying to print contents fro either Email's or from web pages, the problem started after i opened Google earth and it down loaded Google Chrome i do not like Google chrome so i removed it from my pc via add and remove programmes since then when i try to print an email i get what looks like the computer settings for writing the email and not the text same for web pages, as anyone come across this problem before i can print any word or spreadsheet documents but problem is with email's and web pages.
    Many Thanks.

    Something changed on your system, possibly when Google Chrome installed. It could  be many things, but what it boils down to, is it needs to go back to the way it was. Either by removing whatever else might still be left from the install, or maybe by reinstalling the printer itself.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

Maybe you are looking for

  • My display keeps changing to 800x600 after upgrade to 10.8.3

    After upgrading to 10.8.3 my display keeps changing to 800x600 after it wakes up from sleep. I have to go to preferences and set again, and it works. It is quite annoying. Any clue.

  • Result file take the whole path of file

    I am using Java Mail, and it is working fine. I have a problem though, when I open the attachment, it contains the file path. For example, the attachments should be Result.zip, and then I should get the files if I unzip them. On the contrary, I am ge

  • Dev question: how to prevent Adobe Reader from copying pdfs to "Download/Adobe Reader"?

    I am making an app that downloads pdf files from a server and the users can decide to store them in the phone. Those files are kept in the app's private storage. The pdf files can be opened from inside the app. The problem is that every time a pdf is

  • Message command in report - Control M

    People, a basic question.. I have a report scheduled in Control M, but this report has a lot of MESSAGE command. After this job runs, can I access these messages or they are lost? Thanks!

  • Face Emergence (visage emergence) Photoshop element 8

         Hi ! My english was not very very good but I tried: On Emergence face, have 2 pictures, the first was the source, this picture have a good dimension 2048x1536 and the final picture have 1024x595, it's not easy to work with that. How can give a d