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

Text elements

Former Member
0 Likes
888

Hello Gurus,

Can anyone tell me in the below code

WRITE: /25 TEXT-070,

<b> 48 ' '(038),</b>

80 SY-VLINE.

WRITE: /01 ' '(079).

the line " 48 ' '(038)," will do?

Regards

Mac

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
851

It will write text at 25 palce

and blank from 48 to next 38 places

and vertical line at 80 place

and

at new line write blank place from 1 place

Reward if useful............

Minal

7 REPLIES 7
Read only

Former Member
0 Likes
851

hi Mac ,

That will just display a space leaving 48 spaces . the word (038) means that the space is coming up from a text element .

Thanks

Rohit

Reward if helpful .

Read only

Former Member
0 Likes
852

It will write text at 25 palce

and blank from 48 to next 38 places

and vertical line at 80 place

and

at new line write blank place from 1 place

Reward if useful............

Minal

Read only

Former Member
0 Likes
851

48 is the position for the cursor

'' means, that there is nothing to write if the text-sybol is not available.

(38) will write the text nr. 38.

Okay?

Read only

varma_narayana
Active Contributor
0 Likes
851

Hi Mac..

Text elements -Text symbols can be displayed in Two ways.

1)

<b>Write:/ Text-T01.</b> "will display the T01 only when it is maintained in Login language

OR else it will display Nothing...

2)

<b>Write:/ 'Hello'(T01) .</b> "will display the T01 only when it is maintained in Login language OR else it will display "Hello"

Hope u got the Solution..

<b>reward if Helpful</b>

Read only

0 Likes
851

HI,

WRITE: /25 'text',

48 '. '(038),

80 SY-VLINE.

WRITE: /01 ' '(079).

Put a '.' (dot) in that position- 48th. U will understand that it simply specifies a position.

nothing is done if its blank.

Read only

Former Member
0 Likes
851

Hi,

As per ur code it will display at the 48 th position 38 characters field will be display in the output.

reward me if it is use full answer

praveen

Read only

0 Likes
851

Hi,

It got nothing to do with the Position its basically a Text element

when you say ' '(038) it means if there is a text element with ID 038 then display that text element else display space.

Regards,

Sesh