2006 Sep 18 5:42 AM
How to make star using abap code
like this
*
*
*
*
*
Message was edited by: Bhupesh Pathak
Message was edited by: Bhupesh Pathak
How to make star using abap code
like this
*
*
*
*
*
Message was edited by: Bhupesh Pathak
Message was edited by: Bhupesh Pathak
2006 Sep 18 5:44 AM
hi,
i think this is for a password field.
if so try this.
parameters: p_pass(20) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
rgds
anver
2006 Sep 18 5:45 AM
<deleted>
ok , if u want make one text field output as *
then use
AT SELECTION-SCREEN OUTput.
loop at screen.
if screen-name = ''P_NAME'.
screen-invisible = 0.
modify screen.
endif.
endloop
2006 Sep 18 5:51 AM
2006 Sep 18 6:18 AM
u can use simple write statemant for that....
write:/10'' ,''.
write:/10 '*'.
2006 Sep 18 6:18 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |