Application Development 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: 

removing zeros

Former Member
0 Kudos

in one of the column the field has value zeros, so i need to make the cell empty instead of zeros, can any one help me in this.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

I hope the field is integer/Numeric datatype. Make it character datatype It will display default as space.

Make it NO_ZERO = 'X' in fieldcatalog.

Regards

Bhupal Reddy

8 REPLIES 8

Former Member
0 Kudos

i am using alv grid control

0 Kudos

Hi,

While specifing the fieldcatalog just specifiy taht wa_fieldcat-no_zeros = 'X' for that particular field.

Regards,

Satya

0 Kudos

set NO_ZERO in the field cat logue for the field.

Former Member
0 Kudos

Hi

I guess that you are using ALV

then the Field Catalog shoudl be modified

with

<b>wa_fieldcat-NO_ZERO = 'X'.</b>

Former Member
0 Kudos

check options of FCATAlog

fcat-no_zero = 'X'.

Regards

Prabhu

Former Member
0 Kudos

Hi,

I hope the field is integer/Numeric datatype. Make it character datatype It will display default as space.

Make it NO_ZERO = 'X' in fieldcatalog.

Regards

Bhupal Reddy

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

You need to set no_zero = 'X' in the field catalog.

Kindly reward points if it helps.

Former Member
0 Kudos

Hi,

Use the FM:

<b>CONVERSION_EXIT_ALPHA_OUTPUT</b>

converts any number with zeroes right into a simple integer

Hope it helps.

Reward if helpful.

Regards,

Sipra