Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONABAP Dictionary

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP Dictionary

Description:
Based on ABAP 7.5 Certification guide

Author:
AVATAR

Creation Date:
10/06/2021

Category:
Computers

Number of questions: 49
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Data types store data and occupy memory. True False.
A data object is concretely defined by means of the data type and occupied memory. It contains data with which ABAP programs work at runtime. True False.
What is the default length of the type C data type? 1 10 1–65535.
If data objects of type I are being used to store the result of a calculation, the decimals will be truncated. True False.
What is the default length of the type P data type? 8 1 1–16.
What is variable-length structure called? Nested structure Deep structure Flat structure.
Local data objects can be defined using ABAP Dictionary types. True False.
Global data types defined in SAP systems are… Data defined in the program that is visible to all the routines/statements within the ABAP program. ABAP Dictionary types. Date types defined in the program using ABAP Dictionary types.
Which of the following are incorrect statements? 2 correct answers TYPES: carrid_ty LIKE spfli-s-carr_id. TYPES: werks TYPE C LENGTH 4. TYPES: date_ty TYPE D LENGTH 10. TYPES: Str TYPE STRING LENGTH 20.
What is the result of the following arithmetic operation? DATA: int TYPE I. int = 5 * ( 3 / 10 ). 1 2 1.5 0.
What is the result of the following arithmetic operation? DATA: int TYPE I int = 5 / 10. 1 5 0.
The valid value for a decimal floating point number of type decfloat16 is a number between 1E385 and –1E-383 for a negative number, 0, and 1E-383 to 1E385 for a positive number. True False.
The valid value for a decimal floating point number of type decfloat34 is a number between 1E6145 and –1E-6143 for a negative number, 0, and +1E-6143 to 1E6145. True False.
Which of the following standard types is numeric? 3 correct answers I P F Decfloat32.
The system class CL_ABAP_MATH contains constants for maximum and minimum values for the numeric data type. True False.
A transparent table can include a deep structure. True False.
ABAP data types can be used for a domain definition. True False.
Which of the following statements are true? 2 correct answers A conversion routine can be assigned to a domain. A conversion routine can be assigned to a data element. You define the value range in the data element. You can enter documentation for the data element in the ABAP Dictionary.
(F1) help on the screen field displays the data element documentation. True False.
Which of the following are true statements? 3 correct answers 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. You can also select predefined data types to define the data type of the data element. Reference data types can be used to define the data type of the data element. Field labels are defined for the domain.
You can define search helps and parameter IDs for a data element. True False.
The line type for a table type can contain a flat, nested, or deep structure. True False.
Which of the following are true statements? 3 correct answers Table fields can be assigned to a data element. Table fields can be assigned to an ABAP Dictionary data type directly. Search helps can be defined for a table field that is assigned to a predefined data type. A reference table and field are required for fields with the data types QUAN and CURR.
Which of the following statements regarding search helps are true? correct answers You can use a maintenance view for the search help selection method. You can use a database view for the search help selection method. Help views can also be used for the selection method for search help. You can use transparent tables for the search help selection method.
Which of the following regarding search helps is a true statement? Select all that apply. The interface for the search help is defined by the IMP (import) and EXP (export) flags of the search help parameter. The LPos parameter defines the position of the search help parameter in the search hit list. The SPos parameter defines the position of the input field on the dialog screen. 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.
Which of the following statements are true? 2 correct answers A database view is implemented as an inner join. A maintenance view is implemented as an outer join. A database view is implemented as an outer join. A maintenance view is implemented as an inner join.
Which of the following statements are true? Select all that apply. The tables included in the maintenance view should have foreign key relationships. The tables included in the help view should have foreign key relationships. Projection views can have more than one table included for the view definition. You cannot use a pooled or cluster table for a database view.
You can create projection views for pooled or cluster tables. True False.
What is the allowed length of the ABAP Dictionary data type DF34_RAW? The allowed length is between 1 and 34 digits. The allowed length is between 1 and 31 digits. The allowed length is between 0 and 33 digits. The allowed length is 34 digits.
What is the allowed length of the ABAP Dictionary data type DF16_DEC? The allowed length is between 1 and 15 digits. The allowed length is 16 digits. The allowed length is between 0 and 16 digits. The allowed length is between 0 and 15 digits.
A replacement object can be defined for a pooled table. True False.
One of the prerequisites for the replacement object is that the structure type defined for the CDS view should match the structure of the database table. True False.
The Global Temporary Table (GTT) is defined on the ABAP program. True False.
Value help can be supplied from which of the following? Select all that apply. Process On Value request Search help for a screen field Search help for table or structure fields Search help for a check table Search help from a text table Key values of a check table Search help for a data element Fixed values.
In which circumstances is a table considered to be a text table? 3 correct answers The entire key of this data table is included as the key to this table. This table has an additional language key field. This table only has one character-based data field. This table has a foreign key to the data table as a text table. The ABAP runtime system determines that the relationship exists.
When must a foreign key have domain equality? Always Never For a check field For a text table.
Where are fixed values for fields stored? Table Structure Field Data element Domain.
Only one text table can be linked to a table. True False.
What is the difference between a value table and a check table? No difference; they are the same thing. A value table is a check table after a foreign key is defined. A value table is defined in the domain, whereas a check table is defined in the data element. A check table is defined in the domain, whereas a value table is defined in the data element. A value table does not exist.
The order of fields for a transparent table in the database… Needs to match the ABAP Dictionary. Is created in the order of the ABAP Dictionary. Is allowed to be different than the ABAP Dictionary.
Which must a search help do? 4 correct answers Use a table or a view for data selection Determine the values for selection by the user Have a dialog with the user Allow the user to select a response Be used from a screen.
Where should the labels for fields be stored? Table Structure Field Data element Domain.
Which type of view cannot be used in a search help? Database view Maintenance view Help view.
Which type of view uses an inner join in a search help? Database view Maintenance view Help view.
Where do you create online documentation ((F1) help) for fields on the screen? Table Structure Field Data element Domain.
To generate the function modules for a lock object for a custom table (ENQUEUE_<lock_object> and DEQUEUE_<lock_object>), which tool would you use? General Table Maintenance Dialog (Transaction SE54) Reuse Library (Transaction SE83) Function Builder (Transaction SE37) ABAP Dictionary (Transaction SE11) Text Elements (Transaction SE32).
It is possible to use both buffering and secondary indexes to improve performance of a search help. True False.
Which screen in the ABAP Dictionary allows you to log data changes to the table? Attributes tab Utilities • Settings Technical Settings Delivery and Maintenance tab Utilities • Database Object • Database Utility.
The predefined data types are defined locally in the ABAP program True False.
Report abuse Consent Terms of use