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

define a vare type c

Former Member
0 Likes
859

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

how do i do that ?

1 ACCEPTED SOLUTION
Read only

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

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

how do i do that ?

4 REPLIES 4
Read only

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

Regards,

Rich Heilman

Read only

0 Likes
818

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

Read only

Sm1tje
Active Contributor
0 Likes
818

data: lv_var(8) type c.

Read only

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