2007 Apr 24 9:46 AM
I have written an ALV report but have a problem whereby when a numeric column is selected and the "total" button is pressed an ABAP dump occurs - message "the current application program detected a situation which really should not occur".
Does anyone have any idea what may be causing this?
Thanks
KB
2007 Apr 24 9:49 AM
I have written an ALV report but have a problem whereby when a numeric column is selected and the "total" button is pressed an ABAP dump occurs - message "the current application program detected a situation which really should not occur".
Does anyone have any idea what may be causing this?
Thanks
KB
2007 Apr 24 9:49 AM
2007 Apr 24 9:49 AM
change the fieldcatalog for that field
wa_fieldcatalog-datatype = 'CURR'.
wa_fieldcatalog-do_sum = 'X'.
2007 Apr 24 10:09 AM
hi kevin,
just try to calculate the total for the intiger data type field istead somether data type.
regards..
seshu.
Message was edited by:
maddipatla Seshu chowdary
2007 Apr 24 10:25 AM
Thanks everyone, I have managed to solve the problem. I had named a field differently in my internal table than in the structure I set up. Why this caused the dump it did I do not know, but correcting the error has solved the problem.