2007 Jan 24 8:39 AM
hi all,
how can i WRITE a statement and align it with TEXT ELEMENT?
for example:
WRITE : / 20 'ORDER SALES'.
how do i put that position 20 in text element. so i can re-use text element to position my other related write items.
thanks
William Wilstroth
2007 Jan 24 8:56 AM
Hi william,
REPORT ZEX33 .
data : count type i value 20.
<b>WRITE at count 'ORDER SALES'.</b>
(or)
REPORT ZEX33 .
data : count type i value 20.
<b>write at text-001 'ORDER SALES'.</b>
in Text-001 give value 20
hi all,
how can i WRITE a statement and align it with TEXT ELEMENT?
for example:
WRITE : / 20 'ORDER SALES'.
how do i put that position 20 in text element. so i can re-use text element to position my other related write items.
thanks
William Wilstroth
2007 Jan 24 8:42 AM
hi u can do the following.
write : 20 text-001.
hope this helps u.
2007 Jan 24 8:43 AM
Hi William
Please check this example:
data: col type i value 20.
write:/col 'First time'.Regards
Eswar
2007 Jan 24 8:48 AM
better use length instead of position or both.
write : /(13) 'Quantity'.
write : /(13) itab-menge.
like that ..
regards
shiba dutta
2007 Jan 24 8:56 AM
Hi william,
REPORT ZEX33 .
data : count type i value 20.
<b>WRITE at count 'ORDER SALES'.</b>
(or)
REPORT ZEX33 .
data : count type i value 20.
<b>write at text-001 'ORDER SALES'.</b>
in Text-001 give value 20
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |