SAP DDIC table (transparent table, join table, cluster table) functions as a structure .
An internal table is a list of structure values (= DDIC table ).
In your sample SAP DDIC MARA table (General Material Data), we can define it as an internal table as
data: it_mara type STANDARD table of mara.
which creates the internal table STANDARD
data: it_mara type SORTED table of mara.
which creates the internal table SORTED
source share