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

password declaration

Former Member
0 Likes
595

hi all

how to declare password to make it appear as series of astericks * in selection screen.

4 REPLIES 4
Read only

Former Member
0 Likes
532
REPORT ZTEST_ALV_CHECK MESSAGE-ID ZZ .
 
 
PARAMETERS : P_PASS(6).
 
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'P_PASS'.
      SCREEN-INVISIBLE = '1'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
Read only

Former Member
0 Likes
532

hI..

parameters p_pw(10) type c .

at selection-screen output.

loop at screen.

if screen-NAME = 'P_PW'.

SCREEN-INVISIBLE = '1'.

ENDIF.

MODIFY SCREEN.

ENDLOOP.

Message was edited by:

Rammohan Nagam

Read only

Former Member
0 Likes
532

Make the data type of the password field as RAW in the table.

You will see only * in the selection screen.

Read only

Former Member
0 Likes
532

Hi,

Double click on text field on screen -- It will shows attribute screen -- attributes -- program and check box *entry.

This will help you.

Jogdand M B