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

RFBIBl00 - Creating Batch File

Former Member
0 Likes
646

How Do Everyone!

I am trying to create a batch session via a piece of ABAP code. I create a

text file which is submitted to RFBIBL00. I then execute the session via

SM35. This then simulates transaction FB01.

I am getting the following error when I process the file:

<b> 11:21:00 Session PURCH. is being processed by user INTERFACE

in mode N on server

0002 11:21:00 Field COBL-PRCTR. does not exist in the screen

SAPLKACB 0002

11:21:00 Transaction error

0002 11:21:01 Field COBL-PRCTR. does not exist in the

screen SAPLKACB 0002

11:21:01 Transaction error

11:21:01 Processing statistics

11:21:01 2 transactions read

11:21:01 0 transactions processed

11:21:01 2 transactions with errors

11:21:01 0 transactions deleted

11:21:01 Batch

input processing ended</b>

I really need some help here. It is saying that COBL-PRCTR does not

exist. But When I look at the screen FB01, I can see that the field does

exist.

What the hell is going on !!!!

Any ideas would be much appreciated.

Andy

How Do Everyone!

I am trying to create a batch session via a piece of ABAP code. I create a

text file which is submitted to RFBIBL00. I then execute the session via

SM35. This then simulates transaction FB01.

I am getting the following error when I process the file:

<b> 11:21:00 Session PURCH. is being processed by user INTERFACE

in mode N on server

0002 11:21:00 Field COBL-PRCTR. does not exist in the screen

SAPLKACB 0002

11:21:00 Transaction error

0002 11:21:01 Field COBL-PRCTR. does not exist in the

screen SAPLKACB 0002

11:21:01 Transaction error

11:21:01 Processing statistics

11:21:01 2 transactions read

11:21:01 0 transactions processed

11:21:01 2 transactions with errors

11:21:01 0 transactions deleted

11:21:01 Batch

input processing ended</b>

I really need some help here. It is saying that COBL-PRCTR does not

exist. But When I look at the screen FB01, I can see that the field does

exist.

What the hell is going on !!!!

Any ideas would be much appreciated.

Andy

2 REPLIES 2
Read only

Former Member
0 Likes
523

Hi Andy,

Why dont u run the session in display error mode so that you can figure the problem.

Regards,

Sowmya.

Read only

Tamas_Hoznek
Product and Topic Expert
Product and Topic Expert
0 Likes
523

Some transactions run differently when in batch-input vs. dialog. This means: when you run FB01 and look at the screens, you may see different fields open, or even a different screen sequence compared to the batch-input mode.

I don't know how did you create your session, but the best way to handle such cases is to create a recording of the transaction in SM35 and make sure to fill in all the fields you might want to populate. Next, generate the corresponding ABAP code based on the recording (this is all provided to you). Then, you can change the resulting program to match your needs, and at least you can be sure that you're not going to miss any field or have an incorrect screen sequence in the session.