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

AT line Selection event

Former Member
0 Likes
1,051

hello experts,

is there any way to obtain the value of the field by clicking on that particular field of the report.?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,019

Hi,

This can be achieved by using HIDE Statement....

Check this one...

[Hide Statement|]

Regards,

Chandra

7 REPLIES 7
Read only

Former Member
0 Likes
1,019

Is it list programming or ALV report.

In List programming u can do it by using Hide statement for that field.

Read only

Former Member
0 Likes
1,019

Hi Vivek,

Try using HIDE statement.

Read only

Former Member
0 Likes
1,020

Hi,

This can be achieved by using HIDE Statement....

Check this one...

[Hide Statement|]

Regards,

Chandra

Read only

Former Member
0 Likes
1,019

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

Read only

Former Member
0 Likes
1,019

Hi,

Use Hide statement.

regards,

Jayanth G

Read only

Former Member
0 Likes
1,019

thanks a lot to all...... the code is working fine........and can anybody plz tell me How to implement the same logic in ALV ?....

Read only

Former Member
0 Likes
1,019

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