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: 

cl_SALV_TABLE : display of initial values!

Former Member
0 Kudos

Hi All,

I do have to display some time fields in my alv table itab_alv.

I'm filling the table according to a corresponding select record are stored in itab_infty_2001...

loop at itab_infty_2001.

wa_alv-beguz = itab_infty_2001-beguz.

endloop.

if there is no entries in my select itab_infty_2001, the content of the time fields is not assigned and it is displayed as '00:00:00' but when there is an empty record. the field is displayed with no content!

I would like the alv to not display this 00:00:00... and nothing instead...

I did try the no_zero for the column of the fields catalog without success...

Any clues ?

2 REPLIES 2

Former Member
0 Kudos

hi,

check for the entry '00:00:00' and if it exists assign SPACE to it teh respective field

regards,

theja.

0 Kudos

I guess this should work but it is not the answer that I expected...

I'd like a 'Nicer' solution