‎2007 Sep 11 11:31 AM
Hi All,
i'm getting an error with ULINE.
here is the piece of code.
uline: /(6) under w_openqty, "Underline Open Qty
(6) under opo-opdelv,"Underline Open Delivry
(6) under opo-bmeng, "Underline Aloc Qty
(6) under opo-olfmng,"Underline B/O Qty
(12) under w_alocval."Underline Alloc Value
the error is:
only the syntax uline and uline at /pos(len) is expected.
can any one please suggest.
‎2007 Sep 11 11:54 AM
hi,
ULINE CAN'T BE used. if u want to get underline for variables then u use SY-ULINE as it is a system variable and modify ur code as
write:/ sy-uline(6) under w_openqty, "Underline Open Qty
sy-uline(6) under opo-opdelv,"Underline Open Delivry
sy-uline(6) under opo-bmeng, "Underline Aloc Qty
sy-uline(6) under opo-olfmng,"Underline B/O Qty
sy-uline(12) under w_alocval."Underline Alloc Value
IF HELPFUL REWARD SOME POINTS.
WITH REGARDS,
SURESH ALURI.
‎2007 Sep 11 11:43 AM
Hi Suresh,
You can not use UNDER option with ULINE statement.
You can use this with WRITE statement only.
Check this code.
<b>uline.</b>
<b>WRITE:</b> /(6) under w_openqty, "Underline Open Qty
(6) under opo-opdelv,"Underline Open Delivry
(6) under opo-bmeng, "Underline Aloc Qty
(6) under opo-olfmng,"Underline B/O Qty
(12) under w_alocval."Underline Alloc Value
Thanks,
Vinay
‎2007 Sep 11 11:59 AM
Hi Vinay,
Thanks for your reply.
but its not working with write also.
its raising an error saying.......field under is unknown..its not defined by a data stmt..
‎2007 Sep 11 11:49 AM
Hi,
I think you should use the ULINE command this way:
ULINE AT position (lenght of uline).
Thanks,
Sandeep.
‎2007 Sep 11 11:54 AM
hi,
ULINE CAN'T BE used. if u want to get underline for variables then u use SY-ULINE as it is a system variable and modify ur code as
write:/ sy-uline(6) under w_openqty, "Underline Open Qty
sy-uline(6) under opo-opdelv,"Underline Open Delivry
sy-uline(6) under opo-bmeng, "Underline Aloc Qty
sy-uline(6) under opo-olfmng,"Underline B/O Qty
sy-uline(12) under w_alocval."Underline Alloc Value
IF HELPFUL REWARD SOME POINTS.
WITH REGARDS,
SURESH ALURI.
‎2007 Sep 11 12:04 PM