TAW10 PART-II (Unit 1 to 9) + TAW11E Flashcards
What is required to fully specify a Table Type in the ABAP Dictionary?
Table Key
Access type
Line Type
What is the SAP recommended naming convention for append structures of standard SAPtables?
The components of an append structure should start with ZZ or YY
What is a data type you can create in the ABAP Dictionary?
Structure
Which of the following transactions can you use to define transparent tables?
SE11
In an ABAP program, you can assign an initial value to an elementary data object when you define it.
Which addition must you use?
VALUE
Which must a search help do?
Allow the user to select a response
Have a dialog with the user
Be used from a screen
Determine the values for selection by the user
What is the name of the field of the foreign key table that will be checked during input validation?
Check field
When is a foreign key check performed on an input/output field?
When the field refers to the dictionary field where a check table is defined
What is the allowed length of the ABAP Dictionary data type DF34_RAW?
The allowed length is 34 digits
Which of the following structures is created when you use a table type to define one of its components?
Deep structure
Which of the following are true statements regarding data types?
Reference data types can be used to define the data type of the data element
You can also select predefined data types to define the data type of the data element
The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places
Which data element property do you set so that the system logs changes to the content of fields with this data element?
Change document
What are the advantages of creating a database view to implement a join, instead of formulating the join directly in an Open SQL SELECT statement?
A database view can be buffered
A database view can be reused in other programs
To which of the following can you assign search help?
Data element
Structure component
Check table
You define database view A and maintenance view B in ABAP dictionary. What restrictions apply to this views ?
Only A can be used in the FROM clause of SELECT statement
The table join in A must have a foreign key relationships
The table join in B must have a foreign key relationships
What can you create using the ABAP Dictionary?
Domains
Transparent tables
Type pools
What type of ABAP Dictionary view is implemented as an INNER JOIN?
Database view
Which of the following regarding search helps is a true statement?
The LPos parameter defines the position of the search help parameter in the search hit list
The text table for the selection method is automatically populated if the text table is attached to the database table being used as the selection method
The SPos parameter defines the position of the input field on the dialog screen
The interface for the search help is defined by the IMP (import) and EXP (export) flag of the search help parameter
What does the enhancement category for a database table or structure do?
Can produce warnings at incompatible points of the structure
Can identify where program behavior may change
Specifies the types of change that can be made to the structure
What do global types and local types have in common?
Technical information
For which of the following purposes can you use the ABAP dictionary?
To activate logging for transparent tables
To create lock objects
Where are fixed values for fields stored?
Domain
Where can you define data types that can be used throughout the system?
In the global structure
In the ABAP dictionary
You have created table ZTAB you want to create a foreign key relationship to the table SAPTAB under which condition is this possible?
The check field in ZTAB must have the same domain as the corresponding field of the check table SAPTAB
The check field in ZTAB must have the same ABAP dictionary type as the corresponding fields of check table SAPTAB