Nuno Godinho

Results 52 comments of Nuno Godinho

> We don't want to introduce new dependencies on standard SAP. It also needs to work for 702 and higher (and eventually on ABAP Cloud, which does not have if_reca...)...

Unfortunately this is still not working. The last patch solved some cases but not all. This case still doesn't work: VRSD has the includes for a function group as: -...

I found FM `RS_PROGNAME_SPLIT` which may be of some help here. I'll investigate further when I find the time again.

Example here (thanks Lars!): https://github.com/larshp/abapGit/blob/master/src/persist/zcl_abapgit_persist_migrate.clas.abap#L175

A good reason for opting for having the bracket in its own line is related with version control. If you have this: ```abap exec( a = 1 b = 2...

> I agree INSERT should be preferred, but the way I interpret it I think makes sense. APPEND documents the fact that the sequence of entries in the table is...

> I'll admit I'm playing devil's advocate a bit here and am broadly in favour of INSERT, but is APPEND really such an anti-pattern? Arrays exist in most languages and...

Great that you were able to replicate it! And thank you @mstenta for creating the upstream issue!

Hum, well, I have this exception class which I think was generated by ABAP: ```abap CLASS zcx_coot DEFINITION PUBLIC INHERITING FROM cx_static_check CREATE PUBLIC . PUBLIC SECTION. INTERFACES if_t100_dyn_msg ....