Username field in BP not editable

Hello,
In my SAP CRM 5.0 field user name in tcode BP on business partner in role employee "bup003" is not editable.
This is not editable for BPs with numbering EM.... .
For others it is editable.
Numbering EM is set in HRALX configuration in table T77S0.
What could be the reason?
My config in T77S0 looks like this: (pbphr, 0prol, 0subg were changed today, and it still does not work )
HRALX     HRAC     X
HRALX     MERID     X
HRALX     MSGRE     0
HRALX     OADBP     
HRALX     OADRE     
HRALX     OBPON     ON
HRALX     OBWIG     X
HRALX     ONUMB     3
HRALX     OPROL     BUP004
HRALX     OSUBG     OR
HRALX     PALEO     
HRALX     PALEP     
HRALX     PBPHR     ON
HRALX     PBPON     ON
HRALX     PCATS     
HRALX     PINAC     
HRALX     PLEVE     3
HRALX     PNUMB     3
HRALX     PPROL     BUP003
HRALX     PQUAL     
HRALX     PRTON     
HRALX     PSUBG     EM
HRALX     PSYNO     
HRALX     PSYNP     
HRALX     USRAC     X

According to SAP note 934372 point 6 this behavior is standard in CRM 5.0 for Employees transferred from HR in order to prevent inconsistencies in data.

Similar Messages

  • Field Priority (complaints) not editable en SAPGIU(CRMD_ORDER)and WebClient

    Hello Experts,
    may be somebody knows because the field "Priority" is not modificable when creating a complaint in CRMD_ORDER? In my case when i am doing a complaint there is this field with the values:
    1 Very High
    2 High
    3 Medium
    4 Low
    Why is this field existing, when it can not modify it? Where in Customizing I can make this field modificable?
    Best Regards
    Oliver

    Hi Oliver
    Although this is very old forum question but there are many similar questions without CORRECT answer
    I would like to update here the correct steps as we spend considerable time to explore and enable the Priority in SAP GUI
    1. Goto - SPRO - CRM - Transactions - Basic Settings - Define Transaction Types
    2. Highlight your Transaction type -Then click on " Assignment of Business Transaction Categories this should bring to next screen "Transaction Categories"
    3. Click on " BUS2000126 Business Activity ' if you do have Click on New entries to ADD
    4. Then highlight BUS2000126 Business Activity then click on Customization Header then click "New Entries"
    5. Here under Default Data " Priority " can be enabled to preset value or user can choose in CRMD_ORDER
    Best regards
    Narayana

  • Having a field navigable but not editable?

    I have a one field block that displays three records at a time. I have a popup menu associated with the field. The popup calls a form that will populate the field. It populates the record in the block from where the user called the popup (if the user right clicks on the 2nd record in the block then the form populates the second record). I don't want the user to be able to edit this field directly, but I do want the user to be able to click where they want the called form to populate the calling form. Any suggestions? If I set the field to disabled, then the user can't click on the field. Hope this makes sense.
    Thanks,
    Jeremy.

    Make the field's insert/update field to false

  • Error : Form not editable

    Hi All,
    we have generated an add-on which insert value to the transcation 4m user form. while doing so....
    i am receving an error -
    Form Not Editable.
    Pls try to solve it.
    Regards,
    Avijit

    Hi Avijit,
         The reason for the error might be that the field type is not editable, this can be achieved by selecting form settings > Table format>Active for the corresponding field.
    The other reason might be that the character length that you have defined might have exceeded the target field.
    Hope this might solve the problem.
    Regards,
    Aditya

  • @ in the username field is not accepted on Philips...

    I have a Philips VOIP 855 phone (a conbination of a landline and Skype phone). Until now I have on the phone logged on Skype with my old Skype user name. But when Skype in the near future is combined with Messenger I have to log on with my Microsoft Live ID.
    But the username field on the phone doesn't accept the @ (symbols). Is Microsoft/Skype supplying a firmware update in due time, so I am ready to use the live ID to log on, when it is required?

    I anticipate a specialized phone firmware upgrade will be unnecessary.
    As I understand it:  Windows Messenger is being shut down March 15, 2013.  Until then Messenger users can continue to use the service.  However they will be urged to link their Messenger/Live ID to a Skype ID.  This means you will no longer be logging on with your Messenger/Live ID but only your Skype ID (with no @ symbol) as the "primary" way to log in.  
    I believe the Live ID will remain a web-managerial type account that links services Microsoft provides together.  If you migrate in time, all your Messenger buddies will appear as Messenger contacts in Skype.  If not done in time, or if you need to add more buddies in the future, you will have to log on to your Live ID (login.live.com) to manage/add them individually (using a traditional computer/web-enabled device).
    So basically Messenger buddies become what appear to be a specialized list/category that seamlessly links to your skype ID on the back-end.  This way your buddies appear on their own, yet you can still interact with them on Skype.  It will probably appear very similar to having Facebook contacts in Skype.  The only difference being Messenger will be retired and will no longer be available as a stand-alone application. 

  • How to make fields not editable in screen

    Hi gurus,
    I have a table and i need to make some fields not editable depending on the values of other fields of the table .
    Example :
    my table have these fields : begin_date, name.
    If the begin_date < sy-datum  -->  then the field  ' name' should not be editable.
    Tankyou.

    Hi,
      OK. I did some code and was able to get the results as you want. Created a table YTESTHV with two fields YYDATE and NAME. Generated a two screen maintenence for the table. Screen 2 - Overview screen, screen 3 Detail screen.
    Overview screen.
    PBO.
    PROCESS BEFORE OUTPUT.
    MODULE LISTE_INITIALISIEREN.
    LOOP AT EXTRACT WITH CONTROL
      TCTRL_YTESTHV CURSOR NEXTLINE.
       MODULE LISTE_SHOW_LISTE.
       MODULE DISABLE_FIELDS.
    ENDLOOP.
    MODULE DISABLE_FIELDS
      move extract to YTESTHV.
    if YTESTHV-yydate > sy-datum.
       loop at screen.
        if screen-name = 'YTESTHV-NAME'.
         screen-input = '0'.
         modify screen.
         else.
         screen-input = 1.
         modify screen.
        endif.
        endloop.
    endif.
    Details screen PBO.
    PROCESS BEFORE OUTPUT.
    MODULE detail_init.
       module change_mode.
    module change_mode
    if YTESTHV-yydate > sy-datum.
       loop at screen.
         if screen-name = 'YTESTHV-NAME'.
           screen-input = 0.
           modify screen.
         endif.
       endloop.
    endif.
    When YYDATE is greater than sy-datum field NAME is display only.
    Regards,
    Himanshu

  • The note field is in non-editable mode in appraisal document

    Hi all,
    In appraisal document,
    the reviewer can give his comment in the status u201CIn Processu201D and in the Sub Status u201CAnnual Review by Addl Managers/Reviewersu201D in an appraisal document. It is editable when I am trying via web but when I try to upload the comment from backend GUI  ( using phap_admin) the note field is in non-editable mode. My client requires it in editable mode at the back end.
    Can any one help me on thisu2026

    Hello Girish,
    Can you please check the appraisal  template, Proper access has been given to use the note column. If still faces problem can look for the BADI  HRHAP00_COL_ACCESS.
    You can look for the following notes also :
    1554467   column access does not work
    Best Regards,
    Deepak..

  • E-Mail field on "Address" tab not editable in SU3

    We were considering allowing end users to change their email address (stored on their user master record) via transaction SU3; however, in testing, even with SAP_ALL assigned, that field is not open for editing.  We are using CUA, but that field is specified for local updating in our CUA settings.  That field is available for editing from transaction SU01, so I believe the CUA settings are correct.  Any idea why an end user is not able to update this field via SU3?
    Many thanks.
    - Jonathan Ruth

    Hi,
    The following links would give you an over view.
    http://help.sap.com/saphelp_47x200/helpdata/en/a9/1a1ba3db9343beb2723452255003c5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/4dd720b5ac2152e10000000a114a6b/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a9/1a1ba3db9343beb2723452255003c5/frameset.htm
    Hope this helps
    Cheers
    Soma

  • Custom field added by AET  is not editable

    Hi All,
    I have created 2 fields in for ERPADMINI BOL node. but these fields are not editable. The attribute properties are coming as Read only at runtime.
    How to make these fields editable ?
    I have searched in forums but couldn't find any solution, please help.
    Thanks
    Krishna

    Hi Bhushan,
    The code was there already for some of the fields.. same way i added for my field, but no luck ..
    Below is the code. Last field 'ZZPRDCT_SPECIFI' is my field.
    IF iv_object_id EQ 'ITEM'.
         CLEAR ls_supply.
         ls_supply-field = 'ZZDEAL_CODE'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
         CLEAR ls_supply.
         ls_supply-field = 'ZZRANDOM_LENGTH'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
         CLEAR ls_supply.
         ls_supply-field = 'ZZERROR_CODE'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    CLEAR ls_supply.
         ls_supply-field = 'ZZDSCAL'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    *-> José Sabino - 15.01.2013 - End
    *-> exrodrg - 06.05.2014 - Begin
        CLEAR ls_supply.
         ls_supply-field = 'ZZPRDCT_SPECIFI'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    ENDIF.

  • Field that is not visible in my editing screen but showing in web preview. How to remove it?

    Hi Support,
    When I preview my form in web preview, I am seeing a field that is not visible in my editing screen. It starts at the left margin of the web preview and runs off the edge of the right side of the page.
    The form is also crashing when I attempt 'page view' or 'save as pdf' and I believe this phantom field is the culprit. I have spent considerable time on the form and do not want to recreate from scratch.
    Can you please advise how I can make this field visible in the editing section so that I can permanently delete it?
    Further information:
    I do not have any rules set for any of my fields
    I have tried to remove it in Chrome, IE and Firefox
    My cache has been cleared today
    My plug-ins and flash player are all current versions (updated today and performed a restart)
    Thanks,
    Kate

    Hi Kate,
    Could you please share your form with me ([email protected]) so that I can investigate and correct this problem? Instructions on sharing can be found here:
    http://forums.adobe.com/docs/DOC-2462
    Thanks,
    Brian

  • How do I make the my login page username field not case-sensitive?

    Can anyone tell me how to make my username field not case-sensitive?
    This is my code
    <html>
    <body>
    <%@ page import="java.sql.*" %>
    <%
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection login = DriverManager.getConnection("jdbc:odbc:Testing","abc","abc");
    Statement stmtLogin = login.createStatement();
    String sqlLogin = "SELECT UserName, UserPassword FROM Users WHERE UserName='"+username+"'";
    ResultSet rsLogin = stmtLogin.executeQuery(sqlLogin);
    while(rsLogin.next())
    String suser = rsLogin.getString("UserName");
    String spass = rsLogin.getString("UserPassword");
    if(username.equals(suser) && password.equals(spass))
    HttpSession mysession = request.getSession(true);
    mysession.setAttribute("username",request.getParameter("username"));
    response.sendRedirect("hello.jsp");
    else if(!(username.equals(suser) && password.equals(spass)))
    response.sendRedirect("index.jsp?message=Invalid%20Username%20or%20Password");
    login.close();
    %>
    </body>
    </html>

    if(username.equalsIgnoreCase(suser) && password.equals(spass))Hope this helps!

  • Adobe Interactive Form text field not editable

    Hello,
    I created an Adobe Form using transaction SFP and placed a textfield on the body page.
    I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.
    When I test the WD application, the text field is not editable.
    Can you please advise what needs to be done?
    Thanks
    Sagar

    Hi...
    Place the following code in domodifyview
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      check first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
    Thanks
    Gopal.

  • IH01Functional Location field NOT EDITABLE

    Hi,
    We are facing a problem when we enter IH01screen, it shows functional locationa field as NOT editable.
    But with some other user ID its editable.
    We have checked the roles and authorizations but its fine.
    Kindly guide.
    Regards
    DM

    Hi Deepak,
    you must be using 4.7 or above versions.In that case you need to set the Parameter ID
    PM_TREE_INACTIVE as X in your user settings through SAP easy access      System>User Profile>Own Data 
    Try this and confirm if u still face problem
    Regards
    Manish

  • Field Not Editable

    Dear All,
    I got msg when i make manual change in my Order header level Goods recpt tabBATCH field.
    I want to make it not editable then how can it be possible?

    Hi Maulik,
    That's what I had asked you in your earlier thread?And reply too regarding this query.
    [Standard SAP Message|Standard SAP Message]
    And if I am not wrong, you want to restrict that manual Batch creation, correct or nor?
    If yes then there are some other ways by which you can control it.
    - Transaction Variant
    - User Exit
    - Authorization control.
    Regards,
    Dhaval

  • AP Invoice Tax Amount Field not editable

    Hi all,
    The tax amount (LC) field on the AP Invoice field is not editable. What tax setup do I need to do to allow the tax amount to be editable. All of our sales transactions are tax exempt, however, we need to pay tax to some of our service vendors.
    Thanks,
    Jane

    Hi,
    It is Standard SAP B1 behavior, Tax Amount is editable in Purchase Documents and not editable in Sales Documents.
    You have to frame the tax formula to match the amount correctly.
    Do you want to enter in your own tax amount?
    Did you check the form settings for Tax amount?
    It is not a problem, its standard SAP B1 behaviour so you can click the link(Orange) button of row level Tax amount
    and open the define  tax amount distribution window. put the tax amount in the row level and update.
    Thanks,
    Madhan.

Maybe you are looking for