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 Error

Former Member
0 Likes
544

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
525

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

2 REPLIES 2
Read only

Former Member
0 Likes
526

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

Read only

0 Likes
525

Thanks Vasan.

Will Try.