‎2008 Feb 07 5:19 AM
Hi Group,
Here in my code:
loop at ldt_revision into lds_revision.
-
-
-
endloop.
When I check value in the debugger lds_revision-object->revision.revnr
it has the value 234556.
Now I want this number to process further in the above loop.
But here the problem is I use the same lds_revision-object->revision.revnr in the loop, but it is giving me syntax error, could you please help me in rectifying this problem.
Thanks and Regards,
Kumar.
‎2008 Feb 07 5:24 AM
Hi,,
exactly what syntax error it is giving.when u are getting the value inside ur loop then it is fine....
can u elaborate what error it is giving??
‎2008 Feb 07 5:24 AM
Hi,,
exactly what syntax error it is giving.when u are getting the value inside ur loop then it is fine....
can u elaborate what error it is giving??
‎2008 Feb 07 5:37 AM
Hi thanks for your response.
When I check value in the debugger lds_revision-object->revision.revnr the value is there.
But the same lds_revision-object->revision.revnr if given in the code, its saying the syntax error,
revision.revnr is unknown. \
Its not recognizing this above field here in my program.
‎2008 Feb 07 5:32 AM
virgo,
declare a filed which is the type
revision.revnr
catch this in that field
‎2008 Feb 07 5:47 AM
hi
i think type should be not machng. so diclar this like this
revnr type p.
and do it
regard
nawa
‎2008 Feb 07 7:06 AM
Hi Group,
Thank you for your responses.
I have to type the type cast my variable in my program in order to use that value.
My problem is solved.
Thank again for your prompt responses.
Regards,
Kumar.