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

Former Member
0 Kudos

How to display the values in smart forms in the following manner..

employeename : aaa|bbb|ccc|

empid : 001|002|003|

designation : xxx|xxx|xxx|

Let me knw how this is possible

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

HI Mahesh,

Create a TExt element & goto the editor

type


EMPLOYEE NAME : &wa-field1&|&wa-field2&|&wa-field3|
empid                     : &wa-field4&|&wa-field5&|&wa-field6&|
designation            : &wa-field7&|&wa-field8&|&wa-field9&|

You need to loop over the internal table & pass the data to work area.

Best regards,

Prashant

6 REPLIES 6

former_member223537
Active Contributor
0 Kudos

HI Mahesh,

Create a TExt element & goto the editor

type


EMPLOYEE NAME : &wa-field1&|&wa-field2&|&wa-field3|
empid                     : &wa-field4&|&wa-field5&|&wa-field6&|
designation            : &wa-field7&|&wa-field8&|&wa-field9&|

You need to loop over the internal table & pass the data to work area.

Best regards,

Prashant

0 Kudos

Am asking that i need to display all the names in horizontal order

0 Kudos

Yes, We can display them in horizontal order also....

right click on window,

Create --> Flow Logic --> Program Lines

In that write your logic and display it in text.

Ali

Message was edited by:

Quadri

Former Member
0 Kudos

Hi,

Create a template similar to table and can display it

also check the following

once go through the thread u will get to k now differnt ways

Refer to link

Regards

ANJI

Former Member
0 Kudos

Hi Mahesh,

In Programing Lines

concatenate empid1 empid2....seperated by '|'.

Hopes this helps you.

Ali

Former Member
0 Kudos

thanks