‎2010 Mar 17 10:02 AM
Hi Experts,
I have used XK01 transaction.Iam getting Sy-subrc = 1001.Wht does it mean if sy-subrc = 1001.
Advance Thanks....
‎2010 Mar 17 10:05 AM
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.
‎2010 Mar 17 10:05 AM
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.
‎2010 Mar 17 10:06 AM
Sy-subrc = 1001 indicates that you have some error in batch input processing.
‎2010 Mar 17 12:28 PM
use:
CALL TRANSACTION 'XK01' USING bdcdata MESSAGES INTO itab.
and anlyse itab
A.