Some ST commands require the specification of ABAP values dependent on the ABAP data type as a function of the type. In two cases, however, the value can also be specified directly. Moreover, the initial value can be specified regardless of the ABAP type.
Data Type |
Representation |
|
|
Byte strings (ABAP types x and xstring) |
X(’value’) |
Date fields (ABAP type d) |
D(’value’) |
Packed numbers (ABAP type p) |
P(value) |
Floating point numbers (ABAP type f) |
F(value) |
Integers (ABAP type i) |
I(value) | value |
Numeric text fields (ABAP type n) |
N(’value’) |
Character strings (ABAP types c and string) |
C(’value’) | ’value’ |
Time fields (ABAP type t) |
T(’value’) |
|
|
Initial value (all ABAP types) |
initial |