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

Aligning my report with TEXT ELEMENT...

Wil_Wilstroth
Active Participant
0 Likes
640

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

William Wilstroth
1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
592

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

4 REPLIES 4
Read only

Former Member
0 Likes
592

hi u can do the following.

write : 20 text-001.

hope this helps u.

Read only

Former Member
0 Likes
592

Hi William

Please check this example:

data: col type i value 20.

write:/col 'First time'.

Regards

Eswar

Read only

Former Member
0 Likes
592

better use length instead of position or both.

write : /(13) 'Quantity'.

write : /(13) itab-menge.

like that ..

regards

shiba dutta

Read only

Former Member
0 Likes
593

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