2009 Mar 31 11:08 AM
Hi all,
Is there any FM or BAPI available for resettign and reversing documents in FBRA. I have a FM for reversing document but i don't have a FM or BAPI for resetting documents. If any one knows answer for this, please suggest me.
Thanks and Regards,
Subbu.
2009 Mar 31 12:07 PM
Hi,
There is a Funcation Module CALL_FBRA.
This should do the job for you to reset the documents.
Regards,
Ram
Hi,
There is a Funcation Module CALL_FBRA.
This should do the job for you to reset the documents.
Regards,
Ram
2009 Mar 31 12:07 PM
Hi,
There is a Funcation Module CALL_FBRA.
This should do the job for you to reset the documents.
Regards,
Ram
2009 Mar 31 12:56 PM
HOPE THIS WILL HELP
Reset cleared items (FBRA)
After executing the data in FBRA, the accounting document will be moved from BSAK table to BSIK, after executing the below function module one can check in these table. Never try to select accounting document from BSEG table, it's a cluster table. Try to use key fields when firing query on BASK table. *---Declaration for fun mod
DATA: d_bukrs LIKE rf05r-bukrs,
d_belnr LIKE rf05r-augbl,
d_gjahr LIKE rf05r-gjahr,
it_rf05r_acct LIKE rf05r_acct OCCURS 0 WITH HEADER LINE.
LOOP AT it_bsak.
CLEAR: d_bukrs, d_belnr, d_gjahr.
d_bukrs = it_bsak-bukrs.
d_belnr = it_bsak-augbl.
d_gjahr = it_bsak-gjahr.
*---Fuction module to run FBRA
CALL FUNCTION 'CALL_FBRA'
EXPORTING
i_bukrs = d_bukrs
i_augbl = d_belnr
i_gjahr = d_gjahr
TABLES
t_accnt = it_rf05r_acct
EXCEPTIONS
not_possible = 1
OTHERS = 2.
Endloop.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |