Hi,
In delta loads of datasources 0FI_AP_4 and 0FI_AR_4, the newly created documents are not getting picked up. But the changed documents are coming in. This is both is RSA3 and BI Infopackage.
We are in PI 2004_1_470. 0FI_GL_4 is already implemented and working fine.
Have anyone faced this sort of problem???
We debugged the datasource and found that in the function module BWFIR_READ_BSIK_CPUDT_DATA , the following code is missing.
LOOP AT R_FISEL WHERE FIELDNM EQ 'AEDAT'.
MOVE-CORRESPONDING R_FISEL TO R_AEDAT.
APPEND R_AEDAT.
DELETE R_FISEL.
ENDLOOP.
Can anyone tell me if in your system (where these datasource is implemented and delta working fine) whether this part of the code is there or not?
This will help us in resolving the issue.
If you know any other solution also do let me know..
Regards,
Pradhiba
Hi Pradhiba,
Check out whether Records have been recorded in the below mentioned table
The R/3 BWFI_AEDAT table records FI changed documents. To start recording these changes, call transaction code SM30 and insert this row in the R/3 Business Transaction Events TPS31 table:
Process Function Module
00005011 BWFIP_WRITE_AEDAT_POINTER
Note: It is always recommended to load FI-GL data first rather then AR and AP data then you can find right integrity of data.
Add a comment