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

sy subrc

Former Member
0 Likes
557

When I use call transaction I get sy-subrc = 1001, pointers required.

Thanks.

When I use call transaction I get sy-subrc = 1001, pointers required.

Thanks.

3 REPLIES 3
Read only

amit_khare
Active Contributor
0 Likes
527

0 The batch input processing of the called transaction was successful.

< 1000 Error in the called transaction. If within the transaction a message was sent, you can receive it using the addition MESSAGES.

1001 Error in batch input processing.

Check the data you are passing for Batch Input while running in background mode.

Regards,

Amit

Read only

Former Member
0 Likes
527

Hi,

1001represents Error in batch input processing.

Read only

Former Member
0 Likes
527

Hi,

Please check out the following options :

1. Try calling CALL TRANSACTION in mode 'E' and also in mode 'A'. See if you do get any errors.

2. If you don't get any errors in option 1, then see the contents of the message table for the call transaction statement.

3. If you find that Option 1 is okay, and that there are no messages in the message table, then please verify if you have put some breakpoints somewhere in the code of the transaction.

Please get back with your test results (most importantly, the contents of the message table).

And generally, there will be no screen with number 120. Just like 100 is used for a selection screen, the system internally uses 120 for a list.

You can assign ok-codes to the field BDC_OKCODE (=FNAM).

Best way to get a nice starting point for own batch input programs: make a recording (SHDB) of your transaction and convert this recording into a (example-) report. From this you can easily copy all the field names and dynpro numbers.

Cheers,

vasavi.

kindly reward if helpful.