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

Batch Input Session Overview

Former Member
0 Likes
3,381

Happy new year everyone!

I am writing a piece of ABAP code which creates a batch input session.

In the code I have the following statement:

PERFORM session_insert USING 'F-02'.

However, when I run SM35 and look and display the log, in the transaction

column FB01 appears. There is no reference to F-02.

Does anybody know why this is?

Thanks

Andy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,831

Hi Andy,

I guess it is because 'F-02' is a special case of 'FB01', check transaction SE93 to find out the details. [default values for BLART=SA and NEWBS=40 are passed].

Please try to work around this.

Regards

Sanjay

3 REPLIES 3
Read only

Former Member
0 Likes
1,831

Hi andy,

1. in your subroutine session_insert,

(or before that, when u open the session),

the session name must be going as FB01.

(the session name and tcode can be different)

regards,

amit m.

Read only

Former Member
0 Likes
1,832

Hi Andy,

I guess it is because 'F-02' is a special case of 'FB01', check transaction SE93 to find out the details. [default values for BLART=SA and NEWBS=40 are passed].

Please try to work around this.

Regards

Sanjay

Read only

0 Likes
1,831

Cheers Sanjay, I forgot about that transaction.

Cheers

Andy