You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apply Clean ABAP string syntax: Use backticks for literals, pipes for templates
Following Clean ABAP guidelines, replaced pipe delimiters |...| with backticks `...`
for simple string literals, while keeping |...| only for string templates with variables.
Changes:
- Simple literals: `POST`, `BUTTON_POST`, `close`, etc. (was: |...|)
- String templates: |Your name is { name }| (unchanged, contains variable)
- UI5 bindings: '{SALESORDER}' (unchanged, UI5 syntax)
This follows Clean ABAP recommendations:
- Use ` for defining literals
- Use | only to assemble text with variables
- Avoids needless overhead from pipe syntax for fixed values
16 files updated with consistent Clean ABAP string syntax.
0 commit comments