Application Development 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: 

Smartforms alternating table results

aleksi
Explorer
0 Kudos
317

Hi,

Ive been tasked with displaying the results of this table on alternating order using two columns as seen on the screen shot.

How will I be able to do this?

1 REPLY 1

Sandra_Rossi
Active Contributor
0 Kudos
259

Do you mean, if you want to print in ascending order 3007, 3019, 3021, 3039, 3045, do you want to print in priority left to right, then top-down?

3007  ...................                   3019  ...................
3021  ...................                   3039  ...................
3045  ...................

If yes, it's easy. I suggest that you prepare an internal table in your ABAP program, with each lines made of two nested structures LEFT and RIGHT. Both sub-structures would contain a number, a text and whatever fields you want.

In your Smart Form, you just create a Table node based on this internal table.

That's it.