12-02-2021 2:38 AM
DJ Adams (qmacro) started a new way of sharing thoughts A new journal experiment - Thinking Aloud he started Github repository qmacro/thinking-aloud. I was reading the journal, DJ Adams ended up with the below categories:
+---------------------------------------------------------------+ | Major | Minor | Mini | Micro | |---------------|---------------|---------------|---------------| | qmacro.org | autodidactics | (something | Twitter | | SAP Community | | missing) | | +---------------------------------------------------------------+
I decided to create the same categories as ABAP code and share it with DJ Adams as small contribution
https://github.com/qmacro/thinking-aloud/issues/14
ABAP code:
TYPES:
BEGIN OF struc,
Major TYPE string,
Minor TYPE string,
Mini TYPE string,
Micro TYPE string,
END OF struc.
DATA THINKINGALOUD TYPE STANDARD TABLE OF struc.
THINKINGALOUD = VALUE #( ( Major = 'qmacro.org SAP Community' Minor = 'autodidactics'
Mini = '(something missing)' Micro = 'Twitter3' ) ).
ASSIGN COMPONENT 2 OF STRUCTURE THINKINGALOUD[ 1 ] TO FIELD-SYMBOL(<fs>).
cl_demo_output=>display( THINKINGALOUD ).
DJ Adams is very active on SAP related topics, keep sharing knowledge.
Thanks
12-07-2021 4:32 AM
Hey @qmacro in case you missed this one 🙂