2. Data declarations Flashcards

1
Q

Data type: X

A

Hexadecimal-Initial valu 00, standard length 2*defined length-left justified

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

Data type: C

A

text field

  • standard length: defined length
  • left justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Data type: N

A

Numeric text field

  • standard length: defined length
  • left justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Data type: D

A

Date

  • standard length:10
  • left justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Data type: T

A

Time

  • standard length: 8
  • left justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Data type: I

A

Integer

  • standard length: 12
  • right justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Data type: F

A

Float

  • standard length: 22
  • right justified
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

ASSIGN

A

Statement associates a field to a field symbol at runtime

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

DATA

A

Is used to declare a variable (or field) in an ABAP program

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

VALUE

A

Is used to set a default value

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

LIKE

A

Is used to declare fields with reference to other variable or field.

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

TYPE

A

Is used to specify a field’s data type in the “TYPE” addition of the “DATA” or “CONSTANTS” statements.

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

CONSTANTS

A

Is used to declare a constant.

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

FIELD-SYMBOLS

A

Is a pointer that assumes a field’s address, not a fields value

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

SY-DATUM

A

Variable del sistema, es la fecha del sistema

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

CLEAR

A

Sets a field back to its initial value, not its default value

17
Q

SY-UZEIT

A

System variable, current time

18
Q

COMPUTE

A

Assigns a value tu a field, can be written before every assignment with an assignment operator = or ?=, except when an inline declaration or a writable expression is made on the left side.