5. ABAP Dictionary Tables Flashcards

1
Q

3 different table types in the SAP ABAP Dictionary

A
  1. Transparent tables
  2. Cluster Tables
  3. Pool Tables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Master Data

A

Refers to control tables and the traditional files that are necessary to run a business such as personnel files, general ledger accounts, customer files, etc.

There is a 1:1 correlation between the master data tables in the Dictionary and the tables in the physical database. For each master data table in the Dictionary, the same master data table exists in the physical database.

Large amounts of data which do not change often. It is often read, but
rarely updated. An example of master data is the data contained in an address file,
such as the name, address and telephone number. (APPL0)

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

Commercial Data or transaction data

A

Is another SAP term used to refer to data created as a result of performing SAP business transactions such as creating: invoices, orders, production schedules, purchase requisitions, stock transfers, etc.

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

Transparent Tables

A

Have a 1:1 correlation between the ABAP Dictionary and the physical database. For each TRANSP table in the dictionary, the same table name exists in the physical database

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

Pooled Tables

A

Can be used to store control data, (e.g. screen sequences, program parameters or temporary data). Several pooled tables can be combined to form a table pool

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

Cluster Tables

A

May contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or object-by-object access

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

Technical settings-Data class

A

Designates the table to an area in the physical database where similar tables are grouped

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

Data class

A

Designates the table to an area in the physical database where similar tables are grouped

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

Size Category

A

Identifies the amount of disk space that will be required to hold the data records for a table in the database

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

Buffering

A

Determines whether table records will be accessed directly from the database server or from global memory.

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

Loggin

A

Creates before and after images of changes to the table of contents. Logging must be activated by the profile when the system is started

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

3 Classes of data

A

Master Data, Transaction Data, Organization and Customizing data

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

Transaction Data

A

Data with temporary lifecycle, not stored long. Frequently
updated. An example of transaction data is the goods in a warehouse, which change
after each purchase order. (APPL1)

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

Organization and cutomizing data

A

Specified when the system is configured and

then not often changed. An example is the table with country codes. (APPL2)

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

3 Buffering Types

A

Single record, generic, full

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

Single record-buffering type

A

Only a single record actually being processed is moved into the buffer. This type of buffering preserves buffer space but requires more database hits in order to load the table. Recommended for large tables when only a few records need to be accessed.

17
Q

Generic-buffering type

A

A subset of the table records are loaded based on part of the primary key. Recommended if only certain “generic” areas of the table will be needed.

18
Q

Full-buffering type

A

Results in either all of the table or none of it being loaded into the buffer. Recommended for a) tables up to 30 K in size, b) larger tables where access is needed to many records, and c) tables against which attempts to access data will frequently yield a “no record found” result.

19
Q

SCU3

A

Displays existing logs of a table

20
Q

Database utility is used to

A

Convert Data, Activate Objects, Create Tables and perform all standard table operations

21
Q

Index

A

An index is a set of fields from a table that is sorted and then stored in a location separate from the table itself. Each record in the index contains a pointer to matching record(s) in the actual database table.