Lars Hvam
Lars Hvam
report error if message from message class is not referred statically
at least zcl_oapi_main should have a reference, ```abap CLASS ltcl_find_prefix DEFINITION DEFERRED. CLASS zcl_oapi_main DEFINITION LOCAL FRIENDS ltcl_find_prefix. ```
```abap SELECT * FROM table INTO TABLE currency_texts WHERE waers = zif_foo~structure-currency_code. ``` split tokens at "~" = #1457
"foo = foo."
something like this data definition should probably be skipped? as its type definition cannot be referenced with VALUE ```abap FORM bar. DATA lv_text TYPE c LENGTH 200. lv_text = 'foo'....
rule `unused_variable` makes sure that the method parameters are read or written to however, it might be that a parameter might not be supplied from anywhere, or a returning variable...
https://rules.abaplint.org/unused_variables/ local = FORM or METHOD scope?
prerequsites, its a local variable? ```abap DATA bar TYPE i. CLEAR bar. ```
It shows "abapfs.CreateConnection failed" to the user The real error can be found in the extension log, 
Hi, There are multiple parameter settings for the ClientConfig, https://github.com/apache/pulsar-client-node/blob/d2c0d1e374f8e9f25934bd679436da0872b6bc8e/index.d.ts#L25-L33 Is the documentation for these parameters available somewhere? Ideally I'd suggest adding some comments directly in the typescript definition, so...