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: 

How to display multiple line items data in one row in table in smart from

Former Member
0 Kudos

Dear Friends,

I have a requirement in smart from ,I need to display multiple line items Auditor Names in one row in table smart form.

My final Internal Table data having like below. 7 records(Auditor Names) is there.

I need to dis play final out put in table smart form in one row like below.

How to achieve this requirement in table in smart form.

Any logic is there suggest me please.

Thanks and Regards,

S.k.prabhakar.

1 ACCEPTED SOLUTION

iftah_peretz
Active Contributor

Hi,

You have multiple options to do this.

To name some:

If you know that the max auditors number is 7 you can just build a template with 7 cells and if the number is less than that then leave the extra cells empty (or have a condition based on the no. of auditors to have 1,2,...7 cells template presented).

If you don't know the number in advance you can have a "program lines" loop over the table and insert it to a different table that will be used as a presentation table (with X number of columns) and on the X+1 auditor start a new line in that presentation table.

Here is a quick guide on tables and templates.

1 REPLY 1

iftah_peretz
Active Contributor

Hi,

You have multiple options to do this.

To name some:

If you know that the max auditors number is 7 you can just build a template with 7 cells and if the number is less than that then leave the extra cells empty (or have a condition based on the no. of auditors to have 1,2,...7 cells template presented).

If you don't know the number in advance you can have a "program lines" loop over the table and insert it to a different table that will be used as a presentation table (with X number of columns) and on the X+1 auditor start a new line in that presentation table.

Here is a quick guide on tables and templates.