Hi,
I have an ABAP program (Generate and Execute in our Dev environment) which extracts various columns from a SAP BW DSO.
If the last character in the column is a space the ABAP program ignores it/does not retrieve it.
For example if column 1 contained 'The quick brown fox ’ and column 2 contained ‘jumps over the lazy dog’ when these columns are extracted they become ‘The quick brown fox’ and ‘jumps over the lazy dog’ so when they are concatenated they become
‘The quick brown foxjumps over the lazy dog’.
We have tried removing the “condense temp no-gaps” lines in the ABAP code but this made no difference.
Has anyone encountered this problem and if so, what was the solution? (assuming there was one )