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

SAP Script

Former Member
0 Likes
703

Hi Gurus,

In SAP Script ,I need the output as 'This is Plant name <u>AAAAAA</u>' in a same line .Hoe to code for this .

Thanks & Regards,

Ashok...

9 REPLIES 9
Read only

Former Member
0 Likes
677

u can use 'This is Plant name &variable name& '

Read only

0 Likes
677

Hi,

I need to do underline for a single word and rest of the words to be without underline....Hoe to code for this ...

Thanks ,

Ashok...

Read only

0 Likes
677

hi ashok,

define a character format with underline option selected in form attributes.

and use it like this.

This is plant name <c1>&w_plantname&</>.

Read only

Former Member
0 Likes
677

Hi Ashok

Write in the script

This is plant name &werks&

Regards,

Suruchi

Read only

0 Likes
677

Use &ULINE&

You can use this symbol to insert a string of underline characters into the output text. You must pass the number of underline characters required with the symbol. If you leave out the number, then just one underline character is printed.

Regards,

Suruchi

Read only

Former Member
0 Likes
677

Hi ashok,

to meet your requirement , define a character format with underlined option

in form attributes.

and use this format for the field which stores the value of the plant as shown

below.

'This is my plant <c1> w_plant(plant field) </>.

assuming c1 is your defined characterformat.

Read only

Former Member
0 Likes
677

Hi ashok,

to meet your requirement , define a character format with underlined option

in form attributes.

and use this format for the field which stores the value of the plant as shown

below.

'This is my plant <c1> &w_plant(plant field)& </>.

assuming c1 is your defined characterformat.

Read only

Former Member
0 Likes
677

Hi ashok,

to meet your requirement , define a character format with underlined option

in form attributes.

and use this format for the field which stores the value of the plant as shown

below.

'This is plant name '<c1> &w_plant(plant field)& </>.

assuming c1 is your defined characterformat.

Read only

dev_parbutteea
Active Contributor
0 Likes
677

Just put the following and use same paragraph format:

This is Plant name <u>&variable name& <>