Dear experts,
i have a problem and i dont know how to solve it.
i select lines in a table on the ui and then i click on delete to delete them.
CALL METHOD lo_nd_worklist_tabelle->get_selected_elements
RECEIVING
set = lt_elements.
this method should return all selected items.
LOOP AT lt_elements INTO wa2_elements.
CALL METHOD wa2_elements->get_static_attributes
IMPORTING
static_attributes = ls_worklist_tabelle.
move sy-datum to ls_worklist_tabelle-endda.
APPEND ls_worklist_tabelle TO lt_worklist_tabelle.
CLEAR ls_worklist_tabelle.
ENDLOOP.
this method writes them into the itab lt_worklist_tabelle.
my Problem is that not all attributes, that appear in the database table
can be found in the itab.
All fields are equal.
Please help if you can i have no clue.
thank you very much
René