This is a test message to test the length of the message box.
Login
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 ).
Was wird in der Konsole ausgegeben?
DATA(char) = 'Welcome'.​
char &&= 'to'.​
char &&= 'ADD'.​
char &&= '2025'.​​

out->write( char ).
Was wird in der Konsole ausgegeben?
DATA(string) = `Welcome`.​
string &&= `to`.​
string &&= `ADD`.​
string = `2025`.​

out->write( string ).
Was wird in der Konsole ausgegeben?
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?​
@UI.lineItem: [{ ​
  position: 10, ​
  type: #???, ​
  dataAction: 'CreateOutputMessage', ​
  label: 'Create message' ​
}]
Wie heißt das Textfeld zum aktuellen Feld?​
​@Consumption.valueHelpDefinition: [ { entity: ​
   { name: 'ZBS_I_DCPTeamVH', element: 'Team' } } ]​
@ObjectModel.text.element: [ 'TeamDescription' ]​
@UI.identification: [ { position: 50, qualifier: 'TEAM' } ]​
@UI.lineItem: [ { position: 70 } ]​
@UI.selectionField: [ { position: 60 } ]​
@UI.textArrangement: #TEXT_ONLY​
team            : zbs_demo_dcp_team;
Was wird in der Konsole ausgegeben?
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 ) ).