Tthe Read statement is reading a standard structure that is having one field of data type X.
DATA: BEGIN OF IRESBD OCCURS 0.
INCLUDE STRUCTURE RESBD.
Data: END OF IRESBD.
" -- FIELD: GUID_16 Datatype RAW (X) Length (16)
" -- The field GUID_16 is having datatype X.
READ TABLE IRESBD.
When unicode check is enabled, So, its showing error mentioning "It contains components of type "X" or "XSTRING" and the statement is not permitted for such tables in a Unicode context."
So, please suggest how to get out of the issue.
Thanks!