‎2007 Sep 10 11:35 AM
Hello Friends.. I am upgrading an abap z-program from SAP 3.11 to ECC. the program contains a line: write: /(10) variable1, variable2. In 3.11 this line returns no error, but in ECC the following warning occurs: "you cannot use the syntax WRITE/ULINE/(10). The correct syntax is "WRITE/ULINE AT/(10)".
Not sure if i should ignore this warning.. I would appreciate any comment...
Best regards Ballo
‎2007 Sep 10 11:41 AM
Hi,
No need to worry for warning mesages,just activate and see,it willwork.
Regards,
Nagaraj
‎2007 Sep 10 11:37 AM
‎2007 Sep 10 11:39 AM
Hi,
For me its working fine.. no warning ...
I think you can use the same ..
‎2007 Sep 10 11:41 AM
Hi,
No need to worry for warning mesages,just activate and see,it willwork.
Regards,
Nagaraj
‎2007 Sep 10 11:42 AM
hi,
i think u should not use braces as ur not giving any specific position to print like this.
for ex: write:/ 2(10) 'suresh'. //////// then starting 2 postion its goes on printing suresh until 12th position . if given string is larger than given index then index is ignored.
it may by default taken as 0 in ur case.
so in ECC 5.0 remove that braces and try.
like this as write:/15 'Aluri'.
if helpful reward some points.
with regards,
Suresh Aluri.