SAPSCRIPT logo gets distorted in fax

Hi,
    I am trying to fax an SAPSCRIPT which contains a color logo. In SOST, the logo is coming distorted. The resolution of the logo is 75 dpi and size is 5.08 x 2.88 cm. I don't want to change the resolution and size. Kindly provide me some pointers to this problem
Thanks.

Hi,
check below link
http://www.sap-img.com/ts001.htm
better to go for new logo for good resolutions ,from you are case you are not changing the resolutions.
Regards,
Madhu

Similar Messages

  • SapScript Logo problem

    I am having a problem with several Sapscripts that we use. We have just upgraded from 46c to ECC 6.0.
    In 46c, the company logo would print and on the same line some text would also print.
    Example:
    LOGO       Commercial Invoice   Page 1 of 1
    In ECC 6.0, the logo still prints correctly but I cannot get any text to print on the same line as the logo.
    Example:
    LOGO      
    All the code int the scipts are exactly the same.
    Has anyone had a similar problem?

    hi check this ..link may be use for u..
    http://wiki.ittoolbox.com/index.php/HOWTO:Sap_script
    logo printing reverse
    Sapscript logo is printing topside down
    regards,
    venkat.

  • Animated GIF image gets distorted while playing.

    Hi,
    I have some animated gif images which I need to show in a jLabel and a jTextPane. But some of these images are getting distorted while playing in the two components, though these images are playing properly in Internet Explorer. I am using the methods insertIcon() of jTextPane and setIcon() of jLabel to add or set the gif images in the two components. Can you please suggest any suitable idea of how I can get rid of this distortion? Thanks in advance.

    In the code below is a self contained JComponent that paints a series of BufferedImages as an animation. You can pause the animation, and you specify the delay. It also has two static methods for loading all the frames from a File or a URL.
    Feel free to add functionality to it, like the ability to display text or manipulate the animation. You may wan't the class to extend JLabel instead of JComponent. Just explore around with the painting. If you have any questions, then feel free to post.
    The downside to working with an array of BufferedImages, though, is that they consume more memory then a single Toolkit gif image.
    import javax.swing.JComponent;
    import java.awt.image.BufferedImage;
    import java.awt.Graphics;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.ImageInputStream;
    public class JAnimationLabel extends JComponent {
        /**The default animation delay.  100 milliseconds*/
        public static final int DEFAULT_DELAY = 100;
        private BufferedImage[] images;
        private int currentIndex;
        private int delay;
        private boolean paused;
        private boolean exited;
        private final Object lock = new Object();
        //the maximum image width and height in the image array
        private int maxWidth;
        private int maxHeight;
        public JAnimationLabel(BufferedImage[] animation) {
            if(animation == null)
                throw new NullPointerException("null animation!");
            for(BufferedImage frame : animation)
                if(frame == null)
                    throw new NullPointerException("null frame in animation!");
            images = animation;
            delay = DEFAULT_DELAY;
            paused = false;
            for(BufferedImage frame : animation) {
                maxWidth = Math.max(maxWidth,frame.getWidth());
                maxHeight = Math.max(maxHeight,frame.getHeight());
            setPreferredSize(new java.awt.Dimension(maxWidth,maxHeight));
        //This method is called when a component is connected to a native
        //resource.  It is an indication that we can now start painting.
        public void addNotify() {
            super.addNotify();
            //Make anonymous thread run animation loop.  Alternative
            //would be to make the AnimationLabel class extend Runnable,
            //but this would allow innapropriate use.
            exited = false;
            Thread runner = new Thread(new Runnable() {
                public void run() {
                    runAnimation();
            runner.setDaemon(true);
            runner.start();
        public void removeNotify() {
            exited = true;
            super.removeNotify();
        /**Returns the animation delay in milliseconds.*/
        public int getDelay() {return delay;}
        /**Sets the animation delay between two
         * consecutive frames in milliseconds.*/
        public void setDelay(int delay) {this.delay = delay;}
        /**Returns whether the animation is currently paused.*/
        public boolean isPaused() {
            return exited?true:paused;}
        /**Makes the animation paused or resumes the painting.*/
        public void setPaused(boolean paused) {
            synchronized(lock) {
                this.paused = paused;
                lock.notify();
        private void runAnimation() {
            while(!exited) {
                repaint();
                if(delay > 0) {
                    try{Thread.sleep(delay);}
                    catch(InterruptedException e) {
                        System.err.println("Animation Sleep interupted");
                synchronized(lock) {
                    while(paused) {
                        try{lock.wait();}
                        catch(InterruptedException e) {}
        public void paintComponent(Graphics g) {
            if(g == null) return;
            java.awt.Rectangle bounds = g.getClipBounds();
            //center image on label
            int x = (getWidth()-maxWidth)/2;
            int y = (getHeight()-maxHeight)/2;
            g.drawImage(images[currentIndex], x, y,this);
            if(bounds.x == 0 && bounds.y == 0 &&
               bounds.width == getWidth() && bounds.height == getHeight()) {
                 //increment frame for the next time around if the bounds on
                 //the graphics object represents a full repaint
                 currentIndex = (currentIndex+1)%images.length;
            }else {
                //if partial repaint then we do not need to
                //increment to the the next frame
    }

  • BI Publisher Report Layout Get Distorted when viewed in different format

    Hi Experts,
    I am facing issue while running BI Publisher Report.
    The Report Layout work fine in one output format (PDF).
    But when the same report is generated in different format it get distorted (HTML,EXCEL).
    Could any one please let me know how to resolve this issue.
    Is there any SR raised for this issue.
    Cheers,
    Andy

    Hi,
    I have faced a similar issue, Finally i created a different template for each output type, and tweaked each template through trial and error till the output it provided was what i was looking for in the specified output format, I had a different template for PDF and a different one for HTML. If I used the html optimised template for PDF out, there were all sorts of alignment issues, etc.and vice versa. As for the date format, you can set the parmeter correctly using the word date format properties.

  • Umlaut characters getting distorted while displaying in Web dynpro java

    Hi All,
    I have a scenario where I am reading some string values from  a properties file placed in java DC.
    The values read from properties file are to be displayed in  Web Dynpro application.
    The string values contain some umlaut characters eg (ü,ä).
    While displaying in web Dynpro application the umlaut characters  are getting  distorted.
    Any pointers for the same?
    Regards
    Radhika Kuthiala

    Hi Radhika,
    Solution1> you can convert the property file in the encoded format, in the DC having the pr0perty file.
    use this command in the command line:-->native2ascii -encoding utf8 file.txt file2.txt
    Are we renaming hte files after changing the format?
    In one of my previous project we have property file with the french character so we got error, to avoid this we have manually transtaled the file and utilized in the application and used the command in dos promt:-
    native2ascii -encoding utf8 source.txt destination.txt ,
    here if you want to replace the existing file u have to give same name source and destination file. But we have created 2 seprate file. after translation you will something like Fre/uooch king of output.
    Solution3> you can read the file and save in the Strign format and use java package import java.nio.charset.; and encode the string. ---
    Pls refer the below link:-
    http://mindprod.com/jgloss/encoding.html
    Hope this may help you.
    Deepak!!!

  • XBMC: HDMI audio starts out OK, then gets distorted after few minutes

    Hi,
    I have posted about this on the XBMC forums, but one of the developers kindly informed me that they do not support XBMC on Arch Linux in any way, so I should take my queries elsewhere. I am hoping that someone here might be able to shed some light on my issue.
    I am trying to use XBMC 13.1 (xbmc-13.1-2) with Samsung EH5300 32" Smart TV (2013 model) over HDMI connection. The HTPC computer is AMD-based (AMD A4-5300 APU, which includes Radeon HD 7480D GPU), and runs an up-to-date Arch Linux (last full system upgrade on 2014-06-26). I am using the open source "radeon" driver (xf86-video-ati-1:7.3.0-1). Everything has been great except the sound:
    The sound starts out fine, but a few minutes later it begins to get distorted. At first it sounds like reverb affecting voice only, but with time the distortion increases until it sounds kind of cued TV noise. If I restart the video, the sound works again for a while. If I change options in Settings -> System -> Audio Output, like the number of channels or pass-through, the sound is again good for a little while. If I enable or disable "Stereo Upmix" or change audio stream from the "Audio - Settings" dialogue window available during video playback, it too seems to "reset" the sound to sounding normal for a while.
    Has anyone seen something like this?
    I have tried different videos, and it seems like HD videos are affected more than SD videos, starting with distortions only a few minutes in (except the one Xvid video, which was fine for 15 minutes). Some SD videos are completely fine, some start having distortion issues only after 20 minutes or so. Judging from video information, if the video uses 5.1 channels (all HD videos fall in this category), it definitely gets distorted; if a video only uses 2.0 channels (like the SD videos), some are fine while others get distortion later on. I have "Number of channels" in Audio Output settings set to 2.0. Changing this (or any other audio settings) has not affected the distortion.
    Following Arch Wiki: Radeon note about HDMI audio, I tried adding radeon.audio=1 to the kernel line; this did not solve the issue, just added some visual glitches.
    In the XBMC debug log I posted, the distortions happen at around 17:26, though there is absolutely nothing logged at that time, even though I enabled "Verbose logging of AUDIO component" in the Debugging settings. The video I was playing there showed the following in the information window: 720 H.264 dts 5.1 16:9.
    Any suggestions, ideas, or experiences would be appreciated. It definitely seems to be XBMC issue, since I was able to play the same HD video through mplayer without any problems (for at least half an hour, which would have already showed distortions several times through XBMC).

    Hi GDykes,
    OK Imagine that Connection speed from your ISP is like an empty freeway. You can go full tilt (upto that road's speed limit)
    Bandwidth is like a busy freeway where you only get to go as the bit you are in allows.
    Reducing the Bandwidth in iChat or in the System Preferences > Quicktime > Streaming tab is like a vehicle that has a maximum speed that is slower than the speed possible on the freeway.
    10:02 PM Friday; July 6, 2007

  • In Edit mode the image gets distorted as if a graphics card error...

    When I enter edit mode, many times the image gets distorted and is unrecognizable. The image is covered in red or green lines like when a driver or graphic card is having problems. I can view the image if I use the shift key or exit edit mode.
    Have the latest version of both OS and iPhoto. Am considering a complete reinstall of the OS and Software but would like to avoid if possible.

    Welcome to the Apple Discussions.
    Well you can avoid the hassle of re-installing because it won't help. This is a bug that affects some users of 10.6 and iPhoto, Aperture and/or Preview. Currently there is no solution.
    iPhoto menu -> Provide iPhoto Feedback
    and let them know that you too have the issue.
    Regards
    TD

  • Display getting distorted

    For the past month or so, I started seeing this problem of screen display getting distorted. It will display patches several places. I have been using this MBP for almost 6 months or so.
    This happens primarily when I work with graphic intensive applications, like i photo, google earth, imovie, etc. It happened few times with Pages and other editors also.
    Once this happens, either kernel panic or the machine freezing is guaranteed.
    I tried to call Apple care twice, both the times waited for 45 mins before it disconnected automatically .
    I have few screenshots.
    http://picasaweb.google.com/sivakumar.anna/MBPDisplayProblem

    For the past month or so, I started seeing this problem of screen display getting distorted. It will display patches several places. I have been using this MBP for almost 6 months or so.
    This happens primarily when I work with graphic intensive applications, like i photo, google earth, imovie, etc. It happened few times with Pages and other editors also.
    Once this happens, either kernel panic or the machine freezing is guaranteed.
    I tried to call Apple care twice, both the times waited for 45 mins before it disconnected automatically .
    I have few screenshots.
    http://picasaweb.google.com/sivakumar.anna/MBPDisplayProblem

  • Components getting distorted when the JFrame application is minimized

    Hello,
    I have developed a GUI application using Net Beans, the JFrame has a panel which has a JButton, JTextField, image icon (using label) and few other label's, when i click the button the text fields, image icon, button relocate using setBounds function and another panel is added dynamically which in turn contains few labels. When i click any of the label it will play music in real player software.
    But when i click any label the real player opens and the music is played but after clicking when i minimize the JFrame window the components are getting distorted.
    How to solve this problem.
    i have used
    java.swing.* package and
    java.awt.Desktop package for opening the music file in real player.
    Regards,
    Sandeep.

    Hello dvrsandeep,
    Maybe, you should not relocate your components using setBounds function. Use a LayoutManager Instead.

  • Whenever I try to adjust the color of a scene it gets distorted/squiggly lines.

    Using elements 12; This is my first time editing by the way. Whenever I try to adjust the color of a scene the footage gets distorted/squiggly lines. This is prior to me rendering the footage -- I don't know if that has anything to do with it.

    mrdemiraj81
    Thanks for the reply.
    General
    Are you saying that scenes with and without color correction had those quiggly look?
    Are you aware of the More button at the bottom right of the Lighting Panel expanded? When you click on that, you should have opportunities
    to adjust your settings. Right now you are looking at the More view. Note the Less bottom at the bottom right of the Lighting Panel expanded. You would click on Less to get back to the original view which does not have the adjustments sliders included.
    More Specifics
    Definitely start with the look at unrendered (orange line over content) versus rendered (green line over content).
    Once that is ruled out then we can explore alternative explanation for what you are observing.
    If unrendered/rendered is not the answer, could you post a screenshot of one of scenes with the "distorted/squiggly lines"
    But, if you cannot, written Q&A will have to do.
    1. Can you get the properties of this 4 min promo video - video compression, audio compression, frame rate, interlaced or progressive, file extension, pixel aspect ratio. If you do not have this information, it can be obtained from the MediaInfo (Tree View) program.
    http://mediainfo-mac.en.softonic.com/mac
    Just be careful for unwanted carry alongs during the download and install of MediaInfo. In the MediaInfo (Tree View), please look for what are listed for Scan Type and Scan Order.
    2. Also, please tell us what you see listed in the opened project under
    Edit Menu/Project Settings/General and the readings for Editing Mode, Timebase, Frame Size, and Pixel Aspect Ratio (even if the fields look grayed out).
    Let us start here. If there is anything that you need clarification on, please do not hesitate to ask. I will rewrite if necessary.
    Thanks.
    ATR

  • I get SEND A FAX Window when I try to print in Word on HP All in One J5780 Windows 7.

    I get SEND A FAX Window when I try to print in Word on HP All in One J5780 on Windows 7. I recently moved to Windows 7 64 bit and Word 2010 and download the latest software for my J5780

    HI,
    GO to the control panel and check which printer is listed as the default printer. Most likely this is the J5780 (fax) instead of the J5780. Right click the correct  printer icon and choose "use a default" to correct it.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • Sapscript logo printing reverse

    In a sapscript, I am using a logo. In print preview, its coming fine but when it is printed, it is coming reverse.
    What could be the problem and possible solutions? I have seen some threads here related to that but I would like to know if those solutions solved their problems.
    I appreciate your time and input in advance.
    Thanks a lot.

    hi Krishen,
    Check out these threads
    logo printing reverse
    Sapscript logo is printing topside down
    Regards,
    santosh

  • To get the contact fax number in my form

    Hi!
    I would like to get the fax number on the customer section of my smartform for BOL. How do i get the contact fax number in my form with following lines that i ahve for getting contact name.
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev. "first name
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    Thanks

    I added this and it shows up the fax number:
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev, "first name
          l_kunnr like vbpa-kunnr,
          l_persnumber like adcp-persnumber,
          l_fax_number like adcp-fax_number,
          l_vbelv like vbfa-vbelv.
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    select vbelv into l_vbelv from vbfa where
    vbeln = gs_hd_adr-deliv_numb and
    vbtyp_n = 'J' and
    vbtyp_v = 'C'.
      exit.
    endselect.
    select single parnr from vbpa into l_parnr
    where vbeln eq l_vbelv
    and parvw eq 'AP'.
    if sy-subrc eq 0.
      select single * from knvk into g_knvk where
      parnr = l_parnr.
      select single fax_number into g_contact_fax
      from adcp
      where persnumber = g_knvk-prsnr.
    else.
      select single kunnr from vbpa into l_kunnr
      where vbeln eq gs_hd_adr-deliv_numb
      and   parvw eq 'AG'.  "sold to
      if sy-subrc <> 0.
    *from ship to
        select single kunnr from vbpa into l_kunnr
        where vbeln eq gs_hd_adr-deliv_numb
        and   parvw eq 'WE'.  "ship to
      endif.
      check sy-subrc = 0.
      select single * from knvk into g_knvk where
      kunnr = l_kunnr and
      abtnr = 'Z007'.
      select single fax_number into g_contact_fax
      from adcp
      where
      persnumber = g_knvk-prsnr.
    endif.
    Thanks

  • Anchor points move and entire shape gets distorted from changing stroke thickness

    I have a fairly simple drawing that I drew at a larger size so I could be precise with it, and now I want to reduce it down to the finished size, and thicken the stroke, but when I make the stroke thicker, my anchor points move and the entire drawing gets distorted.
    In 24 years of using Adobe Illustrator, I've never seen this happen. When I click on the "up" arrow on the Stroke palette a bunch of times to incrementally increase the stroke thickness, I can watch the anchor points "walk" around as my shape gets distorted.
    If I instead enter a numerical value for the stroke thickness, this doesn't happen.
    However, if I use the Scale tool to shrink the drawing down to 10% or 20% size or whatever, with Scale Strokes and Effects UNCHECKED, again, the anchor points move and the drawing is distorted.
    This is all on a brand new installation of Illustrator CS 6 for Mac (though I've been using CS 6 for about 2 years now, my hardrive crashed this past weekend and I had to reinstall everything).
    Did I miss a little checkbox somewhere that I've never seen before that's making this happen?
    Editing this post to add:
    Also, some of the objects in my drawing will not allow me to change the stroke to less than 1 point thickness. If I choose .5 or .25 pt from the pop-up menu, or even if I enter the numerical value, it jumps back to 1 point. Other objects in the drawing do not.
    These objects in question are "rounded rectangle" shapes that I've used the scissor tool on to cut and then used the "join" command to put them together with parts of other shapes that were "scissored' as well.
    All of the "Ellipse" and "Rounded Rectangle" shapes that I left intact do not exhibit this problem with stroke and distortion.

    You are being bitten by the Align-to-Pixel-Grid. Select everything and go to the Transform panel and turn off Align-to-Pixel-Grid at the bottom of the panel; then go to the panel flyout (small triangle, upper right) and turn off Align Objects to Pixel Grid.

  • ARD HELP!. After Logging into Server Screen gets distorted.

    Can anyone explain to me the problem I am having. I have a Mac OSX Server 10.3.9. When I log into my server using ARD the screen looks fine but right after it logs in the whole screen gets distorted like a moire pattern and I cannot identify any icons and cannot confidently control the desktop. Does anyone know the reason why or how to fix it?
    HELP!!!

    I figured it out. Thanks anyway!

Maybe you are looking for