Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONABAP TAW10 2 A

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP TAW10 2 A

Description:
Certified Development Associate - ABAP with SAP NetWeaver 7.50

Author:
M Buendia
(Other tests from this author)

Creation Date:
22/01/2020

Category:
Computers

Number of questions: 52
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Screen fields can be assigned a field help (F1 help) by creating documentation for the data element. Determine whether this statement is true or false. True False.
Which of the following type categories exist in the ABAP Dictionary. Choose the correct answers. Data elements Structures Indexes Table types.
When creating the user interface in the __________, fields from structures or tables defined in the Dictionary can be added to the screen using the Get from Dictionary function. Choose the correct answer. Function Modules ABAP Interpreter Screen Painter.
ABAP Objects support the use of global constants in the form of constant class attributes. Determine whether this statement is true or False. True False.
Which of the following technical information can be found in a domain? Choose the correct answers. Data type Field length Output characteristics Field labels.
Data elements are based on domains or built-in types. Determine whether this statement is true or false. True False.
Field labels contain keywords of different lengths (short, medium, and long) which can be assigned to screen fields referencing definitions in the ABAP Dictionary. Which of the following dictionary definitions can be used to maintain these field labels? Choose the correct answer. Built-in type Data element Domain Type pool.
A structure can consist of components with the following types data elements, Integrated types, table types, database tables, views, or other existing structures. Determine whether this statement is true or false. True False.
The simplest form of a structure is a list of fields typed with data elements. This always gives rise to _______ structure. Choose the correct answer. deep flat nested.
Which of the following dictionary definitions can be used as line type for a table type in the Dictionary? Choose the correct answers. Database table Structure Domain Data element Type group.
You can create a two-dimensional array in main memory by declaring an internal table in an ABAP program. Determine whether this statement is true or false. True False.
Deep structure contains at least one table. Determine whether this statement is true or false True False.
The name of a type group can contain a maximum of how many characters? Choose the correct answer. Ten Three Five.
In a structure, you can include another structured object and assign it to a component. The component refers to the structured object and the new data object is described as a nested structure. Determine whether this statement is true or false. True False.
You cannot access the data contained in a pooled or cluster table with OPEN SQL. Determine whether this statement is true or false. True False.
Which of the following ABAP dictionary objects stores data permanently in the database? Choose the correct answer. Tables Structure Data element Domain.
The _________ key is a combination of columns that uniquely identifies a data record. Choose the correct answer. secondary primary domain data.
_______determine the storage requirements and the access behavior of database tables. Choose the correct answer. Internal table types Technical settings Foreign keys.
Master data is data that is seldom modified: for example, customer data, such as customer name, address, and so on. Determine whether this statement is true or false True False.
In cluster tables, you store functionally dependent data among different tables into the table cluster. The data dependent on the cluster key is stored in the ______ field of the table cluster. Choose the correct answer. cluster data vardata table data.
A table pool, as opposed to table clusters, stores data records from tables that are not dependent on one another. Determine whether this statement is true or false. True False.
The primary advantage of pooled and cluster tables is that the data can be stored in compressed form in the database. This reduces the memory required as well as the network load. Determine whether this statement is true or false. True False.
An index can be regarded as a copy of a database table reduced to certain fields. Determine whether this statement is true or false. True False.
Which index is automatically created in the database when the table is activated for the first time? Choose the correct answer. Secondary index Primary index Extension index.
If a large table is accessed so frequently that it is not possible to use the primary index, you should create secondary indexes for the table. Determine whether this statement is true or false. True False.
The _______ decides which table index is used by the database system to access data records. Choose the correct answer. database optimizer database table table buffers.
Table buffering increases performance when the records of the table are read. Determine whether this statement is true or false. True False.
Generic buffering is recommended, particularly for large tables, in which only a few records are accessed repeatedly with SELECT SINGLE. Determine whether this statement is true or false. True False.
With generic buffering, the generic key is a left-justified part of the primary key of the table. Determine whether this statement is true or false. True False.
_________ buffering is advisable for tables that have frequent access to records that do not exist. Choose the correct answer. Full Generic Single-record.
Buffers reside locally on the application servers, and must be synchronized after data has been modified in a buffered table. Synchronization takes place at fixed time intervals and car be set in the system profile. Determine whether this statement is true or false. True False.
Table indexes have a three-character ID and O is reserved for the primary index. Determine whether this statement is true or false. True False.
Validation of screen fields does not occur until a foreign key is defined or fixed values are provided in the domain definition. Determine whether this statement is true or false. True False.
If you refer to a domain with a value table in a field and define a foreign key at field level, there is no check. Determine whether this statement is true or false. True False.
A domain describes the general value range of a field by specifying its _______ and field length. Choose the correct answer. fixed value data type field value range.
_______are used to ensure that the data is consistent among tables. Choose the correct answer. Primary keys Foreign keys Secondary keys.
The field of the foreign key table to be checked is called the _______ Choose the correct answer. check field referenced field foreign key.
A user enters data in a screen field with a foreign key assigned. This entered data must be consistent with the key fields of the check table. Determine whether this statement is true or false. True False.
A text table has all the key fields of the normal table along with an extra key, which is the language key field. Determine whether this statement is true or false. True False.
Only one text table can be linked with a table. Determine whether this statement is true or false. True False.
The __________ version of an ABAP Dictionary object is the version that the components of the runtime environment (for example. ABAP processor, database interface) access. Choose the correct answer. passive active inactive.
The runtime object of a table contains further information needed by the database interface for accessing the table data, such as client dependence, buffering, key fields, and so on. Determine whether this statement is true or false. True False.
The __________ for Repository objects can be called from the information system. Choose the correct answer. data elements where-used list buffering type of tables.
When an object that is already active is modified, it can affect other objects that use it directly or indirectly. The affected objects are called. Choose the correct answer. dependent objects database objects Repository objects.
Correct access by ABAP programs to a database table is not possible if the runtime object of the table is inconsistent with the structure of the table in the database. Determine whether this statement is true or false. True False.
During the conversion process, the reloaded from table QCMTAB to table QCM8TAB with __________ Choose the correct answer. ALTER TABLE MOVE-CORRESPONDING SELECT.
If a conversion terminates, the following options are displayed as buttons in the database utility: Choose the correct answers. Continue Adjustment Unlock Table Discard Adjustment Reset Table.
Identify the ways in which customers can enhance the structures and tables that have been defined by SAP in the ABAP Dictionary. Choose the correct answers. Using Customizing Includes Using append structures Using internal tables.
In a database view, a _______ condition can be formulated with fields included in the view, and fields that are not contained in the view. Choose the correct answer. selection table projection.
A _________ is defined in the ABAP Dictionary and automatically created on the database during activation. Choose the correct answer. view cluster database view Field name.
When you create a maintenance view, the key fields must be defined before the function fields. Determine whether this statement is true or false True False.
A view cluster consists of one or more ________ views. Choose the correct answer. database maintenance help .
Report abuse Consent Terms of use