Hi
↧
Hi Naveen S .
As Vadamalai Adhimoolamsaid, standard table is a way to declare our internal tables.
We can declare internal tables like standard, sorted, hashed table...So it depends on your needs.
standard kind are internal tables without keys. You can sort or read by any field you want.
sorted you can declare with unic or non-unic key.
read tables in this case needs to be used with table keys command
and system uses binary logic to get the record you need (if exists).
hashed needs a unic key in declaration.
read tables in this case needs to be used with table keys command and system uses hashed logic to get the record you need (if exists).
best regards.
Glauco