When using „into corresponding fields“, the column names need to be identical. This is not the case for „sum( menge )“, as it is a dynamic column that will be named by the dbms or ABAP as probably „SUMMENGE“, or not get a name assigned at all => rename in your select statement this column: „sum( menge) as menge“ Or use a table type that matches your selection fields in order and type, and don’t use into corresponding fields
I assume the translation for PC is missing, since this is only a problem on the printout
Sorry for that mistake of mine, of course I meant to write „sum( menge) as menge“, after all you want the column to have the same name so that the „into corresponding fields“ statement works. Sorry for the confusion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.