how can i fetch the short descriptions given in domain level, as single values- descriptions for report generation
1. =======================================================
This if the FM.
eg .
DATA : DD07V LIKE DD07V OCCURS 0 WITH HEADER LINE.
*----- Get all Master Document Types
CALL FUNCTION 'GET_DOMAIN_VALUES'
EXPORTING
DOMNAME = 'VBTYP'
TABLES
VALUES_TAB = DD07V
EXCEPTIONS
NO_VALUES_FOUND = 1
OTHERS = 2.
DD07V will contain all the domain values.
2. =======================================================
Use the tables
DD01T for domain Descriptions
DD07T for Domain Value descriptions