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

format

Former Member
0 Likes
406

can any body send some report formatting techniques

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
388

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba1a135c111d1829f0000e829fbfe/content.htm">The FORMAT Statement</a>

2 REPLIES 2
Read only

Former Member
0 Likes
388

Hi the folllowing are some formatting options,

WRITE f.

Additions:

1. ... AT f (position and length specification, before the field)

2. ... option (formatting option)

3. ... fmt (output format by field)

4. ... AS CHECKBOX (output as checkbox)

5. ... AS SYMBOL (output as symbol)

6. ... AS ICON (output as icon)

7. ... AS LINE (output as line)

8. ...QUICKINFO g(output with quick info)

... NO-ZERO

... NO-SIGN

... NO GROUPING

... DD/MM/YY

... MM/DD/YY

... DD/MM/YYYY

... MM/DD/YYYY

... DDMMYY

... MMDDYY

... YYMMDD

... CURRENCY w

... DECIMALS d

... ROUND r

... UNIT u

... TIME ZONE tz

... EXPONENT e

... USING EDIT MASK mask

... USING NO EDIT MASK

... UNDER g (only with WRITE)

... NO-GAP (only with WRITE)

... LEFT-JUSTIFIED

... CENTERED

... RIGHT-JUSTIFIED

You can check the documentation for more detail

Reward if helpful.

Read only

Former Member
0 Likes
389

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba1a135c111d1829f0000e829fbfe/content.htm">The FORMAT Statement</a>