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

Smartform template design

Former Member
0 Likes
1,113

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

former_member539238
Participant
0 Likes
1,006

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

former_member539238
Participant
0 Likes
1,007

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

Read only

0 Likes
1,006

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

Read only

hedvig_rohonyi
Product and Topic Expert
Product and Topic Expert
0 Likes
1,006

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