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: 

problem in sapscript cut line start after 12 char

Former Member
0 Kudos

i need to design like this:

client name: ELIE MARIE JOE ............................

JORDEN

how should i define a paragraph that will do what i want..... ? ? ?

my big problem is how can i move the cut line to the desire position example:

JORDEN -> should be under ELIE MARIE JOE and not start

at margin 0.

how can i do this ? ? ? ?

7 REPLIES 7

Former Member
0 Kudos

Hi,

You can define tabs in the paragraph. for the required margin and can use that while writing the text.

e.g.

'Client name : ' &name&

,,&city&

regards,

Gagan

Former Member
0 Kudos

TRY GIVING TAB LIKE

,,<B>JORDAN</>

Former Member
0 Kudos

Hi,

'Client name:'&client_name&

,,&your_var_below&

Regards,

Ville

Former Member
0 Kudos

Hi,

If you find answers helpful, Please reward points.

Regards,

Gagan

Message was edited by: Gagan Bhanot

Former Member
0 Kudos

my problem is that:

define str := ELIE MARIE JOE ............................

...................JORDEN

client name: &str&

*********************************************************

the var value is cut because the size of the window

s small than the var value( i can't enlarge the window

i have a limit because of lots windows ).

now when the var value is cutting i want that the cutting

line will display in the desire place .

how can i do this ? ? ?

0 Kudos

One suggestion would be to create two windows. One window will only contain the text 'Client Name:' the other window will be right beside it and contain your variable. That way if it wraps it will be directly below the first part of the variable.

Another suggestion is to break up the field before it is sent to the sapscript and use tab stops as suggested in previous posts.

Hope this helps,

Becky

0 Kudos

Hi,

What if you split your variable into two?

Or if you don't want to split your variable into two is it possible for you to change your layout so that the output would look something like this:

Client name:

ELIE MARIA JOE JORDEN

Regards,

Ville

Message was edited by: Ville Leivo