‎2009 Aug 11 7:23 AM
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
‎2009 Aug 11 9:01 AM
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.
‎2009 Aug 11 9:01 AM
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.
‎2009 Aug 11 11:14 AM
Thanks for the reply, but we are using the version of SAP in which this note is already applied.
‎2010 Jun 01 12:46 PM
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.
‎2009 Aug 11 10:09 AM