2023 Jan 06 8:59 AM
Hello,
I have a problem when running a syntax ULINE. When I runs the program the Underline couldn't display.
Is that problem of setting? Could you please help me with this issue?
Thank you!
endselect.
2023 Jan 06 9:28 AM
2023 Jan 06 11:48 AM
Hey,
Kindly check this wiki.
Selection Screen screenelements - ABAP Development - Support Wiki (sap.com)
Eg: SELECTION-SCREEN ULINE /1(30).
2023 Jan 06 1:45 PM
Question seems more related to statement ULINE than SELECTION-SCREEN, ULINE?
2023 Jan 06 1:39 PM
Maybe an issue with the underscore character as a line in CJK fonts in Windows system. Did you check the SAP notes?
2023 Jan 06 1:40 PM
Better shorten your code, we don't need to know the details, and by shortening your code it's more likely to compile on any system e.g. :
REPORT.
ULINE.
WRITE 'HELLO'.
ULINE.
WRITE 'WORLD'.
2023 Jan 06 1:51 PM
Check your SAP GUI configuration (e.g. which fonts are used)
NB: You could perform a test, add a FORMAT FRAMES OFF, so '-' and '|' wont be converted into line elements.
2023 Jan 13 2:42 AM