...
value(i_applog_embedded) type abap_bool default abap_false
value(i_subclass) type ref to cl_abap_typedescr optional
changing
!ct_table type standard table ...
... in part 1. To get the characteristics values for an object I will use FM BAPI_OBJCL_GETDETAIL, then using field-symbols I will move the data from its result tables to our structure. I will use also cl_abap_typedescr ...
...
data: mt_inc type table of d010inc.
data: ms_exclude like line of it_exclude.
data: mt_exclude type tt_ra_scompo_name.
data: m_compname(255) type c.
data: m_classref type ref to cl_abap_typedescr. ...