‎2008 May 28 12:34 PM
Hi Experts.
In 4.6c a program has gen(3) type i.
During upgrade while performing ucheck there is an error saying that the length specification not allowed . How to rectify it.?any Idea?
‎2008 May 28 12:39 PM
Hi,
Either you can declare
DATA: gen TYPE i.
or
DATA:gen(3) TYPE N.
Rgds,
Bujji
‎2008 May 28 12:36 PM
Hi,
Do not mention any length.
data : num type i.
Thanks,
Sriram Ponna.
‎2008 May 28 12:40 PM
Hey. One More doubt.
I have a
Data: NUM type of which is Curr.
But iam getting error saying that NUM shud be of type C N D T while ucchecking how to do that?
‎2008 May 28 12:39 PM
Hi,
u took the data type as integer.So u dont need to give length.When u will take as a numeric it need to give length
ex:
DATA: LIN TYPE I.
Z(4) TYPE N ,
‎2008 May 28 12:39 PM
Hi,
Either you can declare
DATA: gen TYPE i.
or
DATA:gen(3) TYPE N.
Rgds,
Bujji