Hello,
I have a node of type table in the context and it has several attributes. One of the attributes is a structure with fields. When I need to save the records into my table, application does not see the structure, only the attributes.
data: tab_context TYPE wd_this->elements_tab_employees,
aux_context TYPE wd_this->element_tab_employees.
TAB_EMPLOYEES is the table. How come it does not see the structure RECS_0028 within it??
Question 2:
When I feed the table and the structure, how am I going to do this ?? Like this ??
MOVE-CORRESPONDING: PA0028 to aux_context-RECS_0028,
PA0001 TO aux_context.
Thanks !!