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

print selected rows

Former Member
0 Likes
658

is it possible to print only the selected rows using alv grid? anyone knows how?

1 ACCEPTED SOLUTION
Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
599

Hi,

Use this link for a demo code for ALV display with each record with a checkbox.

And if user selects some records in ALV, then these records are displayed in another ALV grid using another internal table.

You can use this new internal table which comprises of the records selected by user at runtime.

https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/alv%252bgrid%252bdisplay%252bwith%252bch...

Hope this solves your problem.

Thanks & Regards,

Tarun Gambhir

5 REPLIES 5
Read only

Former Member
0 Likes
599

using ALV in Grid or OO mode, both give you methods to determine selected rows. Code to retrieve just those rows to a seperate table and print from there.

I would use an added button to the standard ALV Toolbar to allow control of it much easier.

Read only

Former Member
0 Likes
599

HI,

You can do it in ALV. Selected records can be porinted. You can [find|https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&query=checkboxin+alv&adv=false&sortby=cm_rnd_rankvalue] lot of links how to acheive the functionality. Search the SCN.

Read only

Former Member
0 Likes
599

thanks for the responses.

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
600

Hi,

Use this link for a demo code for ALV display with each record with a checkbox.

And if user selects some records in ALV, then these records are displayed in another ALV grid using another internal table.

You can use this new internal table which comprises of the records selected by user at runtime.

https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/alv%252bgrid%252bdisplay%252bwith%252bch...

Hope this solves your problem.

Thanks & Regards,

Tarun Gambhir

Read only

Former Member
0 Likes
599

big help! exactly what i need. thanks so much.