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

F110 transaction in BDC causing problem??

Former Member
0 Likes
465

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.

2 REPLIES 2
Read only

Former Member
0 Likes
380

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!

Read only

Former Member
0 Likes
380

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