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

BDC value not pasing to quantity fields in MIo4 TCODE

Former Member
0 Likes
625

hi all...

i am making bdc for inventroy count...

i m passing data from BDC to MI04 ...in second screen quantity field is not being filled by BDCDATA-fval value..and message coming is ->

field ISEG-ERFMG(01) input value is longer than screen field...plz help..

regards....

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
475

Hi Madan,

write your quantity field into a character field of length = max length of the quantity field as in its domain with left-justified and then pass that character field to the bdcdata and this will resolve your problem.

clear: v_erfmg.

write: iseg-erfmg to v_erfmg left justified.

use this v_erfmg.

Quantity field is written from right hand side of the field and hence the space wont be there for the bdcdata to write it.

Cheers

JK

PS: Award points if this helps you.

2 REPLIES 2
Read only

Former Member
0 Likes
476

Hi Madan,

write your quantity field into a character field of length = max length of the quantity field as in its domain with left-justified and then pass that character field to the bdcdata and this will resolve your problem.

clear: v_erfmg.

write: iseg-erfmg to v_erfmg left justified.

use this v_erfmg.

Quantity field is written from right hand side of the field and hence the space wont be there for the bdcdata to write it.

Cheers

JK

PS: Award points if this helps you.

Read only

0 Likes
475

thanks jaya....

this was in mind but skip...thanks...