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: 

Delete extra space in ALV grid Hotspot

former_member602416
Participant
0 Kudos

Hi,
I am new to ALV development and looking to fix below issue.

My grid is showing data like below.There is extra space in underline below number. I want to remove extra space.

12

13


1 ACCEPTED SOLUTION

Sandra_Rossi
Active Contributor
0 Kudos

I think that the only possible reason is that your columns contain signed numbers, i.e. the trailing space is a placeholder for the positive sign so that the vertical right alignment will work for both positive and negative numbers. So, to remove the sign, either you define NO_SIGN = 'X' in the field catalog, or the field catalog should refer to a data element and a DDIC domain with "sign" unchecked.

5 REPLIES 5

former_member596005
Participant

it would be great if you post screen shots with pointing on screenshot

Sandra_Rossi
Active Contributor
0 Kudos

I think that the only possible reason is that your columns contain signed numbers, i.e. the trailing space is a placeholder for the positive sign so that the vertical right alignment will work for both positive and negative numbers. So, to remove the sign, either you define NO_SIGN = 'X' in the field catalog, or the field catalog should refer to a data element and a DDIC domain with "sign" unchecked.

matt
Active Contributor

Or define as character fields and populate exactly the way you want it to display.

former_member602416
Participant
0 Kudos

thanks, it worked. It was an issue with sign field.

0 Kudos

Please use the COMMENT button. The ANSWER button is reserved to proposing a solution (not proposed yet of course).