‎2014 Mar 25 9:03 AM
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.
‎2014 Mar 25 9:11 AM
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
‎2014 Mar 25 11:24 AM
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