SAPScript graphic not printing

Hi Folks
I have a problem in a 3.1i system (yes that's right 3.1i - ah those were the days...I remember when..etc).
I have changed a SAPScript layout (just the contents of a text element in the main window) and this works fine. However something is now causing the logo in the header window to not print at all (neither print preview nor hard copy). The standard text is there but I can not get this to print out from SO10 either.
I don't think I have changed anything that could have caused this and it may be coincidence, but does anyone have an idea of what could be causing it?
During testing of this problem, I have created a new layout and included the same logo and other graphics all with no result. I have checked that all graphic are created from Tif files (version 6 no compression).
Now I have run out of ideas...
Thanks in advance.
Nick

Fixed it by uploading the image again. Don't know why it didn't work before but it does now.

Similar Messages

  • SAPScript Image not printing

    Hi all,
    In SAPScript I can see an image in the print preview, but when i print it is not printing from spool, other text parts are printing.
    Please help me in solving this.
    Thanks

    Hi,
    It should print from spool. Please check the spool whether the image is there or not.
    Regards,
    Teddy Kurniawan

  • Graphic not printing correctly

    Hi, I am trying to print the contents of a JPanel. The contents consist of a series of graphics. When i print it to a pdf file, only a portion of the content is printed and it doesnt include any corners so I am confused as to how Java decides what to print. Any help is appreciated. Thanks.

    Hi Kyle,
    I'd be happy to elaborate!
    Probably, where you're at now, you have your component printing correctly at the top left of your page. I'm guessing the problem now lies in the fact that it's going off the page at the bottom or the right. Is this correct?
    If so, you can tackle this two ways. The first is to break up the component at useful intervals and print it across different pages. For example, if you were printing a table, you could print a bunch of rows on one page and a bunch on another.
    For this approach, for every valid page you would simply figure out what part of the component needs to be printed and only print that part.
    To print any particular rectangle of the component (x, y, w, h) you
    would do the following:
    // The graphics passed to print is actually a Graphics2D
    // cast the graphics object to Graphics2D for a richer API
    Graphics2D g2d = (Graphics2D)g;
    // translate into the right co-ordinate system
    g2d.translate(pf.getImageableX(), pf.getImageableY());
    // translate the graphics so that when you print the component,
    // the part that you want will go into the top left of the page
    g2d.translate(-x, -y)
    // set a clip region so that only the part of the component you
    // want will be printed on the page
    g2d.setClip(x, y, w, h);
    // now just print the component
    component.print(g2d)Now the second approach is to MAKE the component fit on the page. That is, shrink it down. Say it's too wide and you need to squish it. Here's how you'd do it.
    // cast to Graphics2D
    Graphics2D g2d = (Graphics2D)g;
    // calculate the factor by which you need to scale
    // (note that PageFormat has both getImageableWidth()
    // and getImageableHeight() describing the area you should
    // draw into)
    double sf  = pf.getImageableWidth() / component.getSize().width;
    // if the component needs to be squished
    if (sf < 1.0) {
        // scale evenly horizontally and vertically
        g2d.scale(sf, sf); 
    // print the component
    component.print(g2d);Notice that I've suggested using the same scale factor for both horizontal and vertical. You could calculate different scale factors sf1 and sf2 for horizontal and vertical and then do "g2d.scale(sf1, sf2)" but then the component might look squished. The best bet would probably be to use the larger of the two.
    Hope my little tutorial helps!
    Shannon Hickey (Swing Team)

  • SAPscript pages not printed correctly

    Hi all,
    I am facing a problem in SAPscript. The problem is while I am checking the form in the Print preview, I get only one page as required(I have designed only one page) but when I print it I am getting two additional pages with my required page.
    Can any one guide me as to what might be the problem??
    Thanks,
    Susanth.

    hai  Susanth Swain,
    In Basic settings maintain NEXT Page As First Page  .
    Regards.
    Eshwar.

  • Logo not printing for Zebra printer

    Hi All,
             I have a requirement to print company logo after executing MIGO using Zebra printer. I have added the Zebra print parameters in SAPscript and uploaded the ITF file of logo to SO10 and from there copied to my SAPscript and tried printing, there is no logo displayed. I have tried using including standard text in sapcript with help of INCLUDE text statement that also is not working. Please help me to print logo using SAPscript for zebra printers.
    Thanks & Regards,
    Priya

    Hi All,
          If I directly printing the uploaded ITF file from standard text, I am able to print the logo. But when copy paste the same code in SAPscript its not printing. Please can anybody explain why?
    Thanks & Regards,
    Priya

  • SapScript Data is not printing in Address window

    Hi all,
        I am having a problem regarding printing some values in a window of sapscript.It prints data in that window for some input and not for others input. The structure , which is being passed to this window is having values in print program all the cases.  I get into the sapscript in debugging mode and found that the structure is having values fr all the test run ..But its still not printing in some cases.The window is coming as blank.
    the code in the editor of the window is :
    POSITION WINDOW
    BOX FRAME 10 TW
    AS <B>&ztfin-fld18'/'&&t_ztfin-fld18&</>
    ADDRESS PARAGRAPH AD
    ADDRESSNUMBER &DKADR-ADRNR&
    TITLE       &DKADR-ANRED&
    NAME        &DKADR-NAME1&, &DKADR-NAME2&, &DKADR-NAME3&, &DKADR-NAME4&
    STREET      &DKADR-STRAS&
    POBOX       &DKADR-PFACH& CODE &DKADR-PSTL2&
    CITY        &DKADR-ORT01&, &DKADR-ORT02&
    POSTCODE    &DKADR-PSTLZ&
    COUNTRY     &DKADR-LAND1&
    REGION      &DKADR-REGIO&
    FROMCOUNTRY &W_CLERK_LAND&
    ENDADDRESS
    can sugest me something.
    Reward poits guranteed.

    Hi Vijay..please have look in this..
    Case: text is printed in address window
    DKADR-ADRNR     xxxx
    DKADR-NAME1     xxxx
    DKADR-STRAS     xxx
    DKADR-PFACH     xxxx
    DKADR-ORT01     xxx
    DKADR-LAND1     xxx
    DKADR-REGIO     xxx
    rest are blank
    Case: text is not printed in address window
    DKADR-ADRNR     xxxx
    DKADR-NAME1     xxxx
    DKADR-NAME2     xxxx
    DKADR-STRAS     xxxx
    DKADR-ORT01     xx
    DKADR-LAND1     xx
    rest are blank
    is the Addresss CALL IS failing because of DKADR-REGIO = space ?

  • InDesign Book Project...some images/graphics not appearing in print-ready PDF

    Some images/graphics not appearing in print-ready PDF. Why? and how to fix.
    The images are linked.

    That didn't work, but i copied images from other parts of my document that did work and pasted/resized to replace images that didn't import and that seemed to work.
    still wish i could figure out why it happens in the first place so i don't have to do this other process.

  • Acrobat Pro 8 will not print some graphics, any ideas?

    I am printing from Word 2007 to an Acrobat Pro 8 PDF.   When I do so, some of the graphics will not show up.   They seem to be in the document as when I highlight them, they show they are blocked and I can actually copy the stuff by highlighting it and copying, but it will not print or display.
    This seems to be a new problem, as it worked fine, then I am not sure what trigered it, but now it will not print all the graphics.   The graphics are just JPGs
    Note the document looks good on the screen, but when I create a PDF or print the PDF, it will not print.
    I also see this a lot when I use my PrintShop Mail program, which uses Acrobat to genterate it files.
    Any ideas?
    Regards,
    Geoff

    Since Acrobat is not an Apple product, you would probably be better off posting your question on Adobe's own forums as they would be geared more toward the issue than an Apple forum:
    http://www.adobeforums.com

  • Logos not printing in SAPScript in background

    Hi all,
    Company logo is part of check printing, which is developed using SAPSCript.
    The printed checks have the logo, if the job is run from foreground.
    But, when check printing is scheduled, it is not getting printed.  Ideally, check printing will be a scheduled process only.
    Also, this issue happens with certain users only.  Can anybody help me in identifying the auth object that relates to logos?
    Request the experts to provide input on these.
    Regards,
    Sridevi
    Edited by: Sridevi on Jul 2, 2008 10:39 AM

    Hi,
    I ran ST01 and found S_BDS_DS object missing.
    Regards,
    Sridevi

  • F110 - Pmnt adv - can specify bespoke SAPscript but not bespoke print prog

    Folks,
    As developer I have a requirement to develop bespoke SAPscript to print off payment advices via F110.
    I have taken a copy of standard sapscript F110_IN_AVIS to create the Z version, and know how to specify this bespoke form via transaction FBZP>Paying company codes>Forms.
    I can also see where you can specify your own form via config of variant against program RFFOAVIS_FPAYM within F110.
    But nowhere can I find how to change the print program from RFFOAVIS_FPAYM.  I need to change the print program, as the new bespoke SAPscript will incorporate additional windows for company logos and extra texts.
    Does anyone know how/where I can specifiy my own print program, is it possible?
    Much appreciated and many thanks in advance.
    Jon-Paul.

    Hi,
    Im told by the functional consultant they wish to remain with the "Use payment medium workbench" option rather than changing to "Use classic payment medium programs RFFO*", within config.
    I raised the following OSS message but got the expected response by SAP that this is a consulting issue - which makes me wonder whether it is possible so set the print control program but of course they want consultancy fees for passing on the info.  Anyone got any further ideas on setting print control program for bespoke payment advice sapscript whilst keeping the "Use payment medium workbench" config set?
    ""Via transaction FBZP>Pmnt methods in country>Country BE>Payment method T "OUT_Virement loc/Loc overschr" we have specified the payment medium to "use payment medium workbench" with format ZSEPA_CT.  We are obliged to use the SEPA (single european payment area) format.
    We have also configured, via FBZP>Paying company codes>company code 2020>Forms our own bespoke SAPscript form for printing of the payment advice ZBM1_F110_IN_AVI, which is based upon standard form F110_IN_AVIS.  Our Z form has been enhanced to include company logos and other texts, in additional windows.
    There doesnt appear to be anywhere within SPRO, or setting of the variant against the printing/DME program within F110, to define a bespoke print program that controls the output of the bespoke sapscript, in order that the additional and new SAPscript windows containing logos and texts are actually output.
    The only option appears to be to change the config to use "classic payment medium programs RFFO*" to specify a bespoke payment advice print program to control the bespoke payment advice SAPscript, but we cannot do this as we wish to use the payment medium workbench method.
    There are also no suitable implicit enhancement spots within payment program RFFOAVIS_FPAYM that allow us to execute "WRITE_FORMS" against our bespoke SAPscript so that we can write our own windows containing addtional logos and texts.
    The only alternatives I can see for full control of output within payment advice form is to use Adobe forms instead, or make a repair to RFFOAVIS_FPAYM. 
    Please can you clarify the point of being able to specify a customer SAPscript when you cannot control additional windows to be printed.  Note additional windows to be printed contain bitmap logos, hence the other option to set within FBZP "Sender details for SAPscript forms" boxes - Text id, Letter head, footer, signature text and sender, is not sufficient either."
    Thanks very much in advance,
    Jon-Paul.

  • Not print my changes in a barcode Sapscript

    Hi everybody, please excuse me mi english is not very good. I have a problem, I am modifying a program ZPP_COR6N in a client, is at PP module, this create a Handling unit, and after print a barcode label. There are many formats and the requeriment is add one format. I make the changes, in the control program named ZRPP_SDPACKDR and this call the sapscript ZFPP_PACK_ETIK, inside this form call a standard text ZPPWETIQUETA037 this I made in Tx. SO10. I've done the tests in others  Tx Z and the result it's OK, but from the ZPP_COR6N  not print my changes however the others formats print OK, my format print but some empty fields . I did check the Tx. NACU  and the configuration is OK, and i make the debugger and I put many break points in the control program and activate debugger form and not stop the program, therefore i think not pass to this sapscript and program control. The program ZPP_COR6N call many bapis to create HU and not can call other sapscript Z because not exist others form. My question  Is there any way call the sapscript without use OPEN_FORM or print one sapscript form any function? Also this client use many other many systems to comunicate with SAP , I think to print the barcode label from the other system but i not expert in RFC or SAP PI Is there possible and this is true how can show to my users and solve this problem?  Add the NACU configurations

    Hi jimblr, 
    Sorry you are having trouble. Does your printer show up "Connected and Ready" in ePrintcenter?
     These steps may help.  Turn off the printer.  Unplug your router from the power source for 15 seconds.  Plug the router back in.  Wait until the internet comes back up. (Approximately 2 minutes) Then turn the printer back on wait a bit for your pending apps to print.  Let me know if this helps.  
    Although I am an HP employee, I am speaking for myself and not for HP
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accept as Solution"

  • Not printing text-only graphics on Canon. Not printer problem-print ok on Brother and another network Apple prints ok on Canon. Believe a computer setting was inadvertently reset. What setting and how do I reset?

    Not printing text only on Canon--grahics print ok.  Not printer problem.  Prints ok on a Brother and another network Apple prints ok on Canon.  Believe a computer setting was inadvertently reset.  What setting and how do I reset?

    Without your printer model numbers, readers can only give you vague general directions.
    System Preferences > Print&Fax > ...
    ... shows a list of all set-up printers.
    If you are having serious problems, it makes sense to "Reset the Printing System" (which also removes all printer set-ups) and add back each printer. It only takes a few minutes.
    Mac OS X 10.6 Help: Resetting the printing system

  • Graphics-heavy pdfs will not printer to any type of printer.

    They send back an error message as displayed below or they do not prints. This happens in both Mavericks and Yosemite, for both Preview and Adobe Reader, our organization's primary pdf Readers. It only seems to apply to the .pdf or similar formats, as when a screenshot is taken of the individual pages, those items are able to print.

    The current workaround is based on the notion that the printers are having trouble with pdfs, and not images
    "It only seems to apply to the .pdf or similar formats, as when a screenshot is taken of the individual pages, those items are able to print."
    Adobe Reader allows us to convert the pdf to print as an image format:
    Open your pdf in Adobe Reader
    File Print
    Click Advanced, next to the printer name
    In the Advanced Print Menu, check the box to Print as Image
    Click Ok and then Print, the Document should print at this point

  • PRT's not printed on the SAP standard insp. instruction

    Dear forum,
    My client evaluates the possibility to use the insp. instruction program available in standard SAP, the pgm RQEEAS20, SAPScript INSP_INSTRUCTION.
    The client is generally satisfied with the layout, but unfortunately the PRT information from the insp. plan is not printed. I have debugged RQEEAS20 and saw that the table G_PRTTAB that is supposed to keep the PRT's and send them to the SAPScript is empty.
    Do you have an idea what I may be doing wrong? The control key in the definition of the PRT is 1, which means the PRT shall be printed.
    Many thanks in advance for any tips,
    Raf

    The interfaces that makes you install correctly an add-on are described under the "Package and Deployment" section of the Help Center. You can download the Help Center from SDN.
    You may want to check B1DE (Business One Development Environment): it provides you some wizard that creates the add-on setup and all the accessory files automatically. You can download B1DE from SDN. It is delivered under the SDN license schema.

  • Can FW CS3 be used for graphic for printing?

    I am very familiar with FW but I do not like Photoshop,
    however I have both I preffer to use FW. As I have seen on one
    presentation new FW CS3 has CMYK pallete so my question is: can FW
    CS3 be used for preparation of graphic for printing or what are the
    obstacles? After preparing images in FW I will use InDesign for
    text or maybe the text in FW is wector and maybe I could use FW
    including text and not to use INDEsign far small projects? Does
    anyone has any experience with this subject?
    Regards
    Martin

    qnnick wrote:
    > I am very familiar with FW but I do not like Photoshop,
    however I have both I
    > preffer to use FW. As I have seen on one presentation
    new FW CS3 has CMYK
    > pallete so my question is: can FW CS3 be used for
    preparation of graphic for
    > printing or what are the obstacles?
    Fireworks does not operate or export in CMYK color space. It
    was
    developed for screen images only, and operates and exports in
    RGB color
    space. It is not recommended that you use it in preparation
    of images
    for print. You mentioned that you don't like photoshop. You
    might like
    Illustrator better.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

Maybe you are looking for

  • How do I pick where a video is stored ??

    What I mean is, I am trying to move some MP4 video files onto my Itunes. It works ok, but stores them under "TV SHow" rather than movies. I find I cant sync them to put them onto my IPOD classic unless they are in the Movies folder. Probably a simple

  • Cannot create text file acrobat reader X

    Hi, I am trying to create a text file for logging purposes. The creation of the text file works fine in Reader 8 & 9, but not in Reader X. I am just putting the file in the current directory of the pdf (for now on the Desktop), so it should have acce

  • How do you stop the "alignment" after every print job?

    We got this printer because at first received great reviews, it had a fax, copier and printer.  However, as discussed in another forum, we are wasting color ink when we print in black/white.  I just installed a magenta and already it has lost 1/4 of

  • Problem after installation Project Server 2013 CU September 9, 2014

    Dear All, I have some problems after installation Project Server 2013 CU September 9, 2014 (Hotfix 2883072) on 3 level farm Before installing CU, I have installed SP1 for Project Server 2013, installation and configuration was successful. Then I have

  • MuVo help nee

    How do I delete all the files on my MuVo so I can download all new songs? Thanks for your help!