Populating Deep structure
*Material Type is Y950
ls_attributes-im_name = 'MTART'.
ls_text-sign = 'I'.
ls_text-option = 'EQ'.
ls_text-low = 'Y950'.
APPEND ls_text TO li_text.
CLEAR ls_text.
ls_attributes-im_values = li_text.
APPEND ls_attributes TO li_attributes.
CLEAR ls_attributes.
REFRESH li_text.
li_attributes is deep structure has component im_name and other component im_values. im_values is a table.
ls_attributes-im_name = 'MTART'.
ls_text-sign = 'I'.
ls_text-option = 'EQ'.
ls_text-low = 'Y950'.
APPEND ls_text TO li_text.
CLEAR ls_text.
ls_attributes-im_values = li_text.
APPEND ls_attributes TO li_attributes.
CLEAR ls_attributes.
REFRESH li_text.
li_attributes is deep structure has component im_name and other component im_values. im_values is a table.
Comments
Post a Comment