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

SLIN......

Former Member
0 Likes
492

Hi all,

I did the extended checking of my code and I got the following error message :

1.Type specification missing for ID AMOUNT(10)

2. Type specification missing for ID V_1(20)

3. Type specification missing for ID V_2(100)

I have defined these in my program as

DATA : data TYPE string,

v_1(20),

v_2(100).

data: amount(10).

can you please tell me where the error is :

thanks

Rajeev

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
468

Hi

DATA : data TYPE string,

v_1(20) type c,

v_2(100) type c.

data: amount(10) type c.

Define like this it won't show again

3 REPLIES 3
Read only

Former Member
0 Likes
469

Hi

DATA : data TYPE string,

v_1(20) type c,

v_2(100) type c.

data: amount(10) type c.

Define like this it won't show again

Read only

0 Likes
468

hey thanks for the reply..that problem is solved...

now the next problem is now I am getting this kind of message in SLIN...

1.No read access to field V_3

2. No read access to field V_4

3. No read access to field V_5

and I have defined in my program as :

data: v_3 like sdbah-actid,

v_4(10) type p decimals 2,

v_5 type i.

so can you please tell me where the error is:

Thanks

Rajeev

Read only

Former Member
0 Likes
468

Hi,

You can declare as below and try with extended check again.This error can be ignored but better to remove it.

DATA : data TYPE string,

v_1(20) type c,

v_2(100) type c.

data: amount(10) type c.

Because the character type will hold all the data types.

Please reward if helpful.

Thanks