‎2011 Jul 04 5:47 PM
Hi experts,
In this dynpro there is a field called LOGON_DATA-DEVTY which is an input/output field I want this Input : Not Possible , i was checking the program everything here is standard and i dont want to modify the standard , Do you know how to achive this ? thank you guys .
‎2011 Jul 05 7:57 AM
Hi José,
if you have an ECC Release, you may use implicit enhancement in FORM able_field in LLMOBF01 (2 places avaliable). Then you can create your own loop, if you are on the right screen, e.g..
IF sy-dynnr = '2889'.
LOOP AT screen.
IF screen-name = 'LOGON_DATA-DEVTY '.
screen-input = '0'.
MODIFY screen.
ENDIF.
ENDLOOP.
ENDIF.
In older releases I see no way to change the input option of this field without modification.
Regards,
Klaus
‎2011 Jul 05 7:57 AM
Hi José,
if you have an ECC Release, you may use implicit enhancement in FORM able_field in LLMOBF01 (2 places avaliable). Then you can create your own loop, if you are on the right screen, e.g..
IF sy-dynnr = '2889'.
LOOP AT screen.
IF screen-name = 'LOGON_DATA-DEVTY '.
screen-input = '0'.
MODIFY screen.
ENDIF.
ENDLOOP.
ENDIF.
In older releases I see no way to change the input option of this field without modification.
Regards,
Klaus
‎2011 Jul 05 11:08 AM
Hello Klaus ,
Unfortunately, it is release 620.
thank you very much for answer it helped me to realize that maybe the only way is ask for a key to modify the screen directly.
Cheers.