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

Layout in ALV

Former Member
0 Likes
432

Hi,

I have created an ALV report in which 5 radio buttons are there for different sort options in selection-screen.Now, I want to remove those radio buttons and keep only one layout field for user selection.The report should display report for appropriate sort options(selected in layout field through F4 help).How to do this?

Thanks,

Lakshmanan

Hi,

I have created an ALV report in which 5 radio buttons are there for different sort options in selection-screen.Now, I want to remove those radio buttons and keep only one layout field for user selection.The report should display report for appropriate sort options(selected in layout field through F4 help).How to do this?

Thanks,

Lakshmanan

2 REPLIES 2
Read only

Former Member
0 Likes
414

Hi,

Fill the SORTCAT table conditionally.

if layout = 1.

perform fill_sortcat1.

elseif layout = 2.

perform fill_sortcat2.

...

endif.

regards,

lavanya

Read only

Former Member
0 Likes
414

Hi,

Create different layouts with different columns sorting. And provide the selection for layout selection in the selection screen.

Thanks,

Sriram Ponna.