Even i figured out the issue is with the field level routine which i pasted
Data: c(8) type n,
yr(4) type n.
yr = SOURCE_FIELDS-CALYEAR.
CONCATENATE yr '01' '01' into c.
RESULT = c.
I forgot to define variable c.
Now it will work.
Regards,
AL
Even i figured out the issue is with the field level routine which i pasted
Data: c(8) type n,
yr(4) type n.
yr = SOURCE_FIELDS-CALYEAR.
CONCATENATE yr '01' '01' into c.
RESULT = c.
I forgot to define variable c.
Now it will work.
Regards,
AL