File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,9 @@ METHOD z2ui5_if_app~main.
7878
7979 DATA(lr_view) = z2ui5_cl_xml_view=>factory( ).
8080 DATA(lr_page) = lr_view->page( showheader = abap_false
81- backgrounddesign = ' List' )->content( ). "Backgrounddesign "List" sets a white background color
81+ backgrounddesign = ` List` )->content( ). "Backgrounddesign "List" sets a white background color
8282
83- lr_page->text( ' TEXT' ).
83+ lr_page->text( ` TEXT` ).
8484
8585 client->view_display( lr_view->stringify( ) ).
8686
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ CLASS z2ui5_cl_app IMPLEMENTATION.
3939 FIELD-SYMBOLS <tab> TYPE ty_t_tab.
4040 ASSIGN mr_tab->* TO <tab>.
4141 <tab> = VALUE #(
42- ( title = ' entry 01' value = ' red' descr = ' this is a description' )
43- ( title = ' entry 02' value = ' blue' descr = ' this is a description' ) ).
42+ ( title = ` entry 01` value = ` red` descr = ` this is a description` )
43+ ( title = ` entry 02` value = ` blue` descr = ` this is a description` ) ).
4444
4545 client->message_box_display( `this works out of the box` ).
4646
@@ -63,7 +63,7 @@ CLASS z2ui5_cl_app IMPLEMENTATION.
6363
6464 METHOD z2ui5_if_app~main.
6565
66- DATA(o_struct_desc) = cl_abap_structdescr=>describe_by_name( ' USR01' ).
66+ DATA(o_struct_desc) = cl_abap_structdescr=>describe_by_name( ` USR01` ).
6767 DATA(o_table_desc) = cl_abap_tabledescr=>create(
6868 p_line_type = CAST #( o_struct_desc )
6969 p_table_kind = cl_abap_tabledescr=>tablekind_std
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ CLASS z2ui5_cl_sample_device IMPLEMENTATION.
6060
6161 client->view_display( lo_view->stringify( ) ).
6262
63- IF client->get( )-event = ' POST' .
63+ IF client->get( )-event = ` POST` .
6464 "process device info here...
6565 ENDIF.
6666
You can’t perform that action at this time.
0 commit comments