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

help me

Former Member
0 Likes
280

hi experts ,

i have a senario . i took customer no as parameter . depending on tht customer no, i am taking some o/p . wht my problem is when i am entering the customer no , i want to donot display customer no and want to display some * instead of customer no . like pwd .

thanks in advance ,

sumanth

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
264

You can do this.



report zrich_0002 .

data: xkna1 type kna1.

parameters: p_kunnr type kna1-kunnr.

at selection-screen output.

  loop at screen.
    if screen-name = 'P_KUNNR'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.


start-of-selection.

  select single * into xkna1 from kna1
              where kunnr = p_kunnr.
  write:/ xkna1-name1.

Regards,

RIch Heilman

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
265

You can do this.



report zrich_0002 .

data: xkna1 type kna1.

parameters: p_kunnr type kna1-kunnr.

at selection-screen output.

  loop at screen.
    if screen-name = 'P_KUNNR'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.


start-of-selection.

  select single * into xkna1 from kna1
              where kunnr = p_kunnr.
  write:/ xkna1-name1.

Regards,

RIch Heilman