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

Using XK01 transaction

Former Member
0 Likes
572

Hi Experts,

I have used XK01 transaction.Iam getting Sy-subrc = 1001.Wht does it mean if sy-subrc = 1001.

Advance Thanks....

1 ACCEPTED SOLUTION
Read only

manthanraja
Active Participant
0 Likes
526

1001- Error in batch input processing.

you get this error when there is some error in BDC execution like wrong data, wrong field or format .

greater than 1000 occur when there is error in batch input ..

Regards

Manthan.

3 REPLIES 3
Read only

manthanraja
Active Participant
0 Likes
527

1001- Error in batch input processing.

you get this error when there is some error in BDC execution like wrong data, wrong field or format .

greater than 1000 occur when there is error in batch input ..

Regards

Manthan.

Read only

GauthamV
Active Contributor
0 Likes
526

Sy-subrc = 1001 indicates that you have some error in batch input processing.

Read only

andreas_mann3
Active Contributor
0 Likes
526

use:

CALL TRANSACTION 'XK01' USING bdcdata MESSAGES INTO itab.

and anlyse itab

A.