TAW_11 Chapter 3, Internal tables Flashcards
Its okay to resort sorted tables?
NEVER!!!
You can append a sorted table?
Only if the appended line will be in the correct order.
All reads of a sorted table are binary by default?
Correct
Can a hash table be sorted?
Yes, and this is appropriate if the hash table is to be used in a loop/endloop
What is the safest way to add a row to a sorted table?
insert with key
three operations might cause issues with a sort table violation.
INSERT, APPEND, MODIFY by index
It is best to INSERT using key and Modify using key. Best to avoid APPEND altogether
What is implicit specification with table operations?
using FROM where <> is a populated object with the a line of the table lne
What are the 4 ways of reading a table
By index (index)
by table key (with table key)
by any key (with key)
by implicit key (from)
What two keywords are mutually exclusive when writing table statements?
INDEX and TABLE will never occur together
By default does the insert use the table key?
Yes
Hashed tables cannot use index access?
This is true
Can I use MODIFY with table key to change key fields?
No, MODIFY by index will allow key fields to be changed. Do not use this with sorted tables and cannot be used with hashed tables
What table access commands can use implicit keys?
DELETE, MODIFY,INSERT, READ
MODIFY by key and INSERT by KEY can only use what type of key
Implicit
When performing INSERT, MODIFY, DELETE with in a table loop, what part of the syntax can be left out?
INDEX. The index will default to sy-tabix so
INSERT INTO
implies INSERT into INDEX
Can the abbreviated syntax (no index specified) be used outside of a loop?
No, It will not cause a syntax error but will cause a runtime error
Can MODIFY be used with a WHERE clause?
Yes, but you must specify TRANSPORTING
Also, WHERE can only be used with MODIFY, not MODIFY TABLE
Can DELETE be used with a where clause?
Yes, but only with DELETE, not with DELETE TABLE
Cn WHERE be used with HASHED tables?
Yes, within a loop only
What happens when you attempt to add a line to a sorted table with a unique key and the record already exists?
Just a sy-subrc 4. no dump
Can MOVE-CORRESPONDING be used with internl tables?
Yes, move-corresponding to works fine as long as no unique key violations exist in as a result of the move
What if I want to move entries from to but I want to keep the records already in ?
Use KEEPING TARGET LINES addition
DELETE ADJACENT DUPLICATES can be used with a HASED table?
It appears so but I need to check. It could only be on secondary key comparisons correct?
Which table types can be used with the collect statement?
All three, but SAP says that COLLECT is best suited for HASHED tables
What are the three types of secondary tables that can be defined for an internal table?
Unique standard WITH UNIQUE KEY COMPONENTS Non-unique sorted WITH NON-UNIQUE KEY COMPONENTS Unique hashed WITH UNIQUE HASHED KEY COMPONENTS All table types can have these keys
What is the maximum number of secondary keys on an internal table
15
How is a secondary accessed
READ/MODIFY/DELETE INDEX # USING KEY. or READ TABLE WITH KEY COMPONENTS... or READ/MODIFY/DELETE TABLE from USING KEY
Secondary keys are always immediately updated
No, they are lazy updates that are only updated when first used or used after an update
the exception is unique keys which are updated immediately to check for uniqueness violation
Replace the following with a new table expression
READ TABLE INDEX idx INTO
= [ idx ]
Replace the following with a new table expression
READ TABLE INDEX idx USING INTO
= [ KEY INDEX idx ]
READ TABLE WITH KEY =
=
into
= [ = = ]
READ TABLE WITH TABLE KEY
COMPONENTS
=
=
into
= [ KEY COMPONENTS = = ] or = [ KEY = = ]
How would you use the VALUE statement to add info to an internal table with columns col1, col2, col3?
= VALUE #(
( col1 =
col2 =
col3 = )
( col1 = ) )
What does the keyword BASE do?
Existing content of the table is kept.
e.g.
= VALUE #( BASE =
< col1> = ) )
What would the following statement do?
= VALUE #( FOR IN
WHERE ( = )
( = )
A new entry in table will be created for every row in where col1 = val1. The new line in tab1 will have a value of val2 in col2
Not we did not save current values in tab1 by using and BASE.
Also, the WHERE clause must be in parentheses
What do LINE_EXISTS and LINE_INDEX do
LINE_EXISTS returns the Boolean value (predicate)
LINE_INDEX returns the index number (descriptive)
do all data references need to be dereferenced?
No, if the referenced object is a structure the components can be addressed directly using the -> syntax. e.g. dataref->col1
How can a generic reference (type data for example)
The reference must be assigned to a field symbol in order to be able to access the content
How is a data object assigned to a data reference?
GET REFERENCE OF fld INTO ref
or
ref = REF #( fld )
How can I tell if a reference has been bound?
ref IS BOUND
or
ref IS NOT BOUND
Technically what is a field symbol?
A dereferenced pointer
How is a field symbol assigned and unassigned
ASSIGN fld to
UNASSIGN
Unlike a standard table, when accessing a sorted or hashed table and assigning to a field symbol, what can not be done?
The contents of the field symbol cannot be changed
What happens if I reassign or unassign a field symbol used as the target of a lopp?
runtime error
Can the SUM statement be used if the loop is assigning a field symbol?
no
Can field symbols be used with INSERT, COLLECT, MODIFY?
Yep