cancel
Showing results for 
Search instead for 
Did you mean: 

Paragraph format problem

Former Member
0 Kudos

Hi All,

I am facing one small problem regarding allignment of paragraph.

I have some hardcoded text in my form which i have to allign as follows.

where text purchase has to be come just below text This and not below (a)

output 1

(a) This is the test form for printing the.

purchase order.

actually when I do paragraph format as justify i get following output

output 2

(a) This is the test form for printing the

purchase order.

but I want that text as output one

how can I get that?

please suggest.

Thanks

vinod.

Edited by: VINODP on Sep 4, 2009 1:06 PM

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi,

Define a paragraph format and click on tab font and check the bold is on or off. Check it to off

Use the paragraph format in the form.

P1 This is the test form for printing the
p1 Purchase Order

Hope this solves the issue.

Regards,

Rajani

Former Member
0 Kudos

hi vinod,

just do the following things.

on this starting of 'purchase order.' hit a enter. so though its a continued line it will be broken to two. then press few spacs and then check output.

or

go to line editor. make the command as new line for the second line. then keep two ,, . these will act as a tab. then check the result.

former_member755502
Participant
0 Kudos

HI,

Assumption - You are using SMARTFORM, as I am not familiar with SAP SCRIPT.

simply take two local variables of appropriate type, in one variable store - "(a) This is the test form for printing the" and in other - "purchase order". Then use these variables within text and use space bar to place these variables whrever you want. And also make sure the window in which you are going to place these variables should have sufficient height and width. For making them bold or for any other specifie formatting you can use smartstyles.

I think it will cater to your requirement.

Regards,

Sambaran

Former Member
0 Kudos

but is it a script or smarform:

if it's a script:

You define a paragraph format with a single tab

eg:

Paragarph format tab1

P1 5 char

define the text like below:

P1 (a),,This is the test form for printing the

P1 ,,purchase order.

If its a Smartform:

create a template with 2 nodes & 2 rows:

in 1st node of 1st row, create a text element| and place (a).

in 2nd node of 1st row, create a text element| with 'This is the test form for printing the'.

in 2nd node of 2nd row, create a text element| with 'purchase order'.

Hope it works!!

Rgds,

Pavan

Former Member
0 Kudos

Hi,

output 1

(a) This is the test form for printing the.

purchase order.

you can create a Text node like this and print it in window.

Edited by: MR Venkat on Sep 4, 2009 1:12 PM