‎2006 Feb 14 5:58 AM
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....
‎2006 Feb 14 7:07 AM
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.
‎2006 Feb 14 7:07 AM
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.
‎2006 Feb 14 9:09 AM