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: 

Smartform template design

0 Kudos

Hi Experts,

I have to create a smart form like this,

Here Name and amount are passing from the driver program and I need this dotted lines below. How can I achieve this?

Thanks in advance.

Regards,

Nidhi Abraham.

1 ACCEPTED SOLUTION

former_member539238
Participant
0 Kudos

We had the same requirement before. What we did was to use two text elements in the same cell. The first text element had the data and the second one had the dots. You can refer this Dotted line for template border ? or Smartform : Require a dotted line for a window

3 REPLIES 3

former_member539238
Participant
0 Kudos

We had the same requirement before. What we did was to use two text elements in the same cell. The first text element had the data and the second one had the dots. You can refer this Dotted line for template border ? or Smartform : Require a dotted line for a window

0 Kudos

Yes.. I did the same too and it worked.

hedvig_rohonyi
Employee
Employee
0 Kudos

Hi Nidhi,

you have the possibility to create an Abap node in your smartforms.
To draw a dotted line dynamically I recommend you to use e.g. the abap command CONCATENATE.
1. Define variable WDOT with value '...........'
2. Concatenate your variable e.g.


concatenate wname wdot into wdot.

(If the length of the target field is shorter, the concatenation is cut off on the right)

Best regards,
Hedvig