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

reports

Former Member
0 Likes
462

hi to all,

i' ve a requirement to display in the field vname.but while giving input in that field it sholud be invisible i.e it sholud consider my input in the form of ' ******* ' .pls urgent

thanx

lokanadhan.k

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
445

Hi Lokanadhan,

Try this code it will solve your problem:


PARAMETERS: p_pass(10) TYPE c.

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.

Reward points if helpful answer.

Ashven

2 REPLIES 2
Read only

Former Member
0 Likes
445

Hi,

Check this sample..


PARAMETERS: P_PASS(10) MODIF ID M1.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

* Make the field invisible.
  IF SCREEN-GROUP1 = 'M1'.
    SCREEN-INVISIBLE = 1.
    MODIFY SCREEN.
  ENDIF.

ENDLOOP.

Thanks,

Naren

Read only

Former Member
0 Likes
446

Hi Lokanadhan,

Try this code it will solve your problem:


PARAMETERS: p_pass(10) TYPE c.

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.

Reward points if helpful answer.

Ashven