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

ALV Report

Former Member
0 Likes
513

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

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
490

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

3 REPLIES 3
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
491

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

Read only

Former Member
0 Likes
490

Hi Kisu,

I would suggest a TABSTRIP ALV for this purpose.

Regards,

Anjali

Read only

venkat_o
Active Contributor
0 Likes
490

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>