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

Star

Former Member
0 Likes
914

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

5 REPLIES 5
Read only

anversha_s
Active Contributor
0 Likes
782

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

Read only

Former Member
0 Likes
782

<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

Read only

Former Member
0 Likes
782

Hi Bhupesh,

Please refer the following thread :

Best regards,

Prashant

PS : Please reward all helpful answers

Read only

0 Likes
782

u can use simple write statemant for that....

write:/10'' ,''.

write:/10 '*'.

Read only

0 Likes
782

u can use simple write statemant for that....