‎2008 May 23 2:04 PM
i am uploading notepad flat file data with call by transaction method,however fields having data type NUMC,DEC...does not accepting, only fields having data type CHAR accepting, error: 'input value is longer than screen field', what i have to do?
‎2008 May 23 2:11 PM
use CONDENSE on your BDCDATA-FVAL field.
Like
BDCDATA-FVAL = ITAB-AMT.
CONDENSE BDCDATA-FVAL.
Regards,
Naimesh Patel
‎2008 May 23 2:25 PM
the fields which r getting problem, if i change data type into CHAR ,like thisi n internal table
webaz like C
‎2008 May 23 2:31 PM
I am not suggesting to change the datatype of internal table fields.
My suggestion is: when you transfer your data to your BDC table which you are using into call transaction or Session, you need to use Condense to avoid the error.
Regards,
Naimesh Patel
‎2008 May 23 7:33 PM
Hi,
You can go and see data type and length of the field in table. For example.
klimk type knka-klimk , " Credit limit.
klimk(17) type c
in my case data type was CURR
length 15
decimal places 2.
try this. hope it will work out for you.
Thanks
Dave