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 "enter a numeric value" I am not getting this error when i directly

Former Member
0 Likes
2,577

We are using BAPI "BAPI_ROUTING_CREATE". I am using an excel file for input. I am getting errors against Standard Values and Unit of measure of Standard Values while running the BAPI through an ABAP program.

The errors are:

1. enter a numeric value

2. Enter a unit of dimension time for standard value

I am not getting this error when i directly run BAPI_ROUTING_CREATE through SE37.

Kindly help

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,309

there's something wrong with the way, numeric values are entered. read note 1105503 to give you a clue how to locate the error in your file.

4 REPLIES 4
Read only

Former Member
0 Likes
1,310

there's something wrong with the way, numeric values are entered. read note 1105503 to give you a clue how to locate the error in your file.

Read only

0 Likes
1,309

Thanks for the reply, but we are using the version of SAP in which this note is already applied.

Read only

0 Likes
1,309

Hi, I had the same problem. Solution for me:

OPERATION-ACTIVITY = <T>-ACTIVITY. " activity for example "5" ---> problem error "Enter a numeric value"

OPERATION-ACTIVITY = <T>-ACTIVITY. " activity for example "0005" ---> no problem --> include leading 0

so I chanded <t>-activity field type to N(4) and no problem...

Bye, B.

Read only

Former Member
0 Likes
1,309

This message was moderated.