Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table Width

Former Member
0 Likes
1,222

Hi all,

When we see the Table Width from the SAP menu, it shows us two things. Dictionary Lenght and ABAP length. What is the difference between the two? What is the other things shown in there.

Like Structure Width, Key Length and Length of Data Division?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
737

hi...

dictionary width means "phisical-database" width while

ABAP width is generally shorter version (packed version) of

field

see for example field with currency data....

greetings,darek

3 REPLIES 3
Read only

Former Member
0 Likes
738

hi...

dictionary width means "phisical-database" width while

ABAP width is generally shorter version (packed version) of

field

see for example field with currency data....

greetings,darek

Read only

naimesh_patel
Active Contributor
0 Likes
737

The table width is being calculated by the FM DD_TABL_LENGTH_GET.

Dictionary length is being calculated by summing up all the fields length.

E.g. For table STXL, Strcutre width is 8000 (total length of all the fields).

Key Length is the total length of the all the key fields.

Length of data division is the differnace of the Strucutre width and Key length.

ABAP Length is being calculated with the alingment of the data in the structure.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
737

Thanks