‎2007 May 09 6:22 AM
Can use Bold & font size in reports?
if it is possible how to use
‎2007 May 09 6:25 AM
hi,
If you are using WRITE statements, use
FORMAT INTENSIFIED ON.
WRITE : / 'welcome'.
FORMAT INTENSIFIED OFF.
You can set the SCREEN-INTENSIFIED = 1 in a loop endloop over the SCREEN table.
Add this in your PBO. or AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'your field'.
SCREEN-INTENSIFIED = 1.
endif.
MODIFY SCREEN.
ENDLOOP.
<i>Note : font is not possible in reports</i>
Regards
Reshma
‎2007 May 09 6:25 AM
Hi Rajamahender,
U can't use bold & font size in normal classical reports.
Use SAP script or smartforms for that.
Reward points if helpful.
Regards,
Hemant
‎2007 May 09 6:26 AM
You can change the font color in ALV, but changing the font size and format ..I am not aware..
In simple reports.. I think its not possible
Thanks & Regards
‎2007 May 09 6:26 AM
i think its not possible..for that you have to develop script...
regards
shiba dutta
‎2007 May 09 6:28 AM
Hi,
BOLD
FORMAT INTENSIFIED ON.
WRITE : / 'ABAP'.
FORMAT INTENSIFIED OFF.
Font Size.
By using print controls we can do it.
check the link below for further information
http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a95e351ea11d189570000e829fbbd/content.htm
You can increase the font size during printing dynamically. In the Device Types -> formats, which ever format you are using, you can ask your Basis person to edit the format and increase the font size. Also the page setup like portrait, landscape, CPI, etc can be done there itself.
http://www.sap-img.com/basis/how-can-i-print-a3-format-in-sap.htm
Regards,
Priyanka.