Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

reports

Former Member
0 Likes
603

Can use Bold & font size in reports?

if it is possible how to use

5 REPLIES 5
Read only

Former Member
0 Likes
583

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

Read only

Former Member
0 Likes
583

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

Read only

Former Member
0 Likes
583

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

Read only

Former Member
0 Likes
583

i think its not possible..for that you have to develop script...

regards

shiba dutta

Read only

Former Member
0 Likes
583

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.