0% found this document useful (0 votes)
11 views

Test Abap Dictionary

Uploaded by

khanhquan.dev
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

Test Abap Dictionary

Uploaded by

khanhquan.dev
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

15:17 3/6/24 Test abap dictionary

Which type of view uses an inner join in a search help?


Database view

Maintenance view

Help view

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

Local data objects can be defined using ABAP Dictionary types.


False

True

The Global Temporary Table (GTT) is defined on the ABAP program.


True

False

Which of the following are true statements? 3 correct answers


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.
Field labels are defined for the domain.
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.

https://en.daypo.com/abap-dictionary.html#test 1/12
15:17 3/6/24 Test abap dictionary

Where do you create online documentation ((F1) help) for fields on the
screen?
Table

Data element

Domain

Structure

Field

The order of fields for a transparent table in the database…


Is created in the order of the ABAP Dictionary.

Needs to match the ABAP Dictionary.

Is allowed to be different than the ABAP Dictionary.

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 are incorrect statements? 2 correct answers


TYPES: carrid_ty LIKE spfli-s-carr_id.

TYPES: date_ty TYPE D LENGTH 10.

TYPES: werks TYPE C LENGTH 4.

TYPES: Str TYPE STRING LENGTH 20.

What is the default length of the type C data type?


https://en.daypo.com/abap-dictionary.html#test 2/12
15:17 3/6/24 Test abap dictionary

10

1–65535

What is the allowed length of the ABAP Dictionary data type


DF16_DEC?
The allowed length is 16 digits.

The allowed length is between 0 and 15 digits.

The allowed length is between 1 and 15 digits.

The allowed length is between 0 and 16 digits.

Value help can be supplied from which of the following? Select all that
apply.
Process On Value request

Search help for a check table

Fixed values

Search help for a screen field

Key values of a check table

Search help from a text table

Search help for table or structure fields

Search help for a data element

Which must a search help do? 4 correct answers


Be used from a screen

Allow the user to select a response

Have a dialog with the user


https://en.daypo.com/abap-dictionary.html#test 3/12
15:17 3/6/24 Test abap dictionary

Use a table or a view for data selection

Determine the values for selection by the user

What is variable-length structure called?


Deep structure

Flat structure

Nested structure

Which of the following statements are true? 2 correct answers


A conversion routine can be assigned to a data element.
You can enter documentation for the data element in the ABAP
Dictionary
A conversion routine can be assigned to a domain.

You define the value range in the data element.

The line type for a table type can contain a flat, nested, or deep
structure.
True

False

A replacement object can be defined for a pooled table.


True

False

In which circumstances is a table considered to be a text table? 3


correct answers
This table has an additional language key field.

https://en.daypo.com/abap-dictionary.html#test 4/12
15:17 3/6/24 Test abap dictionary

This table has a foreign key to the data table as a text table.

This table only has one character-based data field.


The entire key of this data table is included as the key to this
table.
The ABAP runtime system determines that the relationship
exists.

The system class CL_ABAP_MATH contains constants for maximum and


minimum values for the numeric data type.
False

True

What is the result of the following arithmetic operation?


DATA: int TYPE I.
int = 5 * ( 3 / 10 ).
0

1.5

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

You can create projection views for pooled or cluster tables.


False

https://en.daypo.com/abap-dictionary.html#test 5/12
15:17 3/6/24 Test abap dictionary

True

Data types store data and occupy memory.


False

True

Where should the labels for fields be stored?


Structure

Field

Domain

Data element

Table

Which of the following standard types is numeric? 3 correct answers


Decfloat32

ABAP data types can be used for a domain definition.


False

True

What is the default length of the type P data type?


1

https://en.daypo.com/abap-dictionary.html#test 6/12
15:17 3/6/24 Test abap dictionary

1–16

If data objects of type I are being used to store the result of a


calculation, the decimals will be truncated.
False

True

The predefined data types are defined locally in the ABAP program
True

False

When must a foreign key have domain equality?


Always

For a text table

For a check field

Never

Which screen in the ABAP Dictionary allows you to log data changes to
the table?
Delivery and Maintenance tab

Utilities • Settings

Attributes tab

Utilities • Database Object • Database Utility

Technical Settings

It is possible to use both buffering and secondary indexes to improve


performance of a search help.

https://en.daypo.com/abap-dictionary.html#test 7/12
15:17 3/6/24 Test abap dictionary

True

False

What is the result of the following arithmetic operation?


DATA: int TYPE I
int = 5 / 10.
0

What is the difference between a value table and a check table?


A value table does not exist.

No difference; they are the same thing.


A value table is defined in the domain, whereas a check table is
defined in
the data element.
A value table is a check table after a foreign key is defined.
A check table is defined in the domain, whereas a value table is
defined in
the data element.

Which of the following are true statements? 3 correct answers


A reference table and field are required for fields with the data
types QUAN and CURR.
Search helps can be defined for a table field that is assigned to
a predefined data type.
Table fields can be assigned to an ABAP Dictionary data type
directly.
Table fields can be assigned to a data element.

https://en.daypo.com/abap-dictionary.html#test 8/12
15:17 3/6/24 Test abap dictionary

Which type of view cannot be used in a search help?


Help view

Maintenance view

Database view

Which of the following regarding search helps is a true statement?


Select all
that apply.
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) flags of the search help parameter.
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.

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.
False

True

Only one text table can be linked to a table.


True

False

https://en.daypo.com/abap-dictionary.html#test 9/12
15:17 3/6/24 Test abap dictionary

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

Which of the following statements are true? 2 correct answers


A database view is implemented as an inner join.

A database view is implemented as an outer join.

A maintenance view is implemented as an outer join.

A maintenance view is implemented as an inner join.

A transparent table can include a deep structure.


False

True

Which of the following statements are true? Select all that apply.
You cannot use a pooled or cluster table for a database view.
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.
The tables included in the maintenance view should have
foreign key relationships.

Which of the following statements regarding search helps are true?


correct answers

https://en.daypo.com/abap-dictionary.html#test 10/12
15:17 3/6/24 Test abap dictionary

You can use a database view for the search help selection
method.
You can use a maintenance 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.

What is the allowed length of the ABAP Dictionary data type


DF34_RAW?
The allowed length is between 1 and 31 digits.

The allowed length is between 1 and 34 digits.

The allowed length is 34 digits.

The allowed length is between 0 and 33 digits.

(F1) help on the screen field displays the data element documentation.
True

False

Where are fixed values for fields stored?


Data element

Domain

Structure

Table

Field

You can define search helps and parameter IDs for a data element.

https://en.daypo.com/abap-dictionary.html#test 11/12
15:17 3/6/24 Test abap dictionary

False

True

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?
Function Builder (Transaction SE37)

ABAP Dictionary (Transaction SE11)

General Table Maintenance Dialog (Transaction SE54)

Text Elements (Transaction SE32)

Reuse Library (Transaction SE83)

https://en.daypo.com/abap-dictionary.html#test 12/12

You might also like