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

disabling the help text in parameter input.

Former Member
0 Likes
439

Hi all,

I am using parameter input to take the password but when i type any text it is giving the suggestion list like drop list in google, that will be allowing all to know the password.

I don't want that to happen plz any one help me with this.

2 REPLIES 2
Read only

Former Member
0 Likes
410

If you donot want to display suggestion(previously entered) for any parameter then you go to SAP GUI options -> Local data-> History. Here clear History. Then you won't have any suggestions for parameter

Read only

former_member196651
Contributor
0 Likes
410

Hai Santhosh,

If you are using module pool then set the property of the field as invisible, required and output only. Then the entry within this field will become '*'. In such a case the history will not be there.

This is applicable in case of parameter in selection screen also. An example given below:

PARAMETERS p_char TYPE char10 OBLIGATORY.

AT SELECTION-SCREEN OUTPUT.

   LOOP AT SCREEN.

     IF screen-name = 'P_CHAR'.

       screen-input  = 1.

       screen-invisible  = 1.

     ENDIF.

     MODIFY SCREEN.

   ENDLOOP.


Please check this and revert.


Thanks & Regards,

Abijith