TAW_10_2 chapter 2, data types in the ABAP dictionary Flashcards

1
Q

Under the “Data Type” radio button of SE11 what can be created?

A

Data elements, Structures, Table Types

NOT DOMAINS

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

Can a domain be used as a type in an ABAP program

e.g. Data: my_fld type

A

NO

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

What are the four most commonly used data types and their maximum sizes

A

CHAR (1 to 255) use LCHAR for unrestricted length
DATS (8)
DEC (1 to 31 including decimal point and thousand separators and +/- sign
NUMC (1 to 255)

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

What would the expected difference be between a CHAR30 and TEXT30 domain?

A

TEXT## usually allows lowercase

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

Do Output characteristics belong to Data element or domain?

A

Domain

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

Is the conversion routine attached to the element or domain?

A

Domain

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

What transaction code is used for data element text translations

A

SE63

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

The technical info for an element can be derived from 3 sources. What are they?

A
Domain
Integrated type 
Ref to (ANY, OBJECT,DATA)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Where is a PID attached

A

Data element

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

Can a Domain and element have the same name?

A

Yep

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

Can an element and a structure have the same name?

A

No. Structures, Elements and table types share a namespace

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

SET/GET parameter lifetime is?

A

The user session

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

SET/GET Parameters are related to input history

A

Nope, not at all

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

A structure can consist of what 6 things

A

Data elements, integrated types, table types, data base tables, views, other structures

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

What is not permitted in a structure name

A

An underscore in position 2 or 3

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

How can a nested object be added to a structure

A

I can use .include or a component name when adding a nested object to a structure

17
Q

What’s the difference between a deep structure and a nested structure

A

Nested structures contain other structures. Deep structures contain at least one table type

18
Q

The name of a type group can be how long?

A

Up to 5

19
Q

After NW 7.0 it is still necessary to load the type group using the type-pool statement?

A

No, it is loaded automatically when a component of the type pool is accessed for the first time