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

error during MB11 bdc-upload

Former Member
0 Likes
1,212

hi experts.

I am using a BDC-UPLOAD program for MB11 but there is one error during an upload.

Here is a procedure which i am following:

I have created an upload file, which is tab-delimited format. In which such information exists:

01.12.2008 12.12.2008 561 d920 m920 536319000 1 PC 100

Now when i am uploading this file using movement type P61 or 561 a same error occurs:

Formatting error in the field MSEG-EXBWR ; see next message

Make an entry in all required fields and this is a required field, its a currency type field but i have even checked it by replacing it into char & num.

Is there any standard upload program for STOCK UPLOAD using MB11? If there is any one who can send me a solution.

thanks in advance.

Regards,

Yahya Shoaib.

hi experts.

I am using a BDC-UPLOAD program for MB11 but there is one error during an upload.

Here is a procedure which i am following:

I have created an upload file, which is tab-delimited format. In which such information exists:

01.12.2008 12.12.2008 561 d920 m920 536319000 1 PC 100

Now when i am uploading this file using movement type P61 or 561 a same error occurs:

Formatting error in the field MSEG-EXBWR ; see next message

Make an entry in all required fields and this is a required field, its a currency type field but i have even checked it by replacing it into char & num.

Is there any standard upload program for STOCK UPLOAD using MB11? If there is any one who can send me a solution.

thanks in advance.

Regards,

Yahya Shoaib.

7 REPLIES 7
Read only

Former Member
0 Likes
981

for stock upload you can use below LSMW method.. its working fine for me....

Object 0110 Goods movement

Method 0000

Program Name RM07MMBL

Program Type B Batch Input

Read only

Former Member
0 Likes
981

Hi,

Kindly check with the input file i.e i think you have to give like this in flat file for date 01102008.

Regards,

Sudhakar Reddy.A

Read only

Former Member
0 Likes
981

Hi Yahya,

What chenna kesava says is exactly right. It has worked for me too.

Please check the same.

Regards,

-Syed.

Read only

0 Likes
981

well date is not an issue because its placing on the correct field but the problem is with the amount field i-e: EXBWR which was a required field but i have set it as optional but still not getting data on the screeen but my itab is getting that value.

thnxs,

regards,

Yahya Shoaib.

Read only

0 Likes
981

OK...I think you have declared the internal table field for that value same as the standard table right??

Now, create a variable with char and then move the value to that char variable and then pass it to the subroutines...

Ex:

loop at itab into wa.

var1 = wa-amount

perform bdc_field using mseg-exwbr var1.

endloop.

Now, I think it will pick up the value.

VIshwa.

Read only

0 Likes
981

Hi make Sure your recording should be done wothout grid. for that pupose you have to MB11 transaction and fill all required field befor going to next screen then Click on NEW ITEM button and give desire data on that Screen .

Regards

Amir

Read only

Former Member
0 Likes
981

This was done by using a LSMW while rearranging some steps according to the requirement.