Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Components/Fields of Internal Table

DATA : it_mara TYPE STANDARD TABLE OF mara  WITH HEADER LINE.

DATA : it_detail   TYPE abap_compdescr_tab,
           wa_comp TYPE abap_compdescr.

DATA : ref_descr TYPE REF TO cl_abap_structdescr.

ref_descr ?= cl_abap_typedescr=>describe_by_data( it_mara ).
it_detail[] = ref_descr->components .

loop at it_detail into wa_comp.
write:/ wa_comp-name .
endloop.
Comment

PREVIOUS NEXT
Code Example
Sql :: sql get highest date from 3 tabels 
Sql :: forenkey code alchemy sql 
Sql :: sql delete row from table where id 
Sql :: postgres row expiration 
Sql :: spring Flyway Teams Edition or MySQL upgrade required: MySQL 5.5 is no longer supported by Flyway Community Edition, but still supported by Flyway Teams Edition. 
Sql :: mysql connect error 
Sql :: oracle archivemode 
Sql :: oracle_home sqlplus 
Sql :: SQL INNER JOIN With AS Alias 
Sql :: mysql let join 
Sql :: get all databases and their tables without primary key mysql 
Sql :: get create sql of hibernqte entity 
Sql :: como hacer una consulta en sql 
Sql :: join creating duplicate columns sqllite 
Sql :: dump a single table named mytab 
Sql :: sql change date time from SGT to GMT 
Sql :: like in openquery 
Sql :: C# check if mysql query modified rows 
Sql :: intellij idea add mysql connector 
Sql :: select nth row in mysql 
Sql :: extract domain name from email id mariadb 
Sql :: sql convert 
Sql :: normal mysql large import 
Sql :: sql python hwo to pass a list in paramerter 
Sql :: oracle calculate statistics on partition 
Sql :: sql oop example 
Sql :: Which MySQL statement is used to delete data from a database 
Sql :: Mysql select all where count more than" 
Sql :: azure sql-datenbank 
Sql :: oracle create job if not exists 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =