Display ABAP Data Dictionary Information using Function Module
ABAP programmers use SE11 SAP transaction code to display all information about an ABAP Data Dictionary object like a table field, data element or a domain. Is is possible to launch the SE11 transaction screen for a table like VBAK, VBRK or a field of a table like VBAK-VBELN etc by using ABAP function module RS_DD_DEF_SHOW to display definition of related ABAP DDIC object.
ABAP programmers can use following function module RS_DD_DEF_SHOW in their SAP custom development codes by modifying import and export parameters. In this tutorial, I preferred to use individual display of the result, but it is possible for ABAP developer to display all results in a list, too.
Here is a sample case to test ABAP function module RS_DD_DEF_SHOW by displaying DDIC properties of SAP table VBAK
ABAP developers can see that the output of this function module is just the SE11 Data Dictionary screen when I try to display details of SAP VBAK table.
To display Data Element details for a specific DDIC object, for example VBELN, ABAP function module could be used with following parameters
And the following ABAP function module output is as follows