cancel
Showing results for 
Search instead for 
Did you mean: 

Diplaying in List format

Former Member
0 Kudos

Hi,

I have a abap report which displays the output in a list format.

Now i want to display the same in web.

My question is that, using webdynpro how to display the same list in the browser.

I dont want the output in ALV.I want it in simple list format.

Regards,

Robin

Accepted Solutions (1)

Accepted Solutions (1)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

Hi Robin

We don't have List Processing in Web Dynpro, because Browser understands only HTML.

Internally your web dynpro converts it to HTML and thus you see the output.

You can use a table control to display your output or you have to use ALV Component.

Hope it is clear.

Abhi

Former Member
0 Kudos

Hi Abhi,

thanks for your response.

But what if i dont want my output in a tabular form.If my output contains simple paragraphs, then how to display it?

Regards,

Robin

abhimanyu_lagishetti7
Active Contributor
0 Kudos

Robin

If your output contains simple paragraphs you can use TextEdit or TextView Controls where u can specify number rows and columns.

Abhi

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

You have to put the final ouput in the internal table and bind it to the node which is mapped to Rowrepeater UI element.

The Rowrepeater will do the rest.

Warm regards,

Atul

Former Member
0 Kudos

Hi,

You can try using RowRepeater UI element in WDA.

Warm regards,

Atul

kmoore007
Active Contributor
0 Kudos

RowRepeater might be an answer, if I could do nested RowRepeater (like a nested loop). Is it possible?

For example:


Loop at Header_table.
  write: header_line.

At new product.
  Loop at detail_table.
    write: detail_line.
  EndLoop.
EndAt.

EndLoop.

Edited by: Kenneth Moore on Oct 15, 2010 7:38 AM

kmoore007
Active Contributor
0 Kudos

Hey Robin Hood,

Did you ever find a work-around for list processing in ABAP Web Dynpro. I have a similar requirement to convert an ABAP report with control-breaks into A4WD.

Kenneth