2023 Aug 05 1:19 AM
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?
2023 Aug 05 11:17 AM
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.