Advertising:
All public logs
From SAP Knowledge Base
Combined display of all available logs of SAP Knowledge Base. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:23, 21 December 2024 Unirab talk contribs created page Get column names of a structure (Created page with "Kategorie:code_snippets <syntaxhighlight lang="abap" line start="1"> DATA columns TYPE if_fdt_doc_spreadsheet=>t_column. DATA(desc) = CAST cl_abap_structdescr( cl_abap_structdescr=>describe_by_data( struc_from_itab ) ). LOOP AT desc->get_components( ) ASSIGNING FIELD-SYMBOL(<c>). IF <c> IS ASSIGNED. IF <c>-type->kind = cl_abap_typedescr=>kind_elem. APPEND VALUE #( id = sy-tabix name...")