‎2008 Nov 18 8:16 AM
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?
‎2008 Nov 24 3:14 PM
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
‎2008 Nov 18 8:35 AM
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
‎2008 Nov 24 3:14 PM
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