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

problem with bdc while passing prise through internal table

Former Member
0 Likes
956

Hi experts, i m creating purchase order using bdc. In that i m passing prise for material through internal table then it gives following status message like

Field MEPO1211-NETPR(1) input value is longer than screen field.

Because of this message execution stops and again i need to enter further transaction manually..

so plz tell me what to do?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
915

Hi Vikas

For this, you have to declare char type variable with length of netpr in the BDC Report.

Then assign value to this var & paas to BDC.

Regards.

6 REPLIES 6
Read only

Former Member
0 Likes
916

Hi Vikas

For this, you have to declare char type variable with length of netpr in the BDC Report.

Then assign value to this var & paas to BDC.

Regards.

Read only

0 Likes
915

thanks nikhil. now it gives another error like

Input must be in the format ,_,__,_~._

Now what to do?

Read only

0 Likes
915

hi

what value you are passing to NETPR field?

Check the value & decimals you are providing.

Read only

0 Likes
915

your input value must be 1234.00 or 123,45.00

Read only

0 Likes
915

Hi,

Define the type for the netpr field of type P decimal 2.

use the write statement to convert the amount as per the sap format.

and pass that variable to the BDC field.

Read only

nirajgadre
Active Contributor
0 Likes
915

Hi,

check the input you are entering in this field. since value is having the more length this this error is coming.

pass the amount to char and then use condense statement .

pass that variable to bdc field.