Disabling a field when editing a user

Hi,
I have a form in which I want to disbale a field if I am in editing mode. But I want it enabled when I create a user. Anyone know how to achieve this?
thanks

I think that when the user has not been created yet in IDM, the waveset.id does not exist. so you are in creation mode.
but when you're editing a user, the user exists in IDM and thus has a wavest.id.
really basic but works fine !

Similar Messages

  • Illustrator CC 17.1.0 crashes when editing preferences, user interface. Running on MacBook Pro i7 OSX 10.9.5

    Illustrator CC 17.1.0 running on MacBook Pro i7 OSX 10.9.5 - crashes when editing preferences, user interface. Also crashes when quitting application. Anybody any ideas?

    While 2 GB is the absolute minimum to install Mavericks, if you want to do anything with the Mac you need more then that. Upgrade your RAM.
    Until you upgrade the RAM seriously consider shutting down the Mac nightly. You should also seriously review the items in the User Login Items to see if there are any there that you really don't need to have startup with your login to reduce the amount of RAM you are using.

  • Tab between fields when editing song information

    iTunes 10.4 removed the ability to tab between fields when editing song information. Is there another shortcut now?

    Yes, I know EXACTLY what you mean. Actually the Tab sequence was reversed in 10.4. I'm upset that it took me until Septeber 2011 to figure it out. For the longest time, probably every release of iTunes. The Tab sequence went (Source-->Tab-->Search Music box-->Tab-->Tracks List)
    Now it's the reverse and it's so annoying. I have both Mac and Windows and was able to downgrade my Windows iTunes to 10.3.x (though I had to downgrade to a previous iTunes Library.itl file. I cannot downgrade my Mac iTunes b/c it's my main library and I'd lose historic data by restoring and old iTunes Library.itl file
    I've written to Apple about this several times the past few weeks but they've yet to address this. The latest version is 10.5 and it hasn't been restored. I WISH Apple would RESTORE this feature to its ORIGINAL design!!!

  • Error when editing Portal User Profiles

    Hi there,
    I got this error message when editing Portal User Profiles
    Error: The specified user does not exist. (WWC-41406).
    I can select users from OID, but can't edit them.
    Note: these users are imported from AD and placed in a different OU other than users container in OID.
    But, If I create a user in the same OU from Portal Administration page, then I can select and edit that user's Portal Profile.
    So what's the difference between imported users and the user created from Portal?
    Please advise.
    Thanks,
    Geoff

    REPORTSDEV was an invalid user so we dropped this user and started over and now it works.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by GREGG SAKSEFSKI ([email protected]):
    I'm tring to edit user REPORTSDEV.
    So I'm on the "Administer" tab and enter "REPORSDEV" in the User box and press <EDIT> button.
    After a couple minuates I receive the error below:
    Error: Unexpected error encountered in wwsec_api.id_sso (User-Defined Exception) (WWC-41417)
    The system failed to retrieve the necessary HTTP request to the Login Server to validate this user. (WWC-41447)
    Any ideas???<HR></BLOCKQUOTE>
    null

  • Disabling custom fields when Equipment type is M

    Hi all,
    I modified the IE02 transaction by adding 5 custom fields
    to the screen SAPLITO0 1050.
    Now i have the requirement to disable these fields when eqtyp is 'M'.
    Is there any userexit available for this purpose or i have to modify the PBO module of the screen.
    Any help will be appreciated.
    regards
    chandu.

    Hi Sai,
    Did you place your PBO module in the screen 1022's flow
    logic? The PBO logic should some what like following,
    general dynpro settings
      MODULE DYNPRO_INIT_SUB_ALL.
    specific dynpro settings
      MODULE DYNPRO_INIT_1022.   "This is your module here..
    restore active cursor position and set it
      MODULE DYNPRO_CURSOR_SET.
    And then in the PBO Module DYNPRO_INIT_1022 (which I assume is created in the include LIO0O01),
    MODULE DYNPRO_INIT_1022 OUTPUT.
    ****Your screen modification logic here..
    ENDMODULE.
    Also did you activate/generate both the screen and program?
    Please check that as well.
    When you debug put a break-point in your PBO module and see whether the control goes there..
    Hope this helps..
    Also if possible could you give me the detailed steps that you have followed? (In case it doesnt workout after checking every thing)
    Sri

  • OIM - Call adapter when edit OIM user

    How i call an adapter when edit a field on the OIM User form?
    I tried assing the adapter on process definition "xellerate user". What's the name of the Task for assign the adapter? I tried with several names but did not result.

    For which field you want to trigger your Java Code.
    Suppose First Name then create a Task with name "Change First Name"
    and make its entry in "Lookup.USR_PROCESS_TRIGGERS" if not exists.

  • Disabling a field when a radiobutton is selected.

    Hi,
    I have two radio buttons R1  and R2  and three input fields date1,date2 and date3 of which date3 is mandatory. My requirement is when I click on R2 the field date1 needs to be disabled. I am coding the logic at selection-screen output. But since the field date3 is mandatory this logic is calling after the madatory field check only. I want it to call before the mandatory field check.
    Any solution?.
    Thanks & Regards,
    Soumya.

    look at this code it may help u
    SELECT OPTIONS
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: r1 RADIOBUTTON GROUP rad1 MODIF ID sc7 USER-COMMAND cli DEFAULT 'X',
                r2 RADIOBUTTON GROUP rad1 MODIF ID sc6.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_ponum  FOR ekpo-ebeln MODIF ID sc1,   "PURCHASING DOCUMENT NUMBER
                    s_prodno FOR afko-aufnr MODIF ID sc2.   "ORDER NUMBER
    PARAMETERS
    PARAMETERS:     p_chno(8) TYPE c MODIF ID sc4.          "Challan no
    SELECT OPTIONS
    SELECT-OPTIONS: s_date FOR sy-datum MODIF ID sc5
                                  NO INTERVALS NO-EXTENSION.    "Date
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTIONSCREEN OUTPUT
    At selection screen if user selects PO then the Prod order will
    become dispaly only and if user selects prod order then
    the PO field and the challan.no becomes display only.
    In both cases the date will be mandatory field.
    AT SELECTION-SCREEN OUTPUT.
      IF r2 = 'X'.
       IF NOT s_prodno IS INITIAL.
        LOOP AT SCREEN.
          IF screen-group1 = 'SC1' OR screen-group1 = 'SC4' ."OR screen-group1 = 'SC5'.
            screen-input = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF r1 = 'X'.
       IF NOT s_ponum IS INITIAL.
        LOOP AT SCREEN.
          IF screen-group1 = 'SC2'.
            screen-input = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1 = 'SC4' OR screen-group1 = 'SC5'.
             screen-required = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    reward if useful.
    Regards
    Dheeraj

  • Disable facebook update when editing photos

    hi,
    Is there a way to disable automatic updates of photos which are part of a facebook album?
    The thing is, when I edit photographs to be used for other purposes, I find it automatically updates the image contained in the FB album as well (well, the facebook album within iPhoto seems to only contain links to the actual images in iPhoto) . Whilst I can see that that would make sense occasionally, and it sometimes is quite nice to get friends' comments on year old photographs, by and large I find it rather annoying. Duplicating images would be an option, but then I'd quite like to keep duplicates to a minimum.
    Is there a way to control the trigger-happy interaction between Fb and iPhoto a bit more?
    t

    In preferences you can set web syncing to manual
    But when you sync all edited photos will be synced
    :LN

  • Missing blue frame that shows around field when editing.

    Often, when fields are close together, the blue frame that shows the field gets in the way of selecting nearby fields. I often wished there was a way to turn this off.  Well, I got my wish. Now, I just see black dots around the field.  I don't know what I did or how to turn this feature back on.  Using LiveCycle 9.

    Hi:
    The feature is selected off/on using:
    View=>Object Editor
    Good luck!
    Stephen

  • ALV Grid fields from editable to non-editable mode

    Hi,
    I am displaying my data through ALV Grid. In my grid the non-key fields are in editable mode.
    When I edit any of the editable fields and place the cursor on other field the field which I have edited should become disable(non-editable). Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it.
    Thanks & Regards,
    Adithya M.

    Hi Adithya,
    I am confused by your statement "place the cursor on other field the field which I have edited should become disable" -- are you stating that this is the requirement or what is currently happening with your program.  The way the edit fields should work by default is they are editable at all times unless you tell it otherwise. 
    If you are saying your requirement is to change the field to disabled once the field is edited (runtime change), first you want to handle the event on data changed then within your method of handling on data changed, you can disable the field from being edited by using cell styles and changing the value to disabled. 
    If you look at program BCALV_GRID_EDIT,
    You will find code where it disables the field for edit using Cell Style -- this will give you an idea how Cell Style controls editable fields and display fields:
            ls_cell-style  = cl_gui_alv_grid=>mc_style_enabled.
            ls_cell-maxlen = 4.
            ls_cell-fieldname = 'CARRNAME'.
            append ls_cell to gt_sflight-cell.
    This specific code will set the field disabled when the program is first exectued, in your case if you need to do this at run time, after someone edits the field, you need to implement handling the event on data changed, in the same program you will find:
    method handle_data_changed.                 
       perform data_changed using er_data_changed.
    endmethod.                     
    It is within this method that you can disable a field for editing.
    However, once it is disabled you will not get back into the handle_data_changed method.  I'm not sure I understand your statement "Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it."  Why would you want the user to be able to edit something, then show it disabled, then let them click on it and edit it again?  Why not just leave it in edit mode?  Maybe if I understand the requirement better, I can answer this portion of the question. 
    If this is based on security or changing from edit to display for the entire grid, you can run the same program mentioned above and click on the Change/Display button in the top left to see how it enables and disables the entire grid for editing.
    Cheers,
    Bonnie

  • Disable screen fields

    I required help to disable screen fields when User command runs in PBI not in case of PBO. Pl. help.
    vikas

    Hi,
    PBI? assuming PAI...
    u can disable filed useing :
    loop at screen.
    if screen-name = '<ur_fld_name>'.
    screen-input = 1. "or may be 0
    modify screen.
    endif.
    endloop.
    Jogdand M B

  • Disabling the fields

    Hi All,
      How can i disable the fields when i press on Display button, the data shud be retrieved but the fields shud be in display mode only.
      waiting for ur reply.
    Thanx  & Regards
    Srinath

    You need to loop at screen and modify the attirbutes of the screen structure. Do this in the PBO and before doing this , check if the transaction is in Display mode or Change mode.
    if display_mode = 'X'.  "Variable set depending on the transaction
    Loop at screen
      screen-input = 0.
      screen-active = '0'.
    modify screen.
    endloop.
    endif.
    regards,
    Advait.

  • Clear cell when edit

    How can i clear all the data in a cell of a JTable when i select this cell? By default, when i edit a cell and type the new data is add to the previus data, but i want have only the new data.

    You should be able to extend DefaultCellEditor (or similar) to clear the text in the text field when editing starts.
    Either look at the source for the default table cell editor or the Swing tutorial for more information on table cell editors.
    Hope this helps.

  • Make fields only editable by certain useres

    hello,
    i have created several authorization schemes.
    In the "Security" section of a text field i can choose these so that the item is only displayed for authorized users.
    However, I would like everybody to see the text field, but only authorized users to edit it. There is a section "Read Only" but I cannot find how to use the authorization schemes there.
    Can anybody tell me how this works?
    Thank you

    I'm stil having a little problem.
    I have now made a pl sql function called "authorize", which is supposed to return a boolean value.
    What do i choose in the "read only condition type" field and what do i write in the condition field so that my function is called and the field is read only when false is the return value?
    I'd also like to know if its possible to test my function in the "run sql window"? Can I call it in there and see its return value?
    thanks for you help

  • OO ALV Cell Merge Problem when editable fields

    Hi there!
    I'm using OO ALV ( CL_GUI_ALV_GRID ) and experiencing a strange problem.
    I'm interested in the cells merging functionality of ALV, when i sort data for a specific field.
    It works fine but only if i do not set any field as editable ( lvc_s_fcat-edit = 'X' ).
    For some reason ALV loses some of its functionality when you set a field as editable.
    I've noticed it also with the functionality of expanding/supressing data when using subtotals.
    If any field is set as editable then subtotals come always expanded, you cannot supress them...
    Has anyone else experienced somethng like this before? Any help will be appreciated!
    BR
    George Zervas

    Hi,
    Check This [Thread|http://forums.sdn.sap.com/thread.jspa?threadID=928573]  to solve your issue.
    Check the  User Command, first line should be call method cl_gui->check_changed_data().
    Check this [url|http://wiki.sdn.sap.com/wiki/display/ABAP/InteractiveEditableOOALVgridwithdynamicitab,FCATandENTERkeyeventtrigger] for code to work on Interactive Editable OO ALV grid .
    Hope will solve your issue.
    Regards,
    Saravana.S
    Edited by: saravanasap on Feb 14, 2012 7:38 AM

Maybe you are looking for

  • Regarding logical database PNP

    Hi all:      I am learning to use logical database PNP,     Originally,  there are some buttons like 'Further selection' 'selection helps ' 'Sort order' at the top of selection screen. How could I control them? If I just use some of them , like 'Furt

  • Internal Order Posting

    Hi Gurus, I need to post to an internal order i created. The order is in released status now. I tried creating a purchase order followed by MIRO/MIGO but to no help. Kindly help me in the following steps, 1) How to post to an internal order using an

  • Is forceUpdateToVersionField only for Root UoW?

    Dear all, We would like force update to the version field when it's privately owned object get changes. It is our developed function. public static void addOrUpdateObject(Session session, Object obj) {      session.removeFromIdentityMap(obj);      Ob

  • Help Me unable to make in app purchases

    Ive made a few purchases in knights and dragons and now its refusing to let me and keeps sayin unable to make in game purchase contact support and the stuff i wanna buy is limited sale and wont be around much longer help me please.

  • Why does my mail program keep logging out?

    While using the on board mail program we have recently started having an issue with the program logging our password out. Sometimes it happens one right after the other and other times it will go for an hour or so and ask for the password to be re-en