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

tcode FBV1 using RFBIBL00

Former Member
0 Likes
649

Hi everybody

Im using the program RFBIBL00 to park docs using tcode FBV1 but when im getting errors - batch input data does not exist

Im using ecc6.0, is there any solution to this?

Is there any BAPI for park documents?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
492

I hope you are creating the input file in right format for RFBIBL00. RFBIBL00 documentation explains the process very clearly. Also, refer RFBIBLT0 code on the steps to follow in preparing the input file.

Summay, always populate the fields with no data indicator '/' first and then pass actual values as and when required.

Hope this helps,

SKJ

2 REPLIES 2
Read only

Former Member
0 Likes
492

Hi,

Check the below BAPI's:

  • FM for Parking the documents in save as completed status

CALL FUNCTION 'PRELIMINARY_POSTING_FB01'

EXPORTING

i_tcode = 'FB01'

i_xcmpl = lc_xcmpl

TABLES

t_bkpf = lt_bkpf

t_bseg = lt_bseg

t_bsec = lt_bsec

t_bset = lt_bset

t_bsez = lt_bsez

EXCEPTIONS

error_message = 1

OTHERS = 2.

Also some helpful:

BAPI_ACC_DOCUMENT_CHECK Check

BAPI_ACC_DOCUMENT_POST Posting

Regards

Shiva

Read only

Former Member
0 Likes
493

I hope you are creating the input file in right format for RFBIBL00. RFBIBL00 documentation explains the process very clearly. Also, refer RFBIBLT0 code on the steps to follow in preparing the input file.

Summay, always populate the fields with no data indicator '/' first and then pass actual values as and when required.

Hope this helps,

SKJ