‎2009 Apr 06 5:28 AM
Hi all,
I have one problem. I am displaying one line in output like below :
WRITE: / text-110 " where text-110 = doc no......doc date.......amount......voucher no.....
output = doc no......doc date.......amount......voucher no.....
now i want to add one more text-111 (Net Price) in above , i dont want to edit previous text-110.
and want to display ouput like below :
doc no......doc date.......amount......voucher no.....Net Price.
Thanks in Advance
Regards,
Sujeet
‎2009 Apr 06 5:32 AM
‎2009 Apr 06 5:49 AM
Hi,
I know Write : text-110, text-111. works, but in my report its not coming with second text.
why this is happening..i really dont knw.
regards,
sujeet
‎2009 Apr 06 5:55 AM
‎2009 Apr 06 5:34 AM
write: /10 'Display this'.
write: 30 'at 30'.without changing above line, you can display text at 30th position. So count position first of existed line.
‎2009 Apr 06 5:45 AM
data: text1 type string,
text2 type string.
text1 = 'doc no......doc date.......amount......voucher no....'.
text2 = 'Net Price'.
Write : text1, text2.
‎2009 Apr 06 5:47 AM
Hi.
Isn't the width insufficient?
REPORT ZZTEST00 MESSAGE-ID 00
LINE-SIZE 120 " <-----
LINE-COUNT 90.
‎2009 Apr 06 7:38 AM
Hello Sujeet,
Probably, you can do 2 things;
1 to attach text-111 with text-110..
WRITE:/ text-110, text-111.
Or you got to count manually where exactly voucher no ends, I mean the line number/count. and then give the line-number following it.
Suppose voucher number ends at 45;
then
WRITE:/ text-110, 50 text-111.
Net Price will appear with a gap of 5 chars.
Hope it Helps you,
Zahack.