How to make background fit screen

how to make background fit screen

go to settings
go to desktop & screen saver
there you have a dropdownbox with all the options

Similar Messages

  • How to make a selection screen two fields obligatory

    Dear friends...
       I wish to know how i make two fields obligatory in the selection screen
    like
       select-options  Po_Num for  ekpo-ebeln obligatory.
       select-options  Po_Date for  ekko-aedat.
       select-options  Material for  mara-matnr.
    in the above example i am looking for po_num and po_date both obligatory but if i dont enter data in the po_num, po_dat becomes obligatory and po_dat has no data entererd po_num is obligatory. i wish to know how i achieve single field act as a obligatory in absence of another field. please help in this regards..
    thanking you,,,
    regards.
    Naim

    REPORT  ZMM_COMP_POS  no standard page heading line-size 225
    tables:  ekko, ekpo, mara.
    data: begin of i_ekko occurs 0,
          ebeln like ekko-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekko-aedat,
          waers like ekko-waers,
          ernam like ekko-ernam,
          end of i_ekko.
    data: begin of i_ekpo occurs 0,
          ebeln like ekpo-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekpo-aedat,
          waers like ekko-waers,
          menge like ekpo-menge,
          meins like ekpo-meins,
          ernam like ekko-ernam,
          lgort like ekpo-lgort,
          netwr like ekpo-netwr,
          recd(16) type p decimals 3,
          rec_val(16) type p decimals 3,
          end of i_ekpo.
    data: lines type i.
    data :itab_output like i_ekpo occurs 0 with header line.
    data: itab_output3 like standard table of itab_output .
    data  data.
    data  total like sy-dbcnt.
    data  recd(16) type p decimals 3.
    data  rec_val(16) type p decimals 3.
    data : it like i_ekpo occurs 0 with header line.
    selection-screen begin of block b1 with frame title text-010.
    select-options Po_Num for ekpo-ebeln .
    select-options Po_Date for ekko-aedat.
    select-options Material for mara-matnr.
    selection-screen end of block b1.
    at selection-screen.
    if po_num[] is initial
      and po_date[] is initial.
    message e001(00) with 'Make at least one entry'.
    endif.
    start-of-selection.
    if  PO_NUM is initial and
         Po_Date is initial or
         Material is initial.
             select ebeln ebelp matnr
                    menge meins netwr
                    aedat
                    from ekpo
                    into corresponding fields of table i_ekpo
                    where ebeln in Po_Num.
    endif.
            loop at i_ekpo.
                  select ebeln aedat waers ernam
                         from ekko
                         into corresponding fields of table i_ekko
                         where ebeln in Po_Num.
                  if sy-subrc = 0 .
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
                     modify i_ekpo transporting ebeln aedat waers
                                                ernam
                                                where ebeln = i_ekko-ebeln.
                     clear i_ekko.
                   endif.
               endloop.
               describe table i_ekpo lines lines.
               if lines le 0.
                  message e017(zk).
               endif.
          select ebeln ebelp matnr
                 menge meins netwr
                 werks
                 from ekpo
                 into corresponding fields of table i_ekpo
                 for all entries in i_ekko
                 where ebeln = i_ekko-ebeln .
          sort i_ekpo by ebeln ebelp.
          sort i_ekko by ebeln.
          loop at i_ekko.
            read table i_ekpo with key ebeln = i_ekko-ebeln.
            if sy-subrc = 0.
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
               modify i_ekpo transporting ebeln aedat waers
                                          ernam
                                          where ebeln = i_ekko-ebeln.
           endif.
        endloop.
      describe table i_ekpo lines lines.
      if lines le 0.
        message e017(zk).
      endif.
      loop at i_ekpo.
       write:/1 sy-vline,
           (5) i_ekpo-ebeln left-justified ,sy-vline,
           (10) i_ekpo-ebelp left-justified ,sy-vline,
           (15) i_ekpo-aedat left-justified ,sy-vline,
           (18) i_ekpo-ernam left-justified ,sy-vline,
           (23) i_ekpo-matnr left-justified , sy-vline,
           (27) i_ekpo-menge UNIT i_ekpo-meins left-justified , sy-vline,
           (29) i_ekpo-meins left-justified , sy-vline,
           (31) i_ekpo-netwr CURRENCY 'INR' left-justified ,sy-vline,
           (33) i_ekpo-waers left-justified ,sy-vline.
    endloop.
       write:/(743) sy-uline.
    top-of-page.
        write:/30  'ESSAR CONSTRUCTIONS LTD.' color 6 inverse.
        write:80 'DATE :' color 6 inverse, sy-datum  color 6 inverse.
        new-line no-scrolling.
        write:/30 'PO Details.' color 7 inverse.
         write: /(743) sy-uline.
      format color col_heading on.
         write:/1 sy-vline.
         write: (5) 'PO no.',sy-vline,
               (10) 'Item no.',sy-vline,
               (15) 'PO Date' color 1,sy-vline,
               (18) 'PO Created By.',sy-vline,
               (23) 'Material No.', sy-vline,
               (27) 'PO Quantity', sy-vline,
               (29) 'PO Unit', sy-vline,
               (31) 'PO Value',sy-vline,
               (33) 'Currency' , sy-vline.
        write:/(743) sy-uline.
        format reset.

  • How to make background image editable in a template

    I have built a template and would like to make the background
    image editable, but not the rest of the settings in the body style.
    (I'm not sure of my terminology yet.) The background image is
    currently set in the locked part of the page. I've tried to insert
    an editable region in the html code, as I cannot get to the
    background image by clicking on it or selecting on the Design page.
    But I am not allowed to change the code in this way.
    What is the best way to do this? I'm not sure how to make a
    div of this one setting. Or even if that is what is needed.
    Thanks for any suggestions.

    So to give a different background image to different pages using CSS.
    Create a CSS file in your Dreamweaver site.
    Link it to your pages.(in your head tag like so: <link href="path/to/stylesheet.css" rel="stylesheet" type="text/css" />)
    In your HTML code find the body tag and give it an id (like so: <body id="myUniqueID">)
    In your stylesheet write the following code:
    #myUniqueID{
    background: #color, url("path/to/image.jpeg") repeat);
    And now extrapolate the above steps and code to your other pages and voila, you now have different background images for your different pages.
    To learn more about CSS - visit your local web search engine.
    To see the power of CSS, check out http://csszengarden.com/ where the exact same HTML file is styled by different CSS stylesheets.

  • How to make a split screen picture?

    How do I make a split screen picture from 2 different pictures?

    Are you using Photoshop or Photoshop Elements?
    This question would be better posted in the Photoshop forum.
    Try http://forums.adobe.com/community/photoshop/general

  • How to make it full screen

    Hello
    I have made a slide show and I will be showing it threw a projector and I do not know how to make the slide show full screen.
    So how do i make the show be full screen?
    Thanks
    Greg Wyatt

    hey there Greg & welcome to Discussions.
    connect the projector to the Mac using the appropriate adaptor & cable, open System Prefs. > Displays > Detect Displays > Gather Windows. set rez for the projector & turn off Mirror. that's how you play your slideshow "through" the projector.
    good luck.

  • How to make content fit on one disc.

    Sort of new to this. I have a 5.5 GB DVD project I want to fit on one single layer DVD. How do I make it fit without sacrificing too much quality?
    Is there an automatic way to change bit rate, etc to make it fit?
    Thanks

    PDTV is exactly right.
    You indicated you left the encoding to default settings of the program.
    That doesn't work very well, because the audio is uncompressed, and the settings in the preferences may not be consistent with the length of your video.
    For example, if you have 120 minutes of video and the default settings are maximum bit rate of 7.5, it won't fit, and your audio will be uncompressed aiff.
    Set a bit rate in Compressor suitable for the length of your video, and encode your audio to Dolby 2

  • How to make The Java Screen Recorder similar to this one?

    Can u talk about this how can make this code with java?
    http://www.devharbor.com/java/300-Screen-Recorder.html
    The author of this application says this maked by Java Swing.
    My Question is:
    What is Java Swing?
    It's easy to make this app?
    What API/Component needed for export video to MP4 Format like this application?
    How can make a similar application for education purpose with Java.
    Thanks

    808154 wrote:
    :) Thank you for answering my question,
    but impossible in nothing bro, Yea, that's what Aleksey Vayner claimed and he didn't do so well.
    I need to know about swing and start to work with java to develop this software and if I need some help I ask here.Clearly yes. You also need to make simple programs and practice for a long time before you're gonna be able to write a screen recorder with MP4 output.
    I try to develop this before 3-4 years ;)I guess 3-4 years is a realistic goal, if you really concentrate on learning Java.

  • How to make pages fit to any screen size

    Is there a way to make the pages stretch or condense so that it fits any size screen? I've found where I can adjust the px size of the individual pages but I get white borders at the left/right and bottom edges of the screen that vary depending on the monitor size that I am viewing the page on. Is there a fix for this? Thanks.

    Welcome to the Apple Discussions. By screen size do you mean browser window size? If so you can get rid of the white around the body of the page by using a solid color or tiled image for the browser background which is set in the Inspector/Page/Layout pane.
    Or, if you want the page background to be the same as the browser background do the following;
    1 - set the browser background to what you have the page set to.
    2 - set the page content background to transparent.
    Now the page background will fill the browser's window no matter what size it is. That's how I have my tutorial site setup: http://toadstutorials.info.
    Click to view full size
    OT

  • After i expand my web browser for the entire computer how do I make it fit screen again

    In my web browser page there are two arrows in upper right hand corner.  They allow me to make my web page to fit the entire computer screen. After I do that, how do I restore it to a normal web page appearance?
    Thanks.

    "Shift + Command + F" I believe is the shortcut to do that.
    EDIT: actually, just hold your cursor in the top right of the screen for a second and your taskbar will reappear and you can close full screen.

  • How to make website fit any screen size?

    Hello all!                      
    I am trying to make my website fits any screen size (desktop, tablet, mobile)
    In Dreamweaver cs6, I go to file -multiscreen preview – Media Queries- make a CSS file for (site-wide) and click on the Default Presets and then find my CSS files for phone, tablet and desktop. But it does not work for my website, my site does not respond to the size of desktop, tablet or mobile. Can someone please help? Thank you.

    The main rule to follow for a responsive design is be flexible.
    That means no rigid dimensions, no absolute positioning and images that respond to the width of their containers.
    The following typically breaks the rule of flexibility
    #apDiv35 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 1;
    That is but one example from your document out of more than 40.
    If you want a leg up regarding responsive design, have a look at http://www.dmxzone.com/go/21759/dmxzone-bootstrap/

  • How to Make Video Fit the Screen? (no boxing)

    Hi I have finished my video almost now. However when it is played back in WMV it is like in a letterbox in the middle of the screen. I want to upload it to YouTube so it will look quite small on the screen. Is there a way I can expand it to fit the screen better? There seems to be room both laterally and vertically to expand it. I just looked at the DVD box and it says 16:9 - is this widescreen? not sure. I would appreciate any help. Thank you.
    Rich

    hi i am editing a video and in the importing and the sorce box my video fits the screen but in the box that plays what i am editing it fits as a small box in the center with all this extra space around it and when i exported it onto a dvd it just came up as a little video in the middle of the screen. how do i get it to just fit the whole page?
    -Joe

  • The firefox page runs off the screen. how to make it fit?

    Firefox runs off my screen (width-wise); how do I make it smaller?

    if you click Ctrl on your Keyboard (Command on the mac) and Mouse Scroll it should zoom out of it

  • How to make background translucent in iOS 7?

    My wife has an iPhone 4s with iOS 7, and when she presses and holds the home button to invoke siri, the siri background is like a translucent blueish color.  My iPhone 4s siri screen is black with white text.  I've tried setting the home and lock screens with different wallpapers, and also tried using photos for the background.  But still my siri background screen is black.
    How do I get the translucent background on my siri screen?
    -Thanks

    I had the Settings > Accessibility -> Increase Contrast option set.  This eliminates the translucency effect and makes the siri and notification center black with white text.

  • How to make a splash screen

    Hello everyone,
    I am trying to make a kind of splash screen.
    I use JWindow for this and it works well.
    My problem is, that I need to make the background of the screen "non-opaque". So only the image I add will be shown, without the background rectangle.
    I search for something like setOpaque(false) method in class JButton.
    But there is no such method for this class.
    I would be very happy if you could help me.

    I tried this,
    but it does not help. The background is being shown.
    import javax.swing.*;
    import java.awt.*;
    public class SSB extends JWindow
         public static void main(String[] args)
              new SSB();
         public SSB()
              super();
              this.setBounds(20,20,300,300);
              MyContainer c = new MyContainer();
              c.setOpaque(false);
              this.setContentPane(c);
              this.show();
         class MyContainer extends JComponent
              MyContainer()
                   super();
    [\code]

  • How to make background of layer transparent so just the object shows up?....

    Hi, I don't know if there's a way to do what I'm trying to but I'm trying to take a jpg picture that I uploaded onto my photoshop elements editor, then using the maze I have on microsoft word to make a maze out of the picture. I was able to paste the maze over the picture by using the over lay option for the 2nd layer and making it more transparent but the lines are getting too transparent also and you can't see some of the lines at all that is over white areas. Is there another way that I can make it so that the lines (of the maze) only show up and make it so the white background is totally transparent?
    I'm also wondering how I can change the whole background color without affecting the picture or anything else. This is my first time playing with the elements editor, I was just thinking I guess I could make a botttom layer and make the layer the color I want or will it bleed through to the other layers or the other layers just cover it up? I really don't know what I'm doing and really don't know about these layers, I'm surprised I was able to do what I did.
    Thank you for any suggestions or help.
    IDK if I'm explaining this right so here is a link to the image.
    Thanks

    With this image, it will be easiest to select the white background.
    1. I would recommend using the Quick Select Tool. Select the white background.
    2. Because you want the lung guy on his own layer not the white background, you need to invert the selection. Select<Inverse.
    3. Copy the lung guy onto his own layer. On PC, press ctrl + J. If on a Mac, the shortcut is cmd + J.
    4. You can now copy/paste lung guy in the desired photo. Alternately, you can drag his layer from the layers palette and drop him into the other document. (If the resolution of lung guy doesn't match your image's resolution, he will shrink or expand as his layer will take on the resolution of the document he is moved into.)
    Note: I would not use the lettering as you can see where the lung guy's image overlaps. It will be an easier project if you redo the lettering in Word or use the Photoshop Element's text tool...maybe with text warp and a layer style....to add the text.

Maybe you are looking for

  • Aperature Vault recovery from a backup

    iMac with WD external hard drives. My external hard drive containing one of my older vaults crashed. I installed a new drive and restored the old drive contents via time machine to the new drive. In order to get Aperature to recognize the new drive l

  • Need information on this Query

    Hi guys, can someone explain how this query works indetail. SELECT DISTINCT (a.sal) FROM EMP A WHERE &N = (SELECT COUNT (DISTINCT (b.sal)) FROM EMP B WHERE a.sal<=b.sal); Advance thanks for your help. Kadiyala Edited by: user10223931 on Mar 4, 2009 8

  • Patch for upgrading OBIEE 11.1.1.5.0 to 11.1.1.6 for OBIA 7.6.9.4

    Hi, We have installed OBIEE 11.1.1.5 and installed OBIA 7.6.9.4. But when we try to open RPD file it gives error of compatibility. Can anyone tell me what is the Patch number which can upgrade OBIEE to 11.1.1.6 Thanks In Advacne, Ankit

  • JRC  R2 and JDK Versions

    <p>Hi,</p><p>I use Crystal Report XI R2 JRC on a Web App. </p><p>My application works fine (included all actions with the crystal viewer) with this configuration : </p><p>    -Application Server : WAS Express 5.0 </p><p>    - OS : Windows </p><p>   

  • Need to get NULL values!

    Hi, I have a query like following... SELECT CA.C_PROJECT_ID, SUM(CA.AMTACCTCR - CA.AMTACCTDR) AS AMOUNT FROM CUS_ACCTDIM_FACT_ACCT CA LEFT JOIN M_PRODUCT MP ON MP.M_PRODUCT_ID = CA.M_PRODUCT_ID WHERE MP.PRODUCTTYPE = 'S' GROUP BY CA.C_PROJECT_ID; Res