Application Development and Automation 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: 
Read only

Smartforms

Former Member
0 Likes
569

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
Read only

Former Member
0 Likes
539

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
Read only

Former Member
0 Likes
540

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

Read only

0 Likes
539

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

Read only

0 Likes
539

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

Read only

Former Member
0 Likes
539

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

Read only

Former Member
0 Likes
539

Hi Mahesh,

In Programing Lines

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

Hopes this helps you.

Ali

Read only

Former Member
0 Likes
539

thanks