Smartform printing in PIN server.

Dear SAP Guru's..
This is a tipical problem which we are facing in our PIN server. while executing a report it will Display output in Smartform. But in Development sever it is working fine. While we are executing in Producation last colon is cutting upto 6 charecters. we checked all the Output controlls(Output device, page Formatte)..Plz do the needfull to solve the issue..Thanks in advance..
UR's
GSANA

There only a few possibilities for this if it is printed on the same printer.
-SPAD definitions must be the same
-driver for the porinter must be the same
-form must be the same (check form and customizing)
-if you use locl the locl must be defined the same on dev and prod
Otherwise let do your bais consultants do the work.
success., Gr. Frank

Similar Messages

  • Spool request not generated in smartforms printing

    Hii all,
            I have smartform, which was printing properly in QA server and few days back when i tried to get print from Production Server, it is not generating spool request. and in QA also it is not having same as on date.
    is there anythng to check from ABAP side or there is a problem of Basis.?
    kindly give soln for points .
    - Maharshi

    hi Maharshi,
    Gimme some what clear picture abt ur problem.
    What exactly the problem in QA server.
    I mean when it is working properly and when it is not?
    and what Function Modules u have used ..?
    and i wanna know is there any other print forms are working or not. if the other are working, it is not BASIS problem.
    Regards,
    Naveen

  • How to install P1102w Printer on win server 2003 without connecting the printer

    Hi guys,
    i have to insatall p1102w printer on my server 2003  to print from my client pc witch the p1002w locally connected when i use remote desktop connection.
    does anyone knows how to.

    Hi,
    The P1102w is an Host-Based printer, any host-based printer does not support Citrix / Terminal Services / RDP connection.
    You may find that listed on page of the following guide:
    http://bizsupport1.austin.hp.com/bc/docs/support/SupportManual/c03635702/c03635702.pdf
    You may try installing the drivers on the client itself and check if that may work..
    Hope that may help,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Smartform printing on Dot Matrix printer for continuous stationery

    Hi Friends,
    I'm throwing my smartform print output on printer using local printer .Now the problem is as i have designed the SF using A4 page size , the output on Dot matrix is my output (WHICH IS 1/3rd OF a PAGE) + rest of empty space which is actually wasting pages.
    Settings in SPAD are as follows:
    Output device : Lp01
    Device type : SWIN
    and page format : LINE_21
    Format Type : LINE_21
    What i want is a restricted output .please let me know the possible solutions and do i need to load the driver for my printer in SAP as well (Printer is  : wipro WEP 800 DX)
    Thanks and Regards,
    Sachin Soni

    Hi,
    Change the page settings in the form
    -> under the form attributes you can find the page format there you can set up your required format
    Thanks,
    Nethaji.

  • Problem with cheque printing in production Server Tcode - FBZ5

    Hi
    Cheque Printing using SAPScript with TCODE FBZ5.
    I had a problem with cheque printing in production Server. TCODE - FBZ5
    It is working fine in Development Server with proper alligned data but not coming alligned data in production server. I compared, dubugged and checked the allignment...there is no difference I found.
    Could you please let me know, where the problem is occuring.
    The amount is not coming properly and coming out of the box.....but it is coming properly in development server.
    Sekhar

    Hi,
    For Amount field you must print like &amount(C)&. And it must be printer settings only. Because i gor same like this error while printing cheque. at that time Basis team had made the changes in printer settings.

  • How can I list print queues per server via power shell script

    Hello,
    we are managing many print servers on our domain environment,  now for auditing purpose I need to report print queues per server,  and it seems bit difficult task doing it via GUI in print management view, could someone help me with script which
    gets me the no. of print queues on each print server.
    Also I need to list all the print drivers installed on each print servers. 
    I tried to list the drivers " Get-WmiObject win32_printerDriver -filter " but this will get me complete information about the driver, I need to list only the driver name (-filter) either _RELPATH or _PATH
    dibu

    You can also use WMI like this:
    (get-WmiObject win32_printer -computer ws702).count
    I don't understand what you mean by list only.  Just select what you need.
    See: http://technet.microsoft.com/en-us/scriptcenter/dd742419
    That will give you some basic background on how to use PowerShell to get the properties of objects.
    ¯\_(ツ)_/¯

  • Smartform print program for order confirmation

    Hi experts.
    I am looking for a smartform print program for order confirmation.
    The order confirmation in standard is a script with the name RVADOR01 and I tried to copy and change but I don't know which to eliminate and whcih to keep it.
    If any body written the program already please provide me or provide the link to check.
    Thanks in advance
    Sai

    this is the processing form.
    form processing.
      data: lf_fm_name            type rs38l_fnam.
      data: ls_control_param      type ssfctrlop.
      data: ls_composer_param     type ssfcompop.
      data: ls_recipient          type swotobjid.
      data: ls_sender             type swotobjid.
      data: lf_formname           type tdsfname.
      data: ls_addr_key           like addr_key.
      data: document_output_info type  ssfcrespd,
            job_output_info type ssfcrescl,
            job_output_options type ssfcresop.
      perform get_data.
      check retcode = 0.
      perform set_print_param using      addr_key
                                changing ls_control_param
                                         ls_composer_param
                                         ls_recipient
                                         ls_sender
                                         retcode.
    *Get the Smart Form name.
      if not tnapr-sform is initial.
        lf_formname = tnapr-sform.
      else.
        message e001(/smb40/ssfcomposer).
      endif.
    determine smartform function module for invoice
      call function 'SSF_FUNCTION_MODULE_NAME'
        exporting
          formname           = lf_formname
        importing
          fm_name            = lf_fm_name
        exceptions
          no_form            = 1
          no_function_module = 2
          others             = 3.
      if sy-subrc <> 0.
      error handling
        retcode = sy-subrc.
        if sy-subrc = 1.
          message e001(/smb40/ssfcomposer).
        endif.
        if sy-subrc = 2.
          message e002(/smb40/ssfcomposer) with lf_formname.
        endif.
        perform protocol_update.
      endif.
      call function lf_fm_name
        exporting
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          user_settings        = ' '
          is_nast              = nast
          is_vbdka             = vbdka
          is_addres            = addr_key
        importing
          document_output_info = document_output_info
          job_output_info      = job_output_info
          job_output_options   = job_output_options
        tables
          it_vbdpa             = tvbdpa    "Item information
          it_vbdpau            = tvbdpau   "Subitem numbers
          it_vedpa             = tkomservp  "Contract Item Validity
          it_vedka             = tkomservh  "Contract Header Validity
          it_vedpn             = tkomservpn "Contract Item Cancellation Data
          it_vedkn             = tkomservhn "Contract Header Cancellation DA
        exceptions
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          others               = 5.
      if sy-subrc <> 0.
        retcode = sy-subrc.
        perform protocol_update.
    get SmartForm protocoll and store it in the NAST protocoll
        perform add_smfrm_prot.
      endif.
    endform.                    "processing

  • Need to install Canon Network Printer drivers on server...?

    I am about to add a Canon PIXMA iP5200R network printer to my intranet via its Ethernet connection. I have configured and tested printing sucessfully from my PowerBook G4 directly to the printer via my intranet after installing the necessary drivers and software from Canon.
    Now I will like to use Mac OS X Server running on my Xserve G5 to manage the printer, and I do have some questions pertaining to this:
    First question: since I don't think Canon supplies any PPD file for most of its printers, do I need to install the iP5200R drivers and Canon IJ Network Utility on the Xserve?
    Second question: is there a Command Line Interface for Printer Setup Utility, or their relevant commands in CUPS, or do I need to use ARD to get the GUI of Printer Setup Utility on my Xserve?
    Third question: after using the GUI or CLI of Printer Setup Utility to setup the printer on the server side, will this appear in WGM when I bring up the window to add a new Print Queue in Print service?
    Fourth question: according to the Apple Print Service Documentation, if I share the Print Queue via IPP (I will only be turning this protocol on) and I have installed the Canon drivers and software on all the Mac (client) computers on the intranet, then I can use specific features of the Canon printer (such as direct CD/DVD Labeling), assuming if the Mac computers select this Print Queue via their Printer Setup Utility?
    Fifth question: this Canon iP5200R printer has the ability to allow only certain computers to send print jobs to the printer via a table of either MAC ID or IP addresses, so if I enable this feature on the printer and limit to print jobs coming from the server only, I should be able to prevent user from bypassing the server to print, assuming I am also locking down the selection of printers in Print Setup using WGM?
    Thank you for reading.

    Questions have been answered.

  • I am unable to get print from JBoss server

    i am unable to print from JBOss server , but i am abele print from JRun , same code deployed in JBOss , i am getting this error:
    sun.misc.ServiceConfigurationError: javax.print.PrintServiceLookup: : java.io.FileNotFoundException: http://devuc.corporate.ge.com/ftlt/META-INF/services/javax.print.PrintServiceLookup      at sun.misc.Service.fail(Unknown Source)      at sun.misc.Service.parse(Unknown Source)      at sun.misc.Service.access$100(Unknown Source)      at sun.misc.Service$LazyIterator.hasNext(Unknown Source)      at javax.print.PrintServiceLookup$1.run(Unknown Source)      at java.security.AccessController.doPrivileged(Native Method)      at javax.print.PrintServiceLookup.getAllLookupServices(Unknown Source)      at javax.print.PrintServiceLookup.lookupDefaultPrintService(Unknown Source)      at sun.print.RasterPrinterJob.lookupDefaultPrintService(Unknown Source)      at sun.awt.windows.WPrinterJob.getPrintService(Unknown Source)      at sun.print.RasterPrinterJob.print(Unknown Source)      at sun.print.RasterPrinterJob.print(Unknown Source)      at presentation.BaseFrame.doPrint(BaseFrame.java:1068)      at presentation.MainFrame.JMenuItemPrintDataSet_actionPerformed(MainFrame.java:1368)      at cmpresentation.CMMainFrame.access$33(CMMainFrame.java:1)      at cmpresentation.CMMainFrame$SymAction.actionPerformed(CMMainFrame.java:850)      at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)      at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)      at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)      at javax.swing.DefaultButtonModel.setPressed(Unknown Source)      at javax.swing.AbstractButton.doClick(Unknown Source)      at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)      at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)      at java.awt.Component.processMouseEvent(Unknown Source)      at java.awt.Component.processEvent(Unknown Source)      at java.awt.Container.processEvent(Unknown Source)      at java.awt.Component.dispatchEventImpl(Unknown Source)      at java.awt.Container.dispatchEventImpl(Unknown Source)      at java.awt.Component.dispatchEvent(Unknown Source)      at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)      at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)      at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)      at java.awt.Container.dispatchEventImpl(Unknown Source)      at java.awt.Window.dispatchEventImpl(Unknown Source)      at java.awt.Component.dispatchEvent(Unknown Source)      at java.awt.EventQueue.dispatchEvent(Unknown Source)      at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)      at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)      at java.awt.EventDispatchThread.pumpEvents(Unknown Source)      at java.awt.EventDispatchThread.pumpEvents(Unknown Source)      at java.awt.EventDispatchThread.run(Unknown Source)
    can anybody help on this
    Message was edited by:
    ravindar_reddy

    no , i am tring to print some data form swing component
    that time i am getting this error

  • Smartform printing & sending multyple table data

    Hi All..
    I designed a smartform & print Pgm.( for Invoice not SAP standard)
    How can i send multiple table(kna1,vbrk,vbrp,vbdk) data in to a smart form? & how can i declare that internal table in smart form & in print pgm?
    And it is also not printing.even i set it in NACE.
    Plz any one can help me asap..
    Thanks & Regards
    Raj

    Hi Raj,
    You must have to create a new Structure and a new TABLE TYPE in program to send multiple data.
    Lets say, you have created Main internal table in your print program to send multiple data to smartforms as below.
    TYPES: BEGIN OF ty_cus,
              F1,
              F2,
              F3,
              F4,
           END OF ty_cus.
    so, instead defining above types in your program, just create a new structure(lets say Z_CUS) with the above fields in SE11.
    Then create new TABLE TYPE (ZT_CUS) with that structure (Z_CUS).
    Now, in your print program, create internal table with the type of Z_CUS as below.
    DATA: it_cus TYPE TABLE TYPE z_cus,
          wa_cus TYPE z_cus.
    And in the Layout, Form interface - Tables section give it as below
    IS_CUS    TYPE   ZT_CUS.
    In your print program, assign your internal table to IS_CUS for generated function module.
    CALL FUNCTION fm_module.
    EXPORTING
    IMPORTING
    TABLES
       IS_CUS   = it_cus
    EXCEPTIONS
    Let me know if you hav any quesions

  • Can I print report to a printer thru report server?

    If I use a report server and run the application thru browser, can I print the report to a print thru report server? and How?

    hello,
    use DESTYPE=PRINTER to print directly to a printer. you have to set DESNAME to the name of the printer
    regards,
    the oracle reports team

  • Smartforms - Printing Label

    Hello All,
    I´m developing a smartform to print information in a label that has 6cm height.
    My problem is that when I print the informaton the smartform prints information of the next label on the previous information. It seems that the smartform understands my label has 5cm of height.
    How can I 'enlarge' the height of the window or table so smartform will print the correct information on the next label ?
    Thanks in advance.
    Best regards,
    Marcelo Perine

    Matt,
    The smartform receive information in Form interface -> Tables -> ZTB0014
    Each register of this table is printing in one label. Then, my problem is that the smartform is printing two registers in one lable. It´s seens that the new-page function ins´t working.
    Main window
    -Loop
    --Table
    ---Text1
    ---Text2
    --Command
    Main - Output options
    Left margin 0,00 CH
    Upper margin 0,00 LN
    Width 82,00 CH
    Height 15,00 LN
    Loop
    Internal table ZTB0014 INTO EST0014 
    Table
    Table width 80,00 CH
    Horizontal alignment Left 0,00 CM
    Minimum Height 0,00
    Line1 50,00 CH | 30,00 CH
    Text1
    (1) Recebedor das Mercadorias.    
      &EST0014-NAME1&                 
      &EST0014-STRAS&                 
    &EST0014-ORT01& - &EST0014-REGIO&
      &EST0014-ORT02&                 
      CEP &EST0014-PSTLZ&             
    (4) Transportadora                
      &EST0014-TRANS&                 
    Text2
    Volume             
      &EST0014-VOLUM&  
    Command
    X Go to new page %PAGE1                                            
    Reset paragraph number P1
    Message was edited by: Marcelo Perine
    Message was edited by: Marcelo Perine
    Message was edited by: Marcelo Perine

  • Smartform Printing on both sides

    Hi.
    I am fasing an issue in smartform printing.
    we are printing the Invoice.this invoice data is dynamically comming on the front side of the page.
    and printing normally.
    but back side of the page they want to print the comapany rules(on every page back side).(these rules are comming with in one page only).
    so on the front side this invoice data and back side Comapany rules shouls come.(we don't know how many pages of invoice data will come).
    Plesae help me to solve this issue.
    Thanks in advance,
    Regards,
    Eswar

    HI Eswar,
    If you have only one page made in your smartform you can make one more page with just the main wiindow.This window will have all the rules of the company.Now make the first page point to this page and make this page point to the first page.
    Select duplex printing in the page attributes and print.This will solve the issue.
    Reward if useful.
    Thanks,
    Dishant

  • Remote Desktop local printer redirection problem - Server 2012 Foundation

    Hi,
    I am trying to print from Windows Server 2012 Foundation to my local printer hosted on Windows 7.
    When I enable local resources in the RDP client, I can see my printers on the server like redirected. All seems like no problem occured. But only print does not work. ;-)
    I can see the document name in the queue with Error status.
    I tried set up GP with disabling Easy print, the drivers are identical on both machines, event logs are clear.
    The server is freshly installed, running only File server role. No Domain controller role is set. No Terminal Service is set (i think in Foundation is it not possible), only allowed RDP.
    RDP client is the newest. I have not any problem to print from other servers (WS2003, WS2008R2) using this printer. Everytime is the printer automatically redirected to TS*** port and works.
    I spent few hours searching solution with no effect.
    Any idea? Many thanks!

    Hi,
    Did you find any error message during this issue?
    Please check you have enabled necessary port for printer redirection on server side. You can check “Do not allow client print redirection” is disable under GPO setting. Also the user must have enough permission to print the document. Please check below link
    for more information.
    1. Terminal Server and Printer Redirection
    2. Five reasons printer redirection causes Windows printing problems in RDS
    Hope it helps!
    Thanks,
    Dharmesh

  • Default D:\i386 When Adding 86 Print Driver To Server 2008 R2 64

    This has happened several times with a printer that i have installed on the server. 
    Printer works fine, but in sharing, additional drivers, when adding a 86 driver, i get the box "PLEASE PROVIDE PATH.....COPY FILES FROM ........D:\i386.
    I have the proper driver, i installed it on my 32 bit xp computer, and printed fine by adding the printer by tcp on my computer.
    I am trying to add this driver, so when i share the printer on the server, an xp machine can receive the drivers and install .
    Any ideas
    Thanks

    Check once again whether you are configured printer properly or not?
    Still you face problem, Get a help from respective
    print/fax forum 
    Regards, Ravikumar P

Maybe you are looking for

  • Mark a series of In Out Points before capture from DV tape?

    When Using Adobe Premier Pro a few years back I seem to remember playing a tape all the way through, marking In/Out points, all the way along the tape, then going back to the beginning click Batch Capture ( or similar) and the machine would rewind th

  • HT201303 Random Apple id password resets - how to stop this?

    A couple of months ago I started getting emails from Apple titled "How to reset your Apple Id password" and then more worryingly "Your Apple Id password has been reset".  This happened several times over the next few days and I know this was not done

  • 10.1" tablet uses full install of Windows 8.1

    I have just purchased a new tablet. It is an "Unbranded" Windows 8.1 - 10.1" - Tablet - 32GB. My question is where does this tablet fall into on installation. Since it is running the full Windows 8.1 do I install the Adobe programs on it like I did f

  • Firefox and 10.4.6 update - got unusual flashes

    Hi After my 10.4.6. update, when I am using firefox... and loading a new webpage, sometimes my whole screen flashes to a blank blue screen on my mac mini (power pc) for no apparent reason. Didn't have this problem before the update. Has anyone else s

  • Bash: Passphrase encryption program

    Bash: Passphrase encryption program I wrote this a while back while playing with gpg. #!/bin/bash # Passphrase encryption program # Created by Dave Crouse 01-13-2006 # Reads input from text editor and encrypts to screen. clear echo " Passphrase Encry