‎2008 Jan 30 3:43 PM
I am doing a BDC for MIR4 and its giving me an error
Field INVFO-WRBTR input Valus is longer than screen field.
Any Suggestions.
Ster.
‎2008 Jan 30 3:47 PM
Hello,
Make the change like this.
Since the field is a amount field
DATA: LV_WRBTR(13).
WRITE: G_T_OUTTAB-WRBTR TO LV_WRBTR.
PERFORM BDC_FIELD USING INVFO-WRBTR
LV_WRBTR.Hope this will solve ur issue.
Cheers,
Vasanth
‎2008 Jan 30 3:47 PM
Hello,
Make the change like this.
Since the field is a amount field
DATA: LV_WRBTR(13).
WRITE: G_T_OUTTAB-WRBTR TO LV_WRBTR.
PERFORM BDC_FIELD USING INVFO-WRBTR
LV_WRBTR.Hope this will solve ur issue.
Cheers,
Vasanth
‎2008 Jan 30 4:01 PM