Goran Back
Goran Back
- [x] 41 - [x] 42 - [ ] 61 - [ ] 77 - [x] 78 - [x] 79 - [x] 80 - [ ] 88
Example: Structure read into regular variable, will probably cause false results. Compiler allows this: ```abap " TYPES: BEGIN OF ty_buffer " input TYPE erdat, " output TYPE syst_datum, " END...
I've tried to find some information regarding the proper use of packages, but it seems packages are barely even mentioned. Would it make sense to add a section on how...
Example: ```abap SELECT field1, text FROM text_table INNER JOIN base_table ON base_table~key = text_table~key WHERE lang = @sy-langu AND field2 IN @selection INTO TABLE @DATA(texts). ``` In this case the...
P.S. afterthoughts. hardcoded class names look a bit fishy, maybe leaves some room for improvement of "get_current_page" feature. maybe it makes sense to make them constants defined in individual page...
We have the already great fixes to replace single instances of `EQ`, `GE`, `LE` etc. - would be cool if we could replace ALL instances of these operators in a...
Random Colors is enabled by default. Even if you set a pen color manually, the randomness setting is "stronger", see: ```abap method line. if use_random_colors = abap_true. pen-stroke_color = zcl_turtle_colors=>get_random_color(...