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

No batch input data for screen SAPMF05A 0300

Former Member
24,215

We created a program to load converted GL postings via a BDC recording on FB01 transaction. However, whenever it processes a file with coding block entry (Trading Partner) we receive an error that states "No batch input data for screen SAPMF05A 0300". I found OSS note 9458 from 12.22.1999 that states to run this program in foreground and choose "Enter" or "Continue". However, this doesn't work. We have over 200 files in error and can't afford the manual effort to process. Does anyone no of a way to resolve this issue ?

Thanks

We created a program to load converted GL postings via a BDC recording on FB01 transaction. However, whenever it processes a file with coding block entry (Trading Partner) we receive an error that states "No batch input data for screen SAPMF05A 0300". I found OSS note 9458 from 12.22.1999 that states to run this program in foreground and choose "Enter" or "Continue". However, this doesn't work. We have over 200 files in error and can't afford the manual effort to process. Does anyone no of a way to resolve this issue ?

Thanks

6 REPLIES 6
Read only

Former Member
0 Likes
10,495

HI,

This is not a GUI or Screen error, it is purely a coding error, you are not passing some mandatory field for screen 300 or you are not caling the proper screens from screen 300. just run the program in foreground then you come to know the error

Regards

Sudheer

Read only

Former Member
0 Likes
10,495

this may not be a good solution..but this will work.

do a recording for an entry with coding block. and if u compare ur existing code and the new recordings code, u will be able to find some additional lines for screen SAPMF05A 0300 in new recording.

in your program, beginning of each loop, check whether that file is with coding block.., if yes.... let it go thru the second recording path... else... follow the first recording path ...

whenever I do FI recordings, there are some additional screen swhich pop up, for some specific cases.... and i always handled those using this strategy...

but i am sure.. this may not be the right way...there shud be an alternative.

Read only

Former Member
0 Likes
10,495

Hi,

Instead of BDC you can use the standard program for GL upload, use RFBIBL00. read the documentation of this program, thsi is very easy if you campare with NDC

also read the below thread also

and one more thing, you can use BAPI_ACC_DOCUMENT_POST to post the GL accounts, so you can use of the aobe methods

Regards

Sudheer

Read only

0 Likes
10,495

We are using RFBIBLOO when attempting to post

Read only

0 Likes
10,495

I am experiencing a similiar problem using the RFEBLB00 with error SAPMF05A 00614.

I don't understand what this error is and why we have it in production but not in development. The program is the importing of the lockbox file via FLB2.

Any insight would be greatly appreciated.

Read only

abdul_quraishi
Explorer
0 Likes
10,495

I had similar problem using RFBIBL00.

"No batch input data for screen SAPLF040 0300"

My resolution was.:

There was a value going into VBUND in BBKPF, which was contrary to our cofiguration.

RFBIBL00 was popping up screen SAPLF014/0100 where as the transaction was going to SAPLF014/0300 and thus was getting tripped.

Once I removed that BBKPF-VBUND entry it went smoothly.