‎2007 Sep 11 6:57 AM
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
‎2007 Sep 11 7:02 AM
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
‎2007 Sep 11 7:02 AM
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 .
‎2007 Sep 11 7:02 AM
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
‎2007 Sep 11 7:02 AM
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?
‎2007 Sep 11 7:02 AM
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>
‎2007 Sep 11 7:09 AM
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.
‎2007 Sep 11 7:13 AM
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
‎2007 Sep 11 7:15 AM
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