CHECK_60 - Concatenation of string templates
Improve this pageRFC enabled
CODE
See SAP styleguides for Clean ABAP: Use | to assemble text
Examples:
| WHERE| && | { lv_filter } |
can be replaced with | WHERE { lv_filter } |
lv_foo && |moo { lv_bar }|
can be replaced with |{ lv_foo }moo { lv_bar }|