‎2007 Apr 23 12:44 PM
hi all,
In BDC I am getting one error for quantity Field.The Error is for "MENGE"field.
The error is "The length of the field is more than the screen field."what should i have to do???
Here i am not getting this field from flat file.
it is selected from stpo table based on flat file data.
please reply.
Thanks & Regards,
Reddy.
‎2007 Apr 23 12:49 PM
Take that field/value and convert using WRITE <A> TO <B> while passing to screen.
‎2007 Apr 23 12:51 PM
hi,
Before passing the field value to your BDC Program ... pass it to a variable with write to statement and then pass it to your BDC program ..
Regards,
Santosh
‎2007 Apr 23 12:52 PM
Hai,
Declare the corrsponding variable in your Report as char type as below:
Data:
w_var(Maximum possible length of menge,an integer expected) type c.
Accept the value into this variable and then write to statement.
Hope this helps you.
Regds,
Rama chary.Pammi
‎2007 Apr 23 3:28 PM
Please use when you upload the data from file to SAP R/3 Transaction,use currency field and Quantity field as CHAR,Otherwise you get error.
data : l_menge(15) type c.
then you will not get any problem.
Use Reward Points.
Thanks
Seshu
‎2008 Sep 15 2:02 PM
‎2007 Apr 24 4:55 AM
Thank you for all of your suggestions.
Problem Solved with write statement.
Thanks&Regards,
chandra.