Hi ,
This FM works fine for an internal table.
CALL FUNCTION 'GET_COMPONENT_LIST'
EXPORTING
program = sy-repid
fieldname = 'ITAB'
TABLES
components = components.
But when using a dynamic internal table , it does not give any output, any comments?
CALL FUNCTION 'GET_COMPONENT_LIST'
EXPORTING
program = sy-repid
fieldname = '<DYN_TAB>'
TABLES
components = components.
Regards,
Harshit Rungta