‎2007 Jul 06 7:22 AM
I am using my program to fill the parameters in F110 transaction using BDC.
When I execute my prog,there is an information given when the program tries to populate the lower value of feild Vendor (whose technical screen field name F110V-BISKK) in the foreground mode.
That information is :"Field F110V-BISKK.input value is longer than screen field."
Please help me out to remove this information becos this is causing problem in my program when it runs in back ground mode.
Regards,
Shashank.
‎2007 Jul 06 7:26 AM
Hi,
It is Upper Limit of the Account Number Interval.
So before uploading in itab
<b>WRITE</b> wa_itab-value TO wa_jitab-biskk.
and upload wa_jitab-biskk this value.
Reward if useful!
‎2007 Jul 06 7:46 AM
Hi Shashank,
create a field of type character and pass it to BDC.
In you case F110V-BISKK is quantity field. You defined a field as
DATA: l_BISKK(13) type c.
Assing the value of F110V-BISKK to l_BISKK and use l_BISKK in your BDC.
It will solve your problem.
<b>Reward points</b>
Regards
Kiran Sure
Message was edited by:
skk