2007 Mar 07 2:13 PM
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
2007 Mar 07 2:17 PM
Hi Andy,
Why dont u run the session in display error mode so that you can figure the problem.
Regards,
Sowmya.
2007 Mar 07 5:20 PM
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.