2006 Mar 16 12:50 AM
Hi ,
I am developing Custom program , which produces two different outputs, i want show two different outputs simultaneously using ALV. I know how to produce single output report using ALV but not this one.
Any help is appreciated.
Thanks
Kisu
2006 Mar 16 12:54 AM
You can probably use the BLOCK LIST alv grid. The function module is 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
Here is a sample program.
http://www.sap-basis-abap.com/abap/sample-program-on-block-lists.htm
REgards,
Rich Heilman
Hi ,
I am developing Custom program , which produces two different outputs, i want show two different outputs simultaneously using ALV. I know how to produce single output report using ALV but not this one.
Any help is appreciated.
Thanks
Kisu
2006 Mar 16 12:54 AM
You can probably use the BLOCK LIST alv grid. The function module is 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
Here is a sample program.
http://www.sap-basis-abap.com/abap/sample-program-on-block-lists.htm
REgards,
Rich Heilman
2006 Mar 16 3:33 AM
Hi Kisu,
I would suggest a TABSTRIP ALV for this purpose.
Regards,
Anjali
2006 Mar 16 3:54 AM
Hi Kisu,
There are three Function modules to develop that.
<b>1</b>. REUSE_ALV_BLOCK_LIST_INIT
<b>2</b>. REUSE_ALV_BLOCK_LIST_APPEND.
Here minimum exporting params are
layout
fieldcat
tablename
events
sort
Data TABLES
output table.
if u want another output again call
REUSE_ALV_BLOCK_LIST_APPEND and pass above details.
like that u can show any no of outputs one bye one .
<b>3</b>. REUSE_ALV_BLOCK_LIST_DISPLAY
Thanks,
<b>Venkat.O</b>