‎2013 Feb 11 1:29 PM
Hi,
I'm new at using ABAP and I'm trying to follow this tutorial to acquire new knowledge:
http://saptechnical.com/Tutorials/ABAP/LDB/page1.htm
The problem is when I try to save this step:
I got this error:
why is this so? does this mean the table LFAI does not exist on my current version? I just followed the instructions on the tutorial but I end up getting stuck on this step. I hope anyone could help me. Thank you for your time!
‎2013 Feb 11 1:45 PM
Hi,
I think the runtime error text is pretty self-explanatory. It says that the system is unable to interpret 'I' as a number. Check the data type of variable 'mode'. Maybe it's declared as a number.
‎2013 Feb 11 1:45 PM
Hi,
I think the runtime error text is pretty self-explanatory. It says that the system is unable to interpret 'I' as a number. Check the data type of variable 'mode'. Maybe it's declared as a number.
‎2013 Feb 11 4:38 PM
Hi,
Change the data type of variable mode from decimal/numeric to char type. The program goes to dump when a character value is passed to numeric type(p,i,n) variable.
‎2013 Feb 12 8:43 AM
Hi Kumar & Aniket,
Thank you for your helpful & correct answer but the problem is Program SAPLSEUQ is standard and I can't edit it. I'm not permitted to do that. If its ok, I'd like to politely ask why is this happening.. I couldn't pretty much follow the logic. I understand the variable mode is an import parameter of Function Module RS_CORR_INSERT but I wonder what's the value of mode while running. I can't seem to see it while debugging..
Thank you again for replying..
‎2013 Feb 12 11:55 AM
Hi,
Why are you not able to see the value in debug mode? What happens when you set a breakpoint at the statement and execute your transaction?