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

reg : password field

Former Member
0 Likes
928

hi friends..

i want to create one input field in my selection screen for password.

i.e data is invisible to the user.. is it possible in selection screen

i m not using screen painter, just i am using se38 editor..

thanks in advance

hi friends..

i want to create one input field in my selection screen for password.

i.e data is invisible to the user.. is it possible in selection screen

i m not using screen painter, just i am using se38 editor..

thanks in advance

6 REPLIES 6
Read only

gopi_narendra
Active Contributor
0 Likes
905

Check this code

PARAMETERS: p_pass(10).

AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF screen-name = 'P_PASS'.
      screen-invisible = '1'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

START-OF-SELECTION.
  WRITE : p_pass.

Regards

Gopi

Read only

Former Member
0 Likes
905

HI,

see this code

PARAMETERS:password(10).

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF screen-name = 'PASSWORD'.

screen-invisible = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

START-OF-SELECTION.

write:/ password.

rgds,

bharat.

Read only

Former Member
0 Likes
905

Hi,

it is possible in SE38.. check the code

PARAMETER p_name TYPE string.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF screen-name = 'P_NAME'.

screen-invisible = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Read only

0 Likes
905

Except for the parameter name there are 3 identical answers to this question now....

What is that supposed to be good for? Confusion?

Read only

0 Likes
905

it basically the speed of the internet connection buddy

Read only

0 Likes
905

Sounds reasonable....

Even though 12 minutes difference points to a veeeery slow connection.

Makes internet kind of an ordeal, doesn´t it?