cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with a display in SMARTFORMS

Former Member
0 Kudos

Good afternoon everybody,

I have a problem concerning a smartform.

My actual table looks like this :

Page 1

Column 1 Column 2

DATA 1 -


> DATA 2

DATA 3 -


> DATA 4

DATA 5 -


> DATA 6.... etc

Page 2

Column 1 Column 2

DATA 7 -


> DATA 8

etc.

And I need to display the table like that (in vertical) :

Page 1

Column 1 Column 2

DATA 1 DATA 4

DATA 2 DATA 5

DATA 3 DATA 6

Page 2

Column 1 Column 2

DATA 7 DATA 11

DATA 8

DATA 9

DATA 10

Does anybody know how to do that (if this is possible) ?

Thx for your help.

Edited by: HenriAD on May 4, 2009 2:17 PM

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

For your requirement first you place

Loop node

---> Place Template and create rows and columns as per requirement

Before displaying every row data read the corresponding line items using index of row and place it on Row of Template.

Former Member
0 Kudos

Thx all of you.

I suceeded what i wanted to do.

Former Member
0 Kudos

Hi Henri,

Create two templates in the main window give the position for the text nodes and display as per your requirement.

Regards,

Sravanthi

Former Member
0 Kudos

Hello,

You re-arrange your table vertically, as you required. Then try to display it.

former_member205763
Active Contributor
0 Kudos

suppose the table is itab with columns A and B,

so ur data is like wa-A and wa-B.

now use a table node to loop at itab into wa.

now create two rows with line type having single column.

loop

ROW1 -

print wa-A

ROW2

print wa-B.

endloop.

this way u'll get ur data vertically