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

Standard Text in SAP Script

Former Member
0 Likes
544

Hi ,

I am working on a modified version of MEDRUCK , in this the item text is displayed using standard text. the total amount is displayed at the bottom of the script and line is drawn across the window to segregate it. I had to modify the font so as to accommodate the layout required.

Now what is happening is that when i change the paragraph of the standard text so as to display it in the same font as the rest , the line i drew to segregate the total diminishes , it length reduces.

Could you please suggest a solution to overcome this problem.

Thanks

Arun

Hi ,

I am working on a modified version of MEDRUCK , in this the item text is displayed using standard text. the total amount is displayed at the bottom of the script and line is drawn across the window to segregate it. I had to modify the font so as to accommodate the layout required.

Now what is happening is that when i change the paragraph of the standard text so as to display it in the same font as the rest , the line i drew to segregate the total diminishes , it length reduces.

Could you please suggest a solution to overcome this problem.

Thanks

Arun

3 REPLIES 3
Read only

Former Member
0 Likes
510

Hi

As you have reduced the font size to match your paragraph, the line length has reduced. Since it is standard text, you can not change the length of the line. so, one solution would be to change your paragraph font to that of Standard text font.

Regards

Navneeth

PS: Reward points if helpful

Read only

0 Likes
510

Is the line drawn in the Standard Text itself or in the sapscript? If in the sapscript code, just make the paragraph format for that line as it was before you changed it.

Regards,

Rich Heilman

Read only

0 Likes
510

Hi,

or, if the segregation lines position is fixed, you may use sapscript box and/or position statement.

i.e.

/: BOX HEIGHT 0 TW FRAME 10 TW

draws a horizontal line across the window.

See also POSITION and SIZE commands - that's most of what u can do graphically in SAPscript.

Regards,

Clemens