cancel
Showing results for 
Search instead for 
Did you mean: 

multiple items in smartform cell without new line

Former Member
0 Kudos

Hi all,

I want to print a similar situation like this in a smartform table:


---------------------------------------------------------------
| KSCHL   |  Description                                      |
---------------------------------------------------------------
|  XBLNR, XBLNR, XBLNR, XBLNR, XBLNR, XBLNR                   |
|  XBLNR, ....                                                |
---------------------------------------------------------------

But when using a LOOP in a TABLE all XBLNR get printed each at a new line:


---------------------------------------------------------------
| KSCHL   |  Description                                      |
---------------------------------------------------------------
|  XBLNR,                                                     |
|  XBLNR,                                                     |
|  XBLNR,                                                     |
|  XBLNR, ....                                                |
---------------------------------------------------------------

How can I prevent this from happening? I'm out of options here, anyone got an idea?

Accepted Solutions (1)

Accepted Solutions (1)

Ryan-Crosby
Active Contributor
0 Kudos

Hi Ron,

It looks like you would need to use a LOOP ... ENDLOOP to setup a string using CONCATENATE. Once the loop is finished then you display the string in your description box and as long as it allows wrapped contents then your problem should be solved.

Regards,

Ryan Crosby

Answers (3)

Answers (3)

gokul_radhakrishnan3
Active Participant
0 Kudos

Ron,

Did you check the 'Append directly' method?

Regards,

Gokul

gokul_radhakrishnan3
Active Participant
0 Kudos

May be this helps. In your text node, in General attributes tab, there is a option with the name 'Start'. Choose 'Append directly' for that. Try this & let us know.

Along with that, you can do it within a loop and you can define table with the required dimension, etc based on your requirement.

Regards,

Gokul

former_member186055
Active Participant
0 Kudos

Hi Ron,

I also faced similar issue earlier, I solved this by using CONCATENATE. I also suggest Ryan Crosby reply, please follow it will solve your problem.

Regards,

Surya