SAP TABLES ASTERISK ABAP Statements
Warning: Undefined variable $saptab in /customers/b/9/9/trailsap.com/httpd.www/abap-statements/index.php on line 46Get Example source ABAP code based on a different SAP table
Standard SAP Help for TABLES
TABLES *
• TABLES * ABAP Statement
• * TABLES (obsolete)
ABAP Syntax(Obsolete)
What does it do? This statement declares an additional
The additional table work area can be used just like the the regular table work area. This applies in particular to obsolete
Latest notes:The statement
Bad example
Declaration of a regular and additional table work area and their use in obsolete short forms of the
SELECT SINGLE *
FROM scarr
WHERE carrid = 'LH'.
SELECT SINGLE *
FROM *scarr
WHERE carrid = 'UA'.
Good example
Declares two work areas using
scarr2 TYPE scarr.
SELECT SINGLE *
FROM scarr
INTO scarr1
WHERE carrid = 'LH'.
SELECT SINGLE *
FROM scarr
INTO scarr2
WHERE carrid = 'UA'.
Return to menu