I work with an SAP system with an IBM DB2 database attached to it. I created a transparent table in SAP system and then I checked how it looked like on the database level. It turned out that the character fields (CHAR
, DATS
, CUKY
, NUMC
) are three times bigger than their length specified in SE11
. For example CLIENT
field of type MANDT
has the type VARCHAR(9)
.
I could understand multiplication of the length by 2 because of the fact that SAP is a Unicode system. But the multiplication by 3? Is anybody able to explain it to me?