Problem with a sapscript

We have a problem with a sapscript which contains a logo in bmp format.
On some printers, the print is correct. In some others, the logo does not appear or looks like a draugth-board. These printers are principally located in Belgium, so maybe the configuration is different... But some french printers have same problem.
The print seems to be good in SAP spool, no SAP error. I don't know how to investigate in this problem.
Maybe somebody had this kind of problem...
Best regards
Daniel

Hi Christian,
You can try this way to solve the problem.
Edit the image in MS Paint and save the image as 16-bit colour bitmap image. Then try to upload the same in SE78. Hope this will solve your problem, because once i too had a same kind of issue and tried in that way... it worked out.
Thanks & regards,
Tulasi.

Similar Messages

  • Problem with printing sapscript

    hi experts.
    I'm now having a problem where text which is supposed on more than one page is being printed on one page on top of the other text,that is, text for example which is supposed to be 3 pages is coming out on the same page. but when i'm previewing the form all the pages are being displayed. i have created iirst page and next page for the form. is the problem with form or the printers?

    Hi,
    You have given the Next page is Next page for First page and
                                next page is Next page for Next apge also,
    So, your text should be printed in 3 pages, what ever you are getting the print preview, that should come out from the Printer
    Regads
    Sudheer

  • Problem with printing sapscript on new HP P2015 printers ?

    A brand new printer is installed the HP P2015 at a customer. suddenly all sapscripts are printed in courier. we have already updated the drivers but somehow it doesn't seem to work ?
    Is there something else that needs to be changed on the SAP side or just don't buy HP again perhaps the sollution ?

    >
    A. de Smidt wrote:
    > the driver ZHHP2015 from http://h71028.www7.hp.com/enterprise/cache/37011-0-0-225-121.html
    >
    > is installed. only it's still not working.
    > It became worse except for the title which is in lucida sans EF. but everything that is helvetica is printed through, so a whole sentence is compressed into 4 cm width over each other
    >
    > with the HPLJ5 driver the font at least was translated to a scalable courier kind of font
    hello Smidt , where you find that driver ( ZHHP2015 ) i dont see it in the link you post ? if you can it can you ema1l me it please ?
    ealmonte at e-diesco dot com
    thanks

  • Printing problem with sapscripts

    Hi everybody, I have a problem with a sapscript. This is called from a user exit, and take one value to print . I have that value in the sapscript with the same value between &&, but it doesn't print anything, only print the text I have there. Does anybody know which could be the problem??
    Thanks in advance

    Hi....
    it will display correctly...
    just check it once.
    if u have a variable called <b>'name'</b> in the print program then use <b>&name&</b> in the script. it will work fine.
    Just check it once.
    Reward points if useful......
    Suresh......

  • Font problem in a sapscript

    Hi everybody, I have a problem with a sapscript, I have tried to change the font of the text but it is not possible. It is always with the same format, I have changed in everywhere, I have created new parragraph, new character but it is not changing. Does anybody know if it could be that there is only one kind of fond supported by the system??
    Thanks, in advance

    Hi
    There are some std Charcter formats like BOLD, CENTER like that
    just write a field using this BOLD format and see
    We can create our own paragraph format and define the FONT and use
    Just check you might not be writing the fields correctly with the font.
    if you use format of bold write
    /    <B>&ITAB-KUNNR&</>
    if ZA is paragraph format
    write
    ZA   Purchase Order
    first check some Text field and see other fields.
    Reward points if useful
    Regards
    Anji

  • Problem with sap script while transporting from dev to quality server

    Hi experts,
    In dev server i am getting correct output in sap script.But when it is transporting to quality server alignment is different.Printer name is same both in dev and quality.Please give an answer for this query.
    Thanks
    suresh

    Hi Suresh,
    This could be a problem with the Sapscript buffers. Try running the report RSTXDELL on the system to clear the Sapscript buffers?
    To do this you can use RSTXDELL report with default settings except it is better to have * instead of the current client number in the Client field.
    After this, create a new spool and see if the problem is resolved?
    Regards,
    Aidan

  • Dunning as PDF - Problem with output

    Hi experts,
    I have a problem with the dunning as email.
    Everything works fine here with the dífferent threads (BTE 1040) - but the output is not in PDF-format. When I look at SOST, the attachment ist in *.EXT format...
    Does anybody know what's the problem?
    Thanks
    Michael
    Additional information: The file is an .pdf file - when I save it as .pdf, I can open it normally...

    Hi,
    In transaction SCOT, check the format for Sapscript/Smartforms. Double click on the node for email. e.g .SMTP. In the pop-up window there is a section for supported address types. Beside 'Internet', click on the button SET. In here select PDF as the output format for Sapscript/Smartforms and for ABAP lists.
    Also in SCOT, check Setttings -> Device types for Format Conversion, ensure that PDF is the target format.
    Regards,
    Aidan

  • Problem with total page numbers in Scripts

    Hi,
    I have a problem with total number of pages in the Script.
    I have a script of 15 pages.
    On every page, I am using &PAGE& of &SAPSCRIPT-FORMPAGES(C)&.
    Problem is : I am getting only single digit for SAPSCRIPT-FORMPAGES as long as the page number remains in single digit - like -
    1 of 1
    2 of 1
    3 of 1... till 9 of 1.
    But from 10th page, it is printing :
    10 of 15
    11 of 15
    12 of 15... till 15 of 15.
    So, i think the symbol SAPSCRIPT-FORMPAGES(C) is filled with value 15 , but it is prinitng only the first digit '1' for pages 1 to 9 and then printing both the digits '15' for pages from 10 onwards.
    So, please help me out in this problem.
    Thank you.

    Hi Ven,
    The CONDENSE option cannot be used on the program icon SAPSCRIPT-FORMPAGES
    (C) without an explicit length specification: This symbol is
    only replaced with a value after the form has been completely edited, as the
    total number of pages of a form is first known in the program function
    END_FORM or CLOSE_FORM. However, the size of the symbol (number of
    characters) is reserved correctly when the symbol first occurs, with the
    current page number. Therefore, only one character is reserved for option C
    (CONDENSE) on pages 1-9, two characters on pages 10-99, and so on.
    If you are sure that the total number of pages doesn't cross 99(i.e 2-digit number), then use the FORM pages as SAPSCRIPT-FORMPAGES(2CZ).
    Here Z will suppress the leading zeros, for the total number of pages.
    Hope this information would be useful for you.
    Reward points if this is useful.
    Pavan.

  • Problem with window focus in xmonad

    Hi!
    I have the following problem with xmonad:
    Suppose I do the following:
    1) go to fullscreen view
    2) Start an application app1 e.g. evince
    3) start another application on the same workspace app2 e.g. okular
    4) open in app2 a dialogue (e.g. a "file open" dialogue)
    5) press mod + tab until app1 is in the background of the dialogue
    (which is floated)
    6) click on the dialogue-window.
    Now the "background window" changes from app1 to app2. Is there a way
    to disable such a behaviour?
    Thanks
    michael
    Last edited by cm100 (2010-06-12 07:01:38)

    Hi
    It's not necessary to use fm WRITE_FORM, if the data to be written are placed in a window but not assigned to a text element, they will be written automatically.
    So try to check if the data are in text element in your sapscript
    Max

  • I had a problem with print preview of billing document.

    HI all,
    I had a problem with print preview of billing document which contains two output types ZR1 ZR2..
    For the footer text of billing document I maintained the font size as 7,5 pts, But when i go for print preview from output type ZR1 the font size of footer text is very small and looks good for output type ZR2.
    If i change the print options-->logical destination of output type ZR1 same as Output type ZR2, the footer text looks good.
    I think there is some issue with logical destination in print options for the output type ZR1, how can i resolve  it.

    hi,
    for both the output types , r u using same sapscript or smartform?
    if yes then, u can control it in output options of smartform and also in sapscript , you can control through if condition.
    and if differect sapscript or smartform then you should not get such problem.
    you can check the sapscript or smartfrom in TNAPR table.

  • 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.

  • Problems with form printing

    Hi experts,
    How could it be if I want to test my sapscript it doesn't ask for the printer and the request goes to directly into the spool. The problem with this I cannot choose in which printer do I want to print it goes immediately into the spool.

    Hi!
    In SE37, check out function module OPEN_FORM
    It has a parameter, called OPTIONS.
    Check out its documentations and parameters.
    Regards
    Tamá

  • Problem with SAPFTP hanging when run online

    I searched earlier for a solution and didn't find anything, so hopefully this tip is not a repeat...
    If you use SAPFTP RFC destination (such as with function FTP_R3_TO_SERVER) which uses sapftp.exe on you local machine and your running Windows 7 it might not work because it gets blocked by the firewall, but Windows 7 probably won't give you a popup to allow/deny. The SAP transaction will just hang and then timeout. So, go into Control Panel -> Windows Firewall -> Allow a program... and check the boxes by SAPFtp to allow access manually.  This will probably solve your problem.

    Hi,
    try with: &PAGE& / &SAPSCRIPT-JOBPAGES&
    Best regards.

  • Problem with a Zebra Printer TLP 2844

    Hi all
    We have a problem with a Zebra TLP 2844 barcode printer. I can´t print any document(common documents or barcode levels Sapscript).
    I read and applied the note: "Note 179534 - Label printing with Zebra printers (SAPscript)" without sucesfully (and import ZLB_ZEB2 and zlb_ZEB non sap native drivers)
    1) printer is attached to pc-windows host with sapsprint and is shared resource
    2) from R/3, access method is S 
    namepcprinter   and  Device Type: ZLB_ZEB2
    3) From R/3, the spool request for Zebra are finished ok but they aren´t printed
    4) if connect a HP printer using this procedure, then the document are printed ok.
    The documents sending from Windows (words,txt docs) are printed ok !!!
    There aren´t errors for sapsprint log.
    Does anyone help me, is this model of "Zebra" compatible for SAP?
    Regards,
    Daniel

    Marcelo,
    I would like to know which driver SAP is suggesting to use for your printer? Are you using that one?
    Also, is the printer driver is properly installed?
    Are you able to see the print overview?
    Please check if the proper printer driver is installed. You can get an idea about the drivers from below link:
    http://www.nodevice.com/driver/company/Zebra.html
    Regards,
    Sujit.
    Edited by: Sujit Kumar Banerjee on Mar 29, 2011 12:41 PM

  • A problem with threads

    I am trying to implement some kind of a server listening for requests. The listener part of the app, is a daemon thread that listens for connections and instantiates a handling daemon thread once it gets some. However, my problem is that i must be able to kill the listening thread at the user's will (say via a sto button). I have done this via the Sun's proposed way, by testing a boolean flag in the loop, which is set to false when i wish to kill the thread. The problem with this thing is the following...
    Once the thread starts excecuting, it will test the flag, find it true and enter the loop. At some point it will LOCK on the server socket waiting for connection. Unless some client actually connects, it will keep on listening indefinatelly whithought ever bothering to check for the flag again (no matter how many times you set the damn thing to false).
    My question is this: Is there any real, non-theoretical, applied way to stop thread in java safely?
    Thank you in advance,
    Lefty

    This was one solution from the socket programming forum, have you tried this??
    public Thread MyThread extends Thread{
         boolean active = true;          
         public void run(){
              ss.setSoTimeout(90);               
              while (active){                   
                   try{                       
                        serverSocket = ss.accept();
                   catch (SocketTimeoutException ste){
                   // do nothing                   
         // interrupt thread           
         public void deactivate(){               
              active = false;
              // you gotta sleep for a time longer than the               
              // accept() timeout to make sure that timeout is finished.               
              try{
                   sleep(91);               
              }catch (InterruptedException ie){            
              interrupt();
    }

Maybe you are looking for

  • Creation of vendor based on the title

    while creation vendor master record the system is asking title (Individual,company) if iam select individual  vendor name,address........., Afterthat j1id we will give the vendor pan numer, ECC Number so and so If i given vendor name this vendor is b

  • IPad safari to apple tv, view safari & google the web from apple tv?

    iPad safari to apple tv, view safari & google the web from apple tv? Is this possible ? Via iPad to apple tv. How ? What are the steps to make it so? Using latest iPad 1 os system.

  • MacBook-Pro battery can not retain charge

    Hi, I have this Macbook-Pro 13 inch since 2010. I have very sparesely used it. Recently i discovered it's battery is not able retain charge. I charged it overnight. In the morning i found battery charge is 0%. It was very poor by apple standard for a

  • Digital audio adapter for analog phones

    I would like to use the Toslink output and use a digital-to-analog headphone amp for my studio-quality headphones. I can find a digital to analog converter for quite a large sum of money - for me - at around $500. 1. Does anybody have any ideas for a

  • Margin/Tiling

    Sitting here in a Computers in Design class.  Our "professor" has his sample prints for us to match ours to.  His is like it's scaled up a bit larger than what all of ours are.  So since all his students drawings were matching he went through to make