Advertising:

All public logs

From SAP Knowledge Base

Combined display of all available logs of SAP Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:18, 21 December 2024 Unirab talk contribs created page Switch(ABAP keyword) (Created page with "Kategorie:Schlüsselbegriffe Since ABAP 7.40 you can use SWITCH. In terms of syntax, this is like COND with the only difference being that it checks for equality and no condition like COND is possible. === Mit SWITCH === <syntaxhighlight lang="abap" line start="1"> DATA(lang) = SWITCH char02( sy-langu WHEN 'E' THEN 'EN' WHEN 'D' THEN 'DE' ELSE THROW cx_... "optional...")