2009 Jun 09 6:28 AM
hello experts,
is there any way to obtain the value of the field by clicking on that particular field of the report.?
2009 Jun 09 6:52 AM
hello experts,
is there any way to obtain the value of the field by clicking on that particular field of the report.?
2009 Jun 09 6:31 AM
Is it list programming or ALV report.
In List programming u can do it by using Hide statement for that field.
2009 Jun 09 6:32 AM
2009 Jun 09 6:52 AM
2009 Jun 09 6:55 AM
hi
Check this
tables:zdr_fm.
types: begin of stru,
sn type zdr_fm-mandt,
sno type zdr_fm-rno,
sname type zdr_fm-rname1,
end of stru.
data :wa type stru,
itab type table of stru.
select mandt rno rname1 from zdr_fm into table itab.
loop at itab into wa.
write : / wa-sn.
hide : wa-sno,wa-sname.
endloop.
at line-selection.
select mandt rno rname1 from zdr_fm into table itab where rno = wa-sno .
loop at itab into wa.
write : / , 50 wa-sn,
wa-sno,wa-sname.
endloop.
thanks
Dharma
2009 Jun 09 6:57 AM
2009 Jun 09 6:57 AM
thanks a lot to all...... the code is working fine........and can anybody plz tell me How to implement the same logic in ALV ?....
2009 Jun 09 7:13 AM
hi
In interactive ALV ,Please use the events
DATA :lv_event TYPE slis_t_event,
lv_wae LIKE LINE OF lv_event.
CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
lv_wae-form = 'TOP-OF-PAGE'.
lv_wae-form = 'USER_COMMANE'.
Thanks
Dharma
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |