2007 Nov 29 5:17 AM
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
2007 Nov 29 5:19 AM
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
2007 Nov 29 5:19 AM
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
2007 Nov 29 5:26 AM
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
2007 Nov 29 5:20 AM
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