Application Development 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: 

Batch Input Session Overview

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

0 Kudos

Cheers Sanjay, I forgot about that transaction.

Cheers

Andy