Application Development 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: 

DATA TYPE

Former Member
0 Kudos

WHAT IS SIZE OF CHAR AND NUMC FIELD

5 REPLIES 5

raymond_giuseppi
Active Contributor
0 Kudos

Look at <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf">BC - ABAP Dictionary</a>

( Look for "Existing Data Types")

Regards

matt
Active Contributor
0 Kudos

As long as you'd like it to be.

matt

varma_narayana
Active Contributor
0 Kudos

Hi..

For CHAR And NUMC the size must be specified.

Max size will be 256.

Cheers.

former_member386202
Active Contributor
0 Kudos

Hi,

For CHAR it is 8000 and for NUMC it is 35

Regards,

Prashant

Former Member
0 Kudos

Hi Srinadh,

CHAR: Character string. Fields of type CHAR may have a maximum length of only 255 in tables.If longer character fields are to be used in tables, you must choose data type LCHR. There are no restrictions on the length of such fields in structures.

NUMC: Long character field in which only numbers can be entered. The length of this field is limited to a maximum of 255 places.

Thanks

Narasimha