This is a test message to test the length of the message box.
Login
Software-Heroes
Welche Objekte lassen sich in ABAP Unit Tests schlecht oder gar nicht Mocken?
Wie kann ein Application Log gespeichert werden, obwohl in der RAP Laufzeit ein Fehler auftritt (FAILED Einträge) und dadurch ein ROLLBACK stattfindet?
Was wird in der Konsole ausgegeben?
DATA color TYPE c LENGTH 5.
color = 'GREEN'.
DATA(result) = xsdbool( color = 'GREEN' ).
out->write( result ).
DATA(content) = `Full Stack SAP Developer`.
DATA(result) = find( val = content
sub = `stack`
case = abap_true ).
out->write( result ).
Was wird in der Konsole ausgegeben?
DATA color TYPE c LENGTH 4.
color = 'GREEN'.
DATA(result) = SWITCH #( color
WHEN 'BLUE' THEN 1
WHEN 'GREEN' THEN 2
WHEN 'RED' THEN 3
ELSE THROW cx_sy_itab_line_not_found( ) ).
out->write( result ).
Welche Konstante wird für den Button im UI benötigt?
TYPES char TYPE c LENGTH 25.
DATA char_table TYPE STANDARD TABLE OF char WITH EMPTY KEY.
char_table = VALUE #( ( 'ABAP_DEV' ) ( 'abap-environment' )
( 'abap and fiori' ) ( 'DevDay' ) ).
SELECT FROM @char_table AS value
FIELDS *
WHERE table_line LIKE '%abap%'
INTO TABLE @DATA(selected_values).
out->write( lines( selected_values ) ).