cancel
Showing results for 
Search instead for 
Did you mean: 

Two Detailed List from Basic List

Former Member
0 Kudos

Hi All,

Can we have two detailed list from basic list at the same time? if yes how and if no why?

The above question has been asked by my Client for thier requirements in a report.

If anyone has Ideas, Could you please Help.

Many Thanks in Advance.

Regards,

Anbu

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi Anbu,

If I understand your requirement properly, <b>WINDOW</b> might be able to solve your issue,

Once <b>AT LINE-SELECTION</b> is triggered, you can show the secondary list on a <i>new window</i>, with the basic list still available in the background.

This can be triggered by using the following code:

AT LINE-SELECTION 

WINDOW STARTING AT x1 y1 ENDING AT x2 y2 .

.
.
.
Logic to build Secondary list.
.
.
.

To get more information. Type WINDOW on the ABAP Editor screen, place the cursor on it and press <b>F1</b> key for keyword documentation.

Hope this helps.

Best Regards,

Sanyam

Former Member
0 Kudos

Hi,

At the same time for ABAP output it is not possible.

But there are 2 options.

1.) Create a control and use splitter-screen controls.

So you can print both list at the same time.

2.) Print the first list as usual and

call afterwards the rest in a separate dynpro.

So the user can switch between both list.

BR

Michael

Former Member
0 Kudos

Hi,

Thanks for the Reply,

I need two Detailed List with two Page Headings to be displayed in the secondary screen from the Basic List.

This has to be done in ordinary Report and not as an ALV.

Thanks for the Input.

Regards,

Anbu

Former Member
0 Kudos

Hi,

Do like this.

Loop at itab.

write:/ itab-bukrs,

itab-belnr hotspot,

......

.......

hide itab-belnr.

endloop.

now

at line-selection.

case sy-lsind.

when '1'.

here you need to select the data based on the itab-belnr.

and you need to display it.

this is sample code.

try this.

Thanks.

if your problem is solved award points and close the thread.

Vinod_Chandran
Active Contributor
0 Kudos

Hi,

I do not think this is possible in list but can be done in ALV using screens.

One way to do this in ALV is to call a screen when you double click on a line.

Cheers

Vinod

Former Member
0 Kudos

Hi,

At the same time means?

Actually we have Drill down option I think you might know this.

If it is so...

Use HIDE......

AT LINE-SELECTION.

CASE sy-lsind.

when '1'.

......

......

Can you elaborate your issue.

Thanks.

Message was edited by: Deepak333 k