SAP INDX TYPE TABLE AND SQL
Get Example source ABAP code based on a different SAP table
SQL Access to Export/Import Tables
To be able to use SQL statements on export/import tables effectively, the
It is not a good idea to perform reads or writes on the fields that manage the data cluster, such as
SQL statements should only be used if the corresponding combination of special data cluster statements would be too inefficient. The SQL statement
AB_SQL statements can, in certain circumstances, be used for administrative tasks on export/import tables, for which the data cluster specific statements are not suitable.
Example ABAP Coding
An export/import table can be searched systematically for a particular data cluster using
ABAP_EXAMPLE_END
Example ABAP Coding
The following example deletes all data clusters of an area from the export/import tables
ABEXA 01051
ABAP_EXAMPLE_END
Example ABAP Coding
The following example demonstrates how the name and area of a data cluster can be changed in the database tables
SET relid = @new_relid,
id = @new_id
WHERE relid = @old_relid AND
id = @old_id.
UPDATE demo_indx_table
SET relid = @new_relid,
id = @new_id
WHERE relid = @old_relid AND
id = @old_id.>
ABAP_EXAMPLE_END