Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error while Creating a Logical Database

0 Likes
1,095

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!

1 ACCEPTED SOLUTION
Read only

kakshat
Product and Topic Expert
Product and Topic Expert
0 Likes
1,010

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.

4 REPLIES 4
Read only

kakshat
Product and Topic Expert
Product and Topic Expert
0 Likes
1,011

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.

Read only

former_member491621
Contributor
0 Likes
1,010

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.

Read only

0 Likes
1,010

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..

Read only

kakshat
Product and Topic Expert
Product and Topic Expert
0 Likes
1,010

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?