Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Program SAPLLMOB Screen number 2889

Former Member
0 Likes
693

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 .

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
548

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

2 REPLIES 2
Read only

Former Member
0 Likes
549

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

Read only

0 Likes
548

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.