Skip to content

Commit 9b7e7ef

Browse files
authored
update
1 parent 3c8c8a1 commit 9b7e7ef

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

docs/addons/srtti.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Fully typed data at design time, it works out of the box:
1616
CLASS z2ui5_cl_app DEFINITION PUBLIC.
1717
1818
PUBLIC SECTION.
19-
2019
INTERFACES z2ui5_if_app.
2120
2221
TYPES:
@@ -49,7 +48,6 @@ Data typed at runtime with local types; this only works with S-RTTI:
4948
CLASS z2ui5_cl_app DEFINITION PUBLIC.
5049
5150
PUBLIC SECTION.
52-
5351
INTERFACES z2ui5_if_app.
5452
DATA mr_tab TYPE REF TO data.
5553

docs/development/barcodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Most scanner devices have an integrated scanning function. In such cases, you ca
4747
Below is an example showing how to handle input focus and manage transitions between input fields after scanning and triggering ENTER:
4848

4949
```abap
50-
CLASS z2ui5_cl_sample_focus DEFINITION PUBLIC FINAL CREATE PUBLIC .
50+
CLASS z2ui5_cl_sample_focus DEFINITION PUBLIC FINAL CREATE PUBLIC.
5151
5252
PUBLIC SECTION.
5353
INTERFACES z2ui5_if_app.

docs/development/xlsx.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ CLASS lcl_help IMPLEMENTATION.
5656
5757
DATA(lv_xdata) = z2ui5_cl_util=>conv_decode_x_base64( lv_data ).
5858
DATA(lo_excel) = NEW cl_fdt_xl_spreadsheet(
59-
document_name = `test`
60-
xdocument = lv_xdata ) .
59+
document_name = `test`
60+
xdocument = lv_xdata ) .
6161
6262
lo_excel->if_fdt_doc_spreadsheet~get_worksheet_names(
6363
IMPORTING worksheet_names = DATA(lt_worksheets) ).
@@ -121,7 +121,7 @@ ENDMETHOD.
121121
class lcl_help DEFINITION.
122122
123123
PUBLIC SECTION.
124-
CLASS-METHODS: xlsx_get_by_itab
124+
CLASS-METHODS xlsx_get_by_itab
125125
IMPORTING
126126
VALUE(val) TYPE STANDARD TABLE
127127
RETURNING
@@ -157,9 +157,8 @@ CLASS lcl_help IMPLEMENTATION.
157157
EXPORTING
158158
is_format = if_salv_bs_lex_format=>mc_format_xlsx
159159
ir_result_data_table = cl_salv_ex_util=>factory_result_data_table(
160-
r_data = lt_data
161-
t_fieldcatalog = lt_fcat
162-
)
160+
r_data = lt_data
161+
t_fieldcatalog = lt_fcat )
163162
IMPORTING
164163
er_result_file = DATA(lv_xstring) ).
165164

0 commit comments

Comments
 (0)