Question about main screen

How do i get rid of the search option, agenda items, wlan scan and share online on my main screen?
it covers my screenpicture and i want to get rid of it.
Solved!
Go to Solution.

ah you can go to themes or somewhere around there and decide what standby screen you want you can have a blank standby screen if you chose to and then your picture will be visible
You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

Similar Messages

  • One question about Selection screen

    Hi experts,
    I am writing a report, on the selection screen, I need to input the file path and then do the file upload.
    My question is about how to check the file path I put is correct or not? If it is incorrect, I want to get a message and the cursor still in the field and don't jump to the next page.
    How can I do like that?
    Any one has any suggestion, please help me.
    Thanks in advance.
    Regards,
    Chris Gu

    Hi Chris,
        do it this way: check my code after calling gui_upload what condition i am using.
    parameters:
      p_file type rlgrap-filename.          " File name
    *           AT SELECTION-SCREEN ON VALUE-REQUEST EVENT               
    at selection-screen on value-request for p_file.
      perform get_file_name.
    *                       AT SELECTION-SCREEN EVENT                    
    at selection-screen on p_file.
      perform validate_upload_file.
    *  Form  GET_FILE_NAME                                               
    form get_file_name.
      call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    endform.                               " GET_FILE_NAME
    *  Form  VALIDATE_UPLOAD_FILE                                        
    form validate_upload_file.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                    = lw_file
          filetype                    = 'ASC'
          has_field_separator         = 'X'
          dat_mode                    = 'X'
        tables
          data_tab                    = t_final_data.
      IF sy-subrc ne 0 and t_final_data is initial. " here message if file path is wrong
        Message 'File not found' type 'E'.
      ELSEIF sy-subrc eq 0 and t_final_data is initial.
        Message 'File empty' type 'E'.
      ENDIF.                              
    endform.                               " VALIDATE_UPLOAD_FILE
    With luck,
    Pritam.
    Edited by: Pritam Ghosh on May 8, 2009 8:57 AM

  • Should I get the iPod Touch? (Also a question about the screen issue)

    Hi,
    I recently purchased the 8GB iPod Nano, and now i'm considering to add a $100 and get the iPod Touch 8GB. Would you guys recommend it?
    Another question I had was that I heard about the iPod Touch having some Screen Issues, and read somewhere that if the Box has a picture of Macy Gray then its Bad. But I personally think the Macy Gray image is for the 8GB, and the other artist is for the 16GB.
    Is there a 100% definite way for me to find out if it has a good screen or not?
    Thanks in Advance!
    Saeid.

    Ok, I recommend the iPod Touch. 8GB is fine, and totally worth the $$.
    The screen issue has been fixed by a firmware update, so as long as you update to the latest firmware, you should be in the clear.
    I have a 16GB macy Gray and it is working perfectly so far (1 week of ownership)
    However, you mentioned using your iPod in the rain. If you do so, the Touch is not for you! I would not want to get water even near it, because the technology could be very very sensitive to water. It was raining here the other day (in Los Angeles) and I was so scared to use the touch that I took my 8GB 3gen Nano with me instead. And I was still scared to use that.
    You will have to take the touch out and look at it if you are going to operate it properly.
    The good news:
    you can make playlists on the go! That means you can, while it is still dry, set a nice playlist without connecting to your computer. But, if the volume needs to be adjusted, there is a shortcut that would take just a bit of memorization and careful skill. In your pocket, you can double tap the home button, and then the volume, pause and track forward/backward "buttons" pop up. If you can memorize their position and hit them right, the Touch can be operated in your pocket. But make sure your hands are dry!
    So it's up to you. I think quality wise, the Touch has had most of its bugs worked out. The only things that will come in the future are additional features.
    Good luck and I hope you get it.

  • A question about keeping screen field unchangable in selection screen

    Hello Expert,
    I have a program as below.
    REPORT Z_TEST.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-i01.
    SELECT-OPTIONS: s_kappl FOR a017-kappl DEFAULT 'M' NO INTERVALS.
    SELECTION-SCREEN: END OF BLOCK b1.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-name CS 'KAPPL'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    When I executed the report, the field for S_KAPPL is unchangable. This is as expected. But if I select one variant,  the filed will change back to changable.
    My question is how can I keep the field unchangable after I select variant?
    Thanks in advance,
    Regards, Johnny

    Hello Johnny,
    When you're creating the variant you've to mark the check-box "Protect field" as true.
    This will make the field as output only.
    BR,
    Suhas

  • Question about main difference between Java bean and Java class in JSP

    Hi All,
    I am new to Java Bean and wonder what is the main difference to use a Bean or an Object in the jsp. I have search on the forum and find some post also asking the question but still answer my doubt. Indeed, what is the real advantage of using bean in jsp.
    Let me give an example to illustrate my question:
    <code>
    <%@ page errorPage="errorpage.jsp" %>
    <%@ page import="ShoppingCart" %>
    <!-- Instantiate the Counter bean with an id of "counter" -->
    <jsp:useBean id="cart" scope="session" class="ShoppingCart" />
    <html>
    <head><title>Shopping Cart</title></head>
    <body bgcolor="#FFFFFF">
    Your cart's ID is: <%=cart.getId()%>.
    </body>
    <html>
    </code>
    In the above code, I can also create a object of ShoppingCart by new operator then get the id at the following way.
    <code>
    <%
    ShoppingCart cart = new ShoppingCart();
    out.println(cart.getId());
    %>
    </code>
    Now my question is what is the difference between the two method? As in my mind, a normal class can also have it setter and getter methods for its properties. But someone may say that, there is a scope="session", which can be declared in an normal object. It may be a point but it can be easily solved but putting the object in session by "session.setAttribute("cart", cart)".
    I have been searching on this issue on the internet for a long time and most of them just say someting like "persistance of state", "bean follow some conventions of naming", "bean must implement ser" and so on. All of above can be solved by other means, for example, a normal class can also follow the convention. I am really get confused with it, and really want to know what is the main point(s) of using the java bean.
    Any help will be highly apprecaited. Thanks!!!
    Best Regards,
    Alex

    Hi All,
    I am new to Java Bean and wonder what is the main
    difference to use a Bean or an Object in the jsp. The first thing to realize is that JavaBeans are just Plain Old Java Objects (POJOs) that follow a specific set of semantics (get/set methods, etc...). So what is the difference between a Bean and an Object? Nothing.
    <jsp:useBean id="cart" scope="session" class="ShoppingCart" />
    In the above code, I can also create a object of
    ShoppingCart by new operator then get the id at the
    following way.
    ShoppingCart cart = new ShoppingCart();
    out.println(cart.getId());
    ...Sure you could. And if the Cart was in a package (it has to be) you also need to put an import statement in. Oh, and to make sure the object is accessable in the same scope, you have to put it into the PageContext scope. And to totally equal, you first check to see if that object already exists in scope. So to get the equivalant of this:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart"/>Then your scriptlet looks like this:
    <%@ page import="my.pack.ShoppingCart %>
    <%
      ShoppingCart cart = pageContext.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        pageContext.setAttribute("cart", cart);
    %>So it is a lot more work.
    As in my mind, a normal class can also
    have it setter and getter methods for its properties.True ... See below.
    But someone may say that, there is a scope="session",
    which can be declared in an normal object.As long as the object is serializeable, yes.
    It may be
    a point but it can be easily solved but putting the
    object in session by "session.setAttribute("cart",
    cart)".Possible, but if the object isn't serializable it can be unsafe. As the point I mentioned above, the useBean tag allows you to check if the bean exists already, and use that, or make a new one if it does not yet exist in one line. A lot easier than the code you need to use otherwise.
    I have been searching on this issue on the internet
    for a long time and most of them just say someting
    like "persistance of state", "bean follow some
    conventions of naming", "bean must implement ser" and
    so on. Right, that would go along the lines of the definition of what a JavaBean is.
    All of above can be solved by other means, for
    example, a normal class can also follow the
    convention. And if it does - then it is a JavaBean! A JavaBean is any Object whose class definition would include all of the following:
    1) A public, no-argument constructor
    2) Implements Serializeable
    3) Properties are revealed through public mutator methods (void return type, start with 'set' have a single Object parameter list) and public accessor methods (Object return type, void parameter list, begin with 'get').
    4) Contain any necessary event handling methods. Depending on the purpose of the bean, you may include event handlers for when the properties change.
    I am really get confused with it, and
    really want to know what is the main point(s) of
    using the java bean.JavaBeans are normal objects that follow these conventions. Because they do, then you can access them through simplified means. For example, One way of having an object in session that contains data I want to print our might be:
    <%@ page import="my.pack.ShoppingCart %>
    <%
      ShoppingCart cart = session.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        session.setAttribute("cart", cart);
    %>Then later where I want to print a total:
    <% out.print(cart.getTotal() %>Or, if the cart is a JavaBean I could do this:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart" scope="session"/>
    Then later on:
    <jsp:getProperty name="cart" property="total"/>
    Or perhaps I want to set some properties on the object that I get off of the URL's parameter group. I could do this:
    <%
      ShoppingCart cart = session.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        cart.setCreditCard(request.getParameter("creditCard"));
        cart.setFirstName(request.getParameter("firstName"));
        cart.setLastName(request.getParameter("lastName"));
        cart.setBillingAddress1(request.getParameter("billingAddress1"));
        cart.setBillingAddress2(request.getParameter("billingAddress2"));
        cart.setZipCode(request.getParameter("zipCode"));
        cart.setRegion(request.getParameter("region"));
        cart.setCountry(request.getParameter("country"));
        pageContext.setAttribute("cart", cart);
        session.setAttribute("cart", cart);
      }Or you could use:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart" scope="session">
      <jsp:setProperty name="cart" property="*"/>
    </jsp:useBean>The second seems easier to me.
    It also allows you to use your objects in more varied cases - for example, JSTL (the standard tag libraries) and EL (expression language) only work with JavaBeans (objects that follow the JavaBeans conventions) because they expect objects to have the no-arg constuctor, and properties accessed/changed via getXXX and setXXX methods.
    >
    Any help will be highly apprecaited. Thanks!!!
    Best Regards,
    Alex

  • A Few question about Dynpro (Screen)

    - I have a screen. Its have a table control for selection data. When user select any line of table control I want set new screen... But user doesn't select any line don't permission for next user...
         if not ITabSelected is initial.
            Leave To Screen 200.
         else.
           Leave To Screen 300.
         endif.   
    But it doesn't working? How can I refresh current screen?
    - How can I display status bar messages for mobile user? Can user display dialogbox?

    And another question..
    When I want update screen elemnt values via
    DynpFields-Fieldname  = 'ZWM460-MAKTX'.
    DynpFields-FieldValue = MyMaktx.
    DynpFields-stepl      = l_stepl.
    Append DynpFields.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        DYNAME                     = 'ZHYT_WM_RPR_460'
        DYNUMB                     = P_0064
      TABLES
        DYNPFIELDS                 = DynpFields
    EXCEPTIONS
       INVALID_ABAPWORKAREA       = 1
       INVALID_DYNPROFIELD        = 2
       INVALID_DYNPRONAME         = 3
       INVALID_DYNPRONUMMER       = 4
       INVALID_REQUEST            = 5
       NO_FIELDDESCRIPTION        = 6
       UNDEFIND_ERROR             = 7
       OTHERS                     = 8.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    it doesnt update element value. When I debugging. It is return sy-subrc = 0 everything ok for sap but I cann't update element value... Does anybody have any idea? Thanks

  • Question about "share screen" function

    When I am watching at another persons screen, is there a way to hover your mouse over the remote computers window without it effecting the pointer on the remote computer?
    Thank you

    kevinmathie wrote:
    Hi all,
    I'm recording vocals on a song that has lots of ritardandi and rubato. While the vocalist is here, we'll be setting her part of the tempo mapping in "stone," so to speak, but not necessarily the instruments' tempo mapping between her verses or before her verses.
    I usually record this kind of thing in Digital Performer, because I know that the audio sticks like glue to any ritardando, accelerando, etc., I may put in after recording the audio.
    My question: Does the "Follow Tempo" box in Logic let me program in ritards after the audio is recorded, without messing up how the audio is synced to the sequence?
    Yes.
    In other words, if the audio region spans bars 12-24, and I plug in a big ritard at bar 15, followed by "a tempo" in 16 after the audio is recorded, will the audio region follow the tempo mapping?
    Yes.
    +"Plug in a big ritard"+ ? You are one tough composer!
    2nd question: Does it do it automatically? Or, like Digital Performer, do I need to tell it to follow the tempo mapping after I change tempo?
    No, it 'responds' to tempo events in the *tempo track*.
    Any other tips/suggestions regarding this function that you feel would be helpful for me?
    Yep, it can eat up RAM. When you enable follow tempo for a track, the whole audio file is loaded into RAM. Use a utility like MenuMeters to keep an eye on RAM use. http://www.pure-mac.com/diag.html#menumeters
    You can find all relevant info on pages 526-527 of the *Logic Pro 8 User Manual*.
    regards, Erik.

  • Question about Quiz Screens in Captivate 2

    Is it possible to add an image to a quiz screen? I want to
    make an assessment in Captivate using some of the quiz question
    templates, but I want to add an image to it so the user can look at
    the image for reference. Is that possible?
    Or would it be better to create a scenario based learning
    environment?

    Hi Nicole
    Hmmm, for that, I suppose I'd simply create a blank slide and
    insert the image. Then insert your verbiage advising what the user
    should do. I'd do that using Text Captions. Lastly, I'd insert a
    Click Box object on the slide surrounding the area I want them to
    click. Then configure your scoring and feedback as desired.
    Voilà! No Question slide needed.
    Cheers... Rick

  • Question about LCD screen on Satellite A500-1F4

    Hi everyone.
    I am planning to purchase new laptop and I've seen the specs of Satellite A500-1 F4 and Satellite L505-13W. I like the 16" screen in A500 but there is one thing not clear, what do they mean about truebright display? Compared to L505, it has HD LED display.
    Also, what is much better video card? NVIDIA GE force or the ATI Radeon? Both the A500 and L505 have the same 1GB video card capacity, the difference in the brand.
    Thank you.

    You see, it's like with Cpu from Intel and Amd. Some users say that Intel is better, when others are Amd.

  • A60: Question about other screen resolutions

    Hi,
    I'm using a sattelite A60 with Ati Mobility Radeon 7000 IGP display adapter.
    I thinking about buying a 24 inch external LCD screen with resolution: 1920*1200
    According to the user's manual the maximum resolution is 2048*1536 but the widescreen resolutions are not listed at all in the table.
    Does this screen work at my notebook?
    Thanks!
    Willem

    Hi
    Unfortunately Im not familiar with the 24 displays but like Quad said you can test you notebook on this LSD display. But usually you can use different display resolutions and you dont have to use the max display resolution.

  • A question about the screen~~~

    Hi, folks
    I got a small question regarding the MBA screen. I just used a screen test software to see if there is any problem. when the background of the screen was set to completely black, I found the bottom fringe of the screen seemed a little brighter than other part.Have you guys did the similar test and have met similar problems?
    thanks very much

    You always get a bit of light leakage on screens (or uneven lighting). Thankfully with LED backlight screens, you do get a more even illumination across the whole screen.
    In tests, viewing angles also have to be taken into account. I have to say on my Air, on black background the lighting seems pretty even.

  • 2 questions about customizing screen

    Hi.
    * Is it possible to rearrange the order of the bind variables on a customization screen? The variables appear in the same order as they are stated in the query.
    * I have a dynamic page. The page has some bind variables. When the user enters the correct format of parameters, it works ok. But when the user enters the wrong format (e.g. date and time) i get a browser 404. Can i prevent this? Like checks on the fields?
    Thanks.

    Hi,
    You cannot change the order of the bind variables in the customization form unless you change it in the query.
    You cannot have format masks for bind variables. You can change the label to also mention the date format the user should use to enter the value like "Date : (DD/MON/YY)"
    Thanks,
    Sharmila

  • Question about wide-screen monitor on Solaris x86

    I have Solaris x86, version 10/2009 installed.
    It works fine with any wide-screen monitor I plug in.
    But when I use this 3rd party CAD/CAM software, any round
    circle is being displayed as an oval shape. I believe that's because
    on the wide-screen monitor, the width of the monitor is longer than the height.
    Does anyone know if there's a setting to change so that I can view circles as true round circles instead of an oval shape? Thanks.

    OK, I know what the problem is now.
    But I need to change the resolution settings. Does anyone know how to change it on x86, version 10/2009?
    I recall it being something like "kdmconfig"

  • Question about logon screen customization

    Hi,
    I have to customize the web logon screen of the BEx.
    In SICF, on the BEx service, on the Error Pages tab, System logon is checked. If i click on the Setting button I have :
    Define Service-Specific Settings
    System ID
    Language
    System Messages
    Logon and SI
    etc ... and in "Logon Layout and Procedure", Sap Impl, Netweaver and SAP Tradeshow.
    I have defined a header image in "Adjust Links and Images" and it works !
    But ... on my logon screen I have 4 fields, which 3 of them a inactive (system, users and password) and the log on button. Only the drop down menu language is active. Users and Password fields content is "Via popup".
    In order to logon myself, I have to select my language and enter in a system popup (not a web form) my login and my password. How can I change this boring sequence ? Isn't it possible to enter directly its logon and password in the first screen ?
    Thanks for your help,
    GC.

    Hello CG,
    I think you can pre-define your language, using the parameter 'BspLanguage', in the the url defined at 'Error Pages' of BEX service.
    An example:
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspLanguage=EN
    You can also do other things, such pre-define the client, or show the option to change the password.
    An example:
    Run default.htm of BSP system_public, to know the parameters available.
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspClient=010&BspChangePasswordVisible=X
    Kind regards.

  • Question about logon screen

    i have this weird problem - i searched the forums but couldnt find any answer - im on 10.7 Lion - sometimes my mac goes into a state where it goes back to the logon screen and i have to enter my password to unlock the mac - this interferes with some remote access software i have which doesnt work if the mac is locked
    i dont have Require Password for sleep and screen saver checked in the Security and Privacy preferences - and ive looked at other preferences for s setting that controls this - but couldnt find any
    does anyone know what causes this and how to turn it off?

    Hello CG,
    I think you can pre-define your language, using the parameter 'BspLanguage', in the the url defined at 'Error Pages' of BEX service.
    An example:
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspLanguage=EN
    You can also do other things, such pre-define the client, or show the option to change the password.
    An example:
    Run default.htm of BSP system_public, to know the parameters available.
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspClient=010&BspChangePasswordVisible=X
    Kind regards.

Maybe you are looking for