2007 Jul 09 5:30 PM
Hi,
I have the internal table like the below one and there are 7 seven check-box in the selection screen which relates the seven fields in the internal table. If the user selects 5 check-box then the corresponding 5 fields has to be displayed in the output as ALV format. If he selects 2 check-box then the corresponding 2 fields has to be displayed in the output as ALV format. Please let me know how to do it?
Data : Begin of Lt_temp occurs 0,
f1,
f2,
f3,
f4,
f5,
f6,
f7,
end of lt_temp.
Thanks for your reply.
Best Regards,
Raj.
2007 Jul 09 5:36 PM
Hi
Try when creating the field catalog, put the field visible or not visible.
ie:
...
if f1 eq '1'.
Fild_cat-no_out = "X".
endif.
....
Bye
Gabriel
2007 Jul 09 5:36 PM
Hi
Try when creating the field catalog, put the field visible or not visible.
ie:
...
if f1 eq '1'.
Fild_cat-no_out = "X".
endif.
....
Bye
Gabriel
2007 Jul 09 6:02 PM
Check out this weblog...
<a href="/people/alvaro.tejadagalindo/blog/2006/11/27/dynamic-alv-list-display ALV List Display</a>
It might help you out.... -:)
Greetings,
Blag.
2007 Jul 09 6:08 PM
2007 Jul 09 8:03 PM