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: 

define a vare type c

Former Member
0 Kudos

i want to define a varuable type c with the lenght 8

how do i do that ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos
DATA : VAR(8) TYPE C.
4 REPLIES 4

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
data: lv_c(8) type c.

Regards,

Rich Heilman

0 Kudos

BTW, this is really basic ABAP, you may want to check the ABAP help.

http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm

Regards,

Rich Heilman

Sm1tje
Active Contributor
0 Kudos

data: lv_var(8) type c.

Former Member
0 Kudos
DATA : VAR(8) TYPE C.