... I_DATE ) TYPE SY-DATUM DEFAULT SY-DATUM -> date for characteristics value
I_STRUCTURE TYPE REF TO CL_ABAP_STRUCTDESCR OPTIONAL -> structure of classification for reference data Exporting: ...
... you change the structure of your configuration table. Dynamic way when done once then doesn't have to be redesign as I will use cl_abap_elemdescr and cl_abap_structdescr to get key fields. ...
... the most important things you can find while debugging. This is the list of components of our dynamic structure from cl_abap_structdescr. Here is the result of created work ...
... ref to cl_abap_structdescr -> structure Exceptions: fetch_values_error
structure_error Implementation:
method get_objects_of_class.
*This is the code from http://abapblog.com.
field-symbols: <table> type standard table, ...
... type bapi1003_key-objecttable optional -> name of database table for object
i_key_date type sy-datum default sy-datum -> key date for classification
i_structure type ref to cl_abap_structdescr ...
... data, then I will use FM BAPI_CHARACT_GETDETAIL to read the characteristics and in each step I'll be using classes cl_abap_elemdescr, cl_abap_structdescr and cl_abap_tabledescr to create the structure ...