2008 Dec 10 11:43 AM
Hi All,
I am using the FM 'REUSE_ALV_GRID_DISPLAY' to generate a ALV report. I am able to sucessfully generate it but i am able to select just one line item at a time in the ALV grid display. I want to select multiple lines in it.
How is it possible.
The following parameters i am passing to the FM.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = ZXXXX "Program name
it_fieldcat = it_fld_catalog
i_save = 'X'
TABLES
t_outtab = it_final
EXCEPTIONS
program_error = 1
OTHERS = 2.
Also i want to send the selected line items via mail as PDF attachment to a person . How it is possible. Does the selected line items gets stored somewhere?
Please help. Thanks in Advance.
Regards,
Vivek
2008 Dec 10 11:54 AM
Hi,
I feel you should be able to select multiple lines if you press Cntrl....
Let me know if it helps.
Vivekanand
2008 Dec 10 11:52 AM
Hi Vivek,
For Multiple line selection. You can introduce a CHECK BOX as your first column in your ALV output. You can do this via Field Catalog. In your internal table also you need to have your first column with CHAR 1 to store the check box values.
Later while processing the records, you can process only the records which is checked.
Best Regards,
Ram.
2008 Dec 10 11:54 AM
Hi,
I feel you should be able to select multiple lines if you press Cntrl....
Let me know if it helps.
Vivekanand
2009 Jan 30 4:50 AM