I created a structure with "Types":
TYPES: BEGIN OF ty_pers_bst.
INCLUDE STRUCTURE zieb_pers_bst.
TYPES: lifname TYPE zieb_lieferant-lifname,
END OF ty_pers_bst.
data: i_structure_bst_add TYPE ty_pers_bst.
I now want to use 'LVC_FIELDCATALOG_MERGE' to create a fieldcatalog based on this structure. However I get the error, that no fieldcatalog can be found.
Is there an alternative on how I can add a single field to a preexisting fieldcatalog based on my "zieb_pers_bst" DDIC-Structure, or do I have to create a new DDIC-Structure solely for this single field?
Try this sample: