C6-01 screen layout in call

Is there any way possible to alter the touch screen layout when in a call?
I find that when holding the phone the fleshy parts of fingers/ thumb are accidently activating buttons either ending the call or going to loudspeaker, so far i've resisted throwing the mobile to the floor smashing it but i am rapidly getting there. Before anyone says my proximity sensor must not be working, it is, however i do'nt like pressing a phone right against my ear as i find it uncomfortable for too long.
Thankyou for any replies.

No, it cant be changed. However I also cant really suggest going to another phone brand as you would probably be going to experience the same problems (I own a droid and a symbian, and they have similar in call button layouts, heck the droid has even more and bigger buttons on the screen). I guess the phone is too small in your hands which makes the fleshy parts touch the screen. So the solution probably is to change the way you hold your phone a little so that there are no fingers of flesh near the onscreen buttons, or hold the sensor a little closer to your ear (a centimeter or a little less should do the trick), or change it for a bigger phone, or at least a phone with a bigger bezel (more distance between edges and screen).
On a more personal basis, I must admit that I dont know how you are holding your phone. On my 5800 which is about the same size as your C6-01, none of my fingers are near the screen in the way I hold it to my ear.
If you find my post helpful please click the green star on the left under the avatar. Thanks.

Similar Messages

  • How to make use of the 'Groups' in Screen Layout?

    Hi All,
    I have a screen with 10 input fields (F1, F2, .. F10).
    I set the 'Groups' attribute in the screen layout to 'DIS'.
    How could I make use of this 'Groups' attribute so that when I loop the screen, I will only disable fields with the 'Groups' attribute set to 'DIS'? Thanks
    I tried the following codes, but it's not working:
      LOOP AT SCREEN.
        IF SCREEN-GROUPS IS NOT 'DIS'.
          SCREEN-INPUT = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    It says ==> The data object 'SCREEN' does not have a component called 'GROUPS'.

    In the Attributes of a screen field, there is an attribute called "Groups". This has 4 options for input (4 text boxes)
    SCREEN has 4 fields GROUP1, GROUP2, GROUP3 and GROUP4.
    The first text box under Groups attribute corresponds to SCREEN-GROUP1,
    2nd text box for SCREEN-GROUP2
    3rd text box for SCREEN-GROUP3
    4th text box for SCREEN-GROUP4
    Hope this helps.
    Thanks,
    Balaji

  • How to creat a select-options in the screen layout of se80.

    Because in se80 ,the screen is drawed in the screen layout,but it just have text-field for parameter.
    Thanks!

    In your main program, you can declare your desired select-option. Do your select-option declaration before calling your dialog screen.
    Create a subscreen in your screen's flow logic (PBO & PAI) that contains your selection screen with its corresponding screen number of your declared subscreen.
    sample code of select-option declaration below.
    SELECTION-SCREEN BEGIN OF SCREEN 5003 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK PARAM.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (18) TEXT-ABK FOR FIELD S_ABKRS.
    SELECT-OPTIONS: S_ABKRS FOR PA0001-ABKRS.
    SELECTION-SCREEN POSITION 47.
    PARAMETER: P_ATEXT LIKE T549T-ATEXT VISIBLE LENGTH 30.
    SELECTION-SCREEN POSITION 70.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK PARAM.
    SELECTION-SCREEN END OF SCREEN 5003.
    call screen 5000.
    Sample Flow logic Code below of screen 5000:
    *--- PBO
    PROCESS BEFORE OUTPUT.
      CALL SUBSCREEN SUB_5003 INCLUDING SY-REPID '5003'. " subscreen 5003
      MODULE STATUS_5000.
      LOOP AT GT_MBBH INTO GS_MBBH WITH CONTROL TC_MBILL
                    CURSOR TC_MBILL-TOP_LINE.
      ENDLOOP.
    *--- PAI
    PROCESS AFTER INPUT.
      LOOP AT GT_MBBH.
        FIELD GS_MBBH-SELEC MODULE TC_TABLE_MARK ON REQUEST.
      ENDLOOP.
      MODULE USER_COMMAND_5000.
      CALL SUBSCREEN SUB_5003.  " subscreen 5003
    Hope this will help..

  • BP Screen Layout - How to move information from one TAB to another for a BP

    Hi all,
    I am trying to understand what the actual driver of the tabs to be displayed for maintaining a BP role is in CRM 5.0.
    In my case the 'Business hour' dataset appears in the 'Control tab' but I want it to appear in the 'Calling-/Visiting hours tab'. If I delete the dataset from the BP view it disappears from the Control tab, but how do I get it to appear on the Calling-/Visiting hours tab? Could the Screen Layout be used?
    According to the steps below I created a new BP role and assigned a new BP view:
    - I created a new screen for Calling/Visiting hours (t-code BUS5) and included the section for Business hours. At the same time I created a new screen for Control and removed the section for Business hours.
    - I assigned the new screens to a new Screen sequence and at the same time deleted the two screens not relevant anymore (t-code BUS6).
    - I assigned the Screen sequence created to a new Screen sequence category (t-code BUS6).
    - Finally I assigned the Screen sequence category to the BP view (t-code BUSD) and the BP view to the BP role (IMG - Define BP roles)
    However, the screen sequence assigned does not seem to impact how the BP is displayed at maintenance (t-code BP).
    - Is it the screen sequence or the datasets assigned to the BP view in t-code BUSD that determines what tabs are displayed when maintaining the BP?
    - What is the purpose of the screen sequences?
    I would appreciate very much your support!
    Thanks,
    //Anders
    Edited by: Anders Grönwald on Mar 27, 2008 9:25 PM
    Edited by: Anders Grönwald on Mar 27, 2008 9:27 PM

    hi
    For this you need Abaper's assitance first you should know
    field , tables of 1 st data tab data from which table it is coming
    field name and all , later in new data tab in abap editor coding you shoud give that table name and field names as reference
    it's like linking, try it you can do it.
    Cheers
    Venkat

  • Screen layout group

    Hi   SAP Experts ,
    I need a clarification .
    Can anybody please explain about  "Screen layout group " and what is the use and where we use this ?
    Thanks & regards
    Sarma

    hi,
    Screen Elements
    These are the various objects that can be placed on the screen and help in proper functioning of the screen. Following is the list of screen elements
    u2022         Text field
    A field which is output only, used for displaying hard coded static text on the screen. This cannot be modified during run time. If the text contains several words, they should be separated
    u2022         Input/Output field
    A field used by the user for data-entry. This is also called a template. Use underscore characters in the text field to define its size. The maximum length can be 255 characters.
    u2022         Dropdown list box
    It is a special type of input/output field. It contains a list of entries from which the user can choose one. You cannot type an entry into the text field of this box.
    u2022         Check Boxes
    Field to allow the user to choose multiples from a logical group of values.
    u2022         Radio button
    Element provided to group logically related values. The user can select only one out of the group; the other elements automatically get disabled.
    u2022         Push button
    Element used to trigger a particular function. The function code associated is transferred to the flow logic when the push button is pressed.
    u2022         Box
    Display element that is used to improve the cosmetics of a screen. Related parts of the screen can be grouped by enclosing them in a box
    u2022         Subscreen
    Rectangular area of a screen used to display other screens at run time. This element cannot include any other elements
    u2022         Table controls/Step Loops
    Complex graphical elements to allow tabular display of data.
    u2022         Tabstrip control
    Element that gives a card file like look u2013 every card is a screen that can be used for different purpose
    u2022         Status icon
    Output element containing an icon. This icon is specified during run time. This can ne used to indicate the status in the transaction.
    u2022         OK_CODE field
    Important field that is used for transferring the function code from the dynpro to the flow logic
    Screen Fields
    All the attributes of a screen field are defined using SE51. A screen field can be given any name, but when the name corresponds to an existing dictionary object, all the attributes of the field are derived from the attributes of the dictionary object. These field attributes dictate the automatic checks that are done by SAP in a dynpro dialog (value range check, online help, list of values etc)
    Screen Layout
    This is the placement of the various graphical and non-graphical elements on the screen. A screen is designed in Screen Painter as per the specifications gathered from the user.
    Define the ok code field in the field list for the Screens
    Whenever user does any interaction with the screens, a field is required to trap the action that the user is trying to perform. To do this, define 4 character variable by the name v_okcode_screennumber.
    Assign function codes to the various buttons on the screen that the user is likely to press.
    These function codes are then transferred via the variable to the flow logic of the screen, to decide the path to be taken by the flow of the transaction
    regards,
    balajia

  • Asset screen layout

    hi,
    in as02, when i click the drop down list for class, i notice there is a tab called
    account assignment/screen layout.
    what actually is this screen layout?
    why has it got to do with account assignment?
    thanks

    Hello,
    The screen layout specifies the status of the fields in the asset master record. You use the screen layout to determine if fields are required entry or optional entry fields, or if they are suppressed completely, for example.
    In this step, you create only the keys and descriptions of the screen layout controls. You define the the field group rules for the screen layouts themselves in the step Master Data.
    In Account determination you set the account for posting of various transaction of asset for e.g.
    Acquisition of asset
    Dep of asset and sale of asset.
    Regards
    Ravi

  • FBL3N screen layout is in disable

    Dear Experts ,
    Can you tell me in TC FBL3N , screen layout ikon shows disable , how i can make  enable
    tell how this  screen layout settings locked and unlocked for newly create screen layout
    Thanks
    Bhaskar

    Dear Bhaskar,
    unfortunately from Your problem description is not so easy to understand what it means layout disable.
    Anyway I can immagine that the field is grey and that You cannot insert a predefine layout.
    So this could be an authorization missing.
    Please run SU24 for the transaction FBL3N. You will see all the objects that the transaction calls.
    In particular there is the obkect F_IT_ALV that manages the "Line Item Display: Change and Save Layout".     
    Pleasde check if the user has this authorization by SU53 and checking his profile PFCG.
    I hope this helps You.
    Mauri

  • Custom screen layouts - things to watch out for?

    Hi guys (Willam ),
    We've had a designer customise a screen layout for us. We started with Desktop_Layout. The designer doesn't know Robohelp, and the documentation is sparse, to say the least.
    I'm wondering what issues we may run in to and if there is anything we absolutely, definitely shouldn't do.
    For example,
    @charset "utf-8", and * and html definitions have been added to the stylesheet
    instead of embedding the toc book images in the Topic.slp, the images are coded in the css.
    additional divs have been added (such as left-column, right-column, wrapper, content-wrapper)
    some divs have been removed
    Anything for which there was not an obvious use has been removed, e.g. wTOCNodeCloseBook, div.wTopic
    additional css has been added to style the content of the "topic holder" section. e.g. content p, content h1, content h2.
    The Search results page is called "Topic", although it seems to have the correct icon in the Project Setup Pod.
    There are regular html tags inside the search results layout, e.g. <h2><?rh-msp-search-result-title class="wSearchResultTitle" ?></h2>, <p><?rh-msp-search-result-url class="wSearchURL" ?> </p>
    That's just what I've been able to determine from a quick look. I'm really not sure what else may have been done.
    I suppose I just want to know if we are setting ourselves up for a disaster somewhere.
    Thanks,
    Amber

    Thanks very much Wi.Es
    The ToC bug you mention doesn't seem to be a problem for us - we're on 11.0.0 still. 
    Removed divs breaking the editor isn't a problem as I couldn't figure out how to use the editor anyway.
    Currently we only support IE9 on desktop, so whether mobile or other browsers work isn't a consideration. I've mentioned it as a future concern, though and pointed out we'd probably have to redo the design from scratch.
    I've asked for anything styling the topic content to be backed out and sent to me to put in the regular stylesheet. (I wanted to do that anyway.)
    The 'Search results' layout being called 'Topic' - the designer is on 11.0.1. The generated output seems to work okay, so I'm planning to ignore it for now.
    RoboWizard - not me. I'll be handballing to the opposition.
    Handball (Australian rules football) - Wikipedia, the free encyclopedia

  • How does Jheadstart can convert screen layout to ADF

    Hello,
    We have a Form 6i system. But now we need to convert system to ADF.
    I known has a tool called Jheadstart (develop by Oracle) can convert Form to Adf. But on demo video I see Form screen is very simple.
    I don't know license version can convert Form to ADF with very complexity Form as my system.
    Everyone who has Jheadstart license version could help me to convert screen layout of my form(Canvas PAGE_1) below  then send me back([email protected]) the adf result to see ability Jheadstart can do with screen layout before we decided to by full version.
    https://drive.google.com/file/d/0B5ztH6AIf8p2MTBYdHdTbTRlbjQ/edit?usp=sharing
    Thank you so much for help.
    Paulo Golier.

    Hi Paulo,
      I haven't used the Forms2ADF generator myself, but according to the JHeadstart Dev guide you need to upgrade your FMB file to Forms 9i first, the generator doesn't work with a 6i file.

  • KB3000850 Breaks Start Screen Layout Tiles

    Hi All,
    I have a problem which is a direct cause of KB3000850, this affects both 64bit and 32bit variants.
    We use GPO to apply a start screen layout xml file to our users.
    On a PC without KB3000850 it works fine, however if you install this update it breaks the layout.
    I've read online a couple of other instances of this, but no concrete fix.
    Any ideas?
    Thanks
    Andy
    PS - incidentally, this issue is reintroduced by the December Rollup KB3013769

    Hi,
    Just in case anyone trips over this post after having this issue and not finding the answer.
    Here it is, it took a paid support call to MS but the answer is......... it's by design.
    The key part here is Windows 8.1 Professional vs Windows 8.1 Enterprise
    Prior to these updates, the policy to apply start screen layout via policy worked on Professional and Enterprise.
    The fact it did work on Processional was a BUG, it was ONLY intended to work in Enterprise.
    The update rollups fix the bug, and hence break a previously working solution for 8.1 Professional users.
    The fixes are either the workaround I noted above (copying in file) or changing to 8.1 Enterprise.
    Just an additional note on my workaround, if you are using a login script to copy the file, do it is a logoff script instead. The reason is that if you have it as a login script and a brand new user logs in, the profile creation process has a bit of a fit
    as you have copied in part of a profile, so instead of seeing the 'Hi...... We're setting things up for you.....' part, the PC just sits for about 5-10 mins and then eventually logs in.
    If you set it to a logoff script then the login processes normally, even for brand new users, and the file copies without a hitch on logoff. It takes an extra login for brand new users to see the screen layout but hey, its better than a 10min first login.
    So, no fix from MS, as the fix is the reason for the break in functionality.
    Yes, by the letter of the policy it is correct, but we have been robbed of a perfectly working piece of functionality that some people may have been using extensively.
    Thanks

  • How do I get a Up One Level in the Topics page of my screen layout?

    I am trying to insert an "Up One Screen" on my Topic page in my screen layouts and it's only allowing me to add a hyperlink to the Table of Contents. Any suggestions?

    What do you mean by Up One Screen? Where is Rh only allowing you to add a hyperlink to the TOC?
    What sort of help are you generating?
    What version of Rh are you using?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment

    HI
    My previous asset error was cleared by assigning non-tax  While  using the option of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment the following error is coming ..... Steps are attached (File and URL)
    http://rapidshare.com/files/135200425/asset_error.doc.html 
    pls help me ....
    Thanks & Regards,
    Kalai

    Hi,
    There are 2 set-up parts:
    General setting that is working for all depreciation area's
    Chart-of-Dep.-Dependent Screen Layout/Acct Assignment (Tcode: ANK1)
    When you have only 1 area it don't have sense to create Chart-of-Dep.-Dependent Screen Layout/Acct Assignment.
    For me  20 Chart-of-Dep are using the standard one and for 1 is using his own Chart-of-Dep.-Dependent Screen Layout/Acct Assignment   
    This is the reason for the errors

  • Error While defining screen layout in asset account

    Hi Guru's,
         I tried to define screen layout rules in asset accounting but it showing error "screen layout control"410"does not exist.can any body tell me whats wrong?
    Thanks

    Refer SAP note 1035757 or 489268

  • PO Screen Layout - Goods Receipt Indicator

    Hi Guru,
    I need help in opening up the Goods Receipt indicator in PO for editing. Can someone guide me on which field in the GR/IR control selection group should I be changing in customizing in order to open up this field?
    If there are other configuration involved, please let me know too. Thanks.
    Regards,
    new@SAP

    Hi
    the field GR in the PO item is controlled by the usage of material being used, Account assignment category.
    In case of material which is Quantified & Valuated in the Plant, you cannot remove the GR & IR flag.
    In case of account assigned PO's this indicator is changeable.
    Using screen layouts you cannot control them.
    Thanks & Regards
    Kishore

  • Screen Layout Field in the Asset Master Record

    What is the use of the screen in the asset master record, ANLA-FELEI?
    We have some assets where there are different values between this screen layout and the screen layout defined at the asset class (i.e. through configuration).
    It seems the one defined within the asset class takes precedence.

    HI
    Scree Layout controls the diplay of fields, it may not be necessary for a user to use all the fileds provided by SAP. Hence the options like Required, Optional and Suppress are used to control the screen diplay and the TABs to be displayed based on the need.
    Asses within the same class will have same fields since the screen layout are assigned to an Asset class.
    Scree layout for the Tab Depreciation Area can also be controlled with the screen layout defied for the Depreciation Area.  With this one can have different screen layouts per dep. area.
    Hope i'm clear to  you.
    Thanks,
    Vijay

Maybe you are looking for

  • Fehlermeldung PProHeadless.exe

    Hallo, seit einiger Zeit erhalte ich folgenede Fehlermeldung beim Rendern von Filmen: Ich benutze Premiere pro CC 2014/Media Encoder CC 2014.1 PC: Windows 7 prof Hardware: i7-4930/3x SSD Samsung/2xGTX780 Wo bekomme ich die o.g. Datei her? Welches Pro

  • How to handle the pop-ups in va02 transaction in Call Transaction Method

    Hi Experts , I am trying to do bdc by call transaction method for  va02 transaction but i am getting popups . How can i handle the popups and for different sales orders i am getting different popups. is there any way to handle the pop ups dynamically

  • Error message during backup attempt

    I have several successful backups with my time capsule and now it gives me a generic error message saying it failed! Any ideas? There are no explanations, codes, etc. It just says "an error occurred". Real helpful! Nothing's changed since my last bac

  • BBP_MON_SC read only privileges

    We have a situation where we want selected users to have access to BBP_MON_SC in read only mode i.e. They should not be able to Delete SC or Delete Line items or change any item. Is this possible?

  • Changing Hostname on Solaris 10

    Hi all, I am new to solaris and I just reinstalled it on my laptop which is an AMD64 turion. I searched on google how change the hostname and I edited the /etc/hosts, /etc/hostname.<network_card> and also created an /etc/nodename file and entered the