SAP STRINGS - Guide
Get Example source ABAP code based on a different SAP table
Strings
ABAP_BACKGROUND
Strings are
In contrast to text and byte fields of a fixed length (
In the case of assignments between strings, sharing takes effect. This means that only the internal reference is copied first. Sharing is canceled if the source or target object is accessed for modification.
ABAP_RULE
Use strings rather than fixed length fields for the internal saving and processing of character strings and byte strings.
ABAP_DETAILS
Strings are more flexible than fields of a fixed length and usually help to save memory space, because no unnecessary space is occupied by blanks or zeros, and because sharing is implemented for assignments. Furthermore, trailing blanks are always significant in text strings. Text fields simply ignore trailing blanks in many operand positions (but not in all), which may be quite confusing at times.
Exception
In the following cases, fields of a fixed length should be used instead of strings:
ABAP_EXAMPLE_BAD
The following source code shows an internal table for saving an HTML page whose line type is a text field with a fixed length of 255. Most of the memory space of the internal table, however, is probably wasted on blanks.
DATA html_table TYPE TABLE OF html_line.
APPEND ' < HTML>' TO html_table.
...
APPEND ' < BODY>' TO html_table.
...
APPEND ' < /BODY>' TO html_table.
APPEND ' < /HTML>' TO html_table.>
ABAP_EXAMPLE_END
ABAP_EXAMPLE_GOOD
The following source code shows the above example but uses text strings. The memory space gained should outweigh the additional administration effort considerably. As an alternative to using an internal table, the HTML page can also be concatenated in a single text string; however, this makes it more difficult to read, for example, in the ABAP Debugger.
APPEND ` < HTML>` TO html_table.
...
APPEND ` < BODY>` TO html_table.
...
APPEND ` < /BODY>` TO html_table.
APPEND ` < /HTML>` TO html_table.>
ABAP_EXAMPLE_END