3. Data Dictionary Flashcards

1
Q

Data Dictionary

A

Is a centralized storage location for information about the data that is stored in a database .
A data dictionary provides answers to questions such as:
-What data is contained in the database?
-What are the attributes of this data: name, length, format, etc?
-What relationships exist among different data objects?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Enforcing Data Integrity

A

is the process of ensuring that data entered into the system is logical, complete, and consistent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The basic objects of the ABAP Dictionary are

A

tables, data elements and domains.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Data Base Utility

A

provides the interface between the ABAP Dictionary and the underlying database management system (DBMS).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Transaction Code: Database Utility

A

SE14

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Transaction Code: ABAP Dictionary

A

SE11

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Field (Columns)

A

Is not a dictionary object, but rather is a component of a table. A field cannot exist without a table and only has meaning within that particular table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Records

A

Rows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Primary Key

A

Is that field or combination of fields that uniquely identifies a row in the table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Table fields are defined by

A

Data elements which in turn are assigned to a domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Data element

A

Provides a meaningful description for a field. It appears beside the field in a table definition. Unlike field names these descriptions are language-dependent. It provides field headings for use on screens. Data elements can be used more than once

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Search help

A

A Search help can be assigned to a data element. A search help is an object of the ABAP Dictionary with which input helps (F4 helps) can be defined.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Domain

A

A domain specifies the technical characteristics and the allowed values of a field.
Domains are linked to fields via data elements. In other words, fields are assigned to data elements, and data elements are assigned to domains. You cannot directly assign fields to domains.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

SELECT/END SELECT statement

A

retrieves records one at a time from the database and puts them into the work area. The SELECT-ENDSELECT syntax creates a looping structure. In other words, all statements between SELECT and ENDSELECT are executed once for each record retrieved from the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly