‎2007 Sep 13 6:34 PM
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
‎2007 Sep 13 6:37 PM
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
‎2007 Sep 13 6:37 PM
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