arcanist123
arcanist123
well, it is a trap. You cannot rely on sy-subrc as a signature that you found the row in the table - sometimes the record is found, but sy-subrc is...
btw, are you guys planning to support the bug of official SAP compiler where the local classes have access to certain private components of hosting class?
Hi. so you want to implement something that is described here? https://help.sap.com/doc/abapdocu_740_index_htm/7.40/en-US/abenconversion_type_ibs.htm > The character "-" is set at the last position for a negative value, and a blank is...
Agreed. I opened a separate issue in abaplint repository. This code should fail with runtime error instead of executing without any issue ``` abap DATA lv_temp TYPE string. lv_temp =...
same as this one ``` abap TYPES: BEGIN OF ts_str, comp_one TYPE i, END OF ts_str. DATA lv_string TYPE string. DATA lv_str TYPE ts_str. FIELD-SYMBOLS type any. ASSIGN lv_str to...
and this one ```abap REPORT z_test_transpiler. CLASS lcl_ DEFINITION CREATE PUBLIC. PUBLIC SECTION. ENDCLASS. CLASS lcl_ IMPLEMENTATION. ENDCLASS. START-OF-SELECTION. DATA lo_aaa TYPE REF TO lcl_. field-SYMBOLS type any. ASSIGN lo_aaa...
```abap data aaa type p LENGTH 10 DECIMALS 5. aaa = 'A'. write aaa. ```
this should dump, but it does not
hey, @larshp , do you think this needs to be fixed or is it a feature? I will need to fix approx 100 unit tests if this is a bug....
do we have any document that describes this kind of deviations from the standard? I would prefer to create/update such document and close this issue then. we could revisit the...