Is there something similar to a standard library for modern ABAP (maybe even OO-Abap)? For example a curated list of objects that address some of the most common programming tasks like
- high-level data structures (not just plain internal tables)
- working with file paths and directories
- working with files (reading, saving, ...)
- working with different file types (text, csv, xml, ...)
- regular expressions
- working with the environment (client, application server)
- ...
My current workflow is to stumble upon a problem like getting the extension of a file from a filename (or something fairly similar and easy). Then I have three options:
- Dig through a ton of (mostly old and lacking) posts on SDN until i maybe find a pointer to solve the problem
- Hack away and create a one-off solution to the problem
- Take my time and implement a good and well documented solution
Many times I feel a bit lost. A lot of the available information is old, bad or both. Is there a more structured approach to tackle the problem of finding a suitable abstraction in the ABAP-world?