SAP SYS TABLE BODY



Get Example source ABAP code based on a different SAP table
  


• *sys* ABAP_DOBJ_OBS

*sys*, Obsolete Pseudo Component

ABAP_SYNTAX_OBS
... itab-*sys* ...

What does it do?
If itab is an obsolete standard table with a header line, instead of specifying itab[] to address the table body, the pseudo component itab-*sys* can be used. This also addresses the table body.



Latest notes:

If tables with header lines are also to be accessed, only itab[] should be used to address the table body, not itab-*sys*.
ABAP_HINT_END



Example ABAP Coding

This example shows that itab-*sys* has the same meaning as itab[].
ABEXA 01328
ABAP_EXAMPLE_END