hI all.
here in my scenario as an XIer iam just sending the file from SAP-HR to XI using file adapter and after xi picking the file,it is passing the file content to SAP-FI(Reciever System) idoc ACC_EMPLOYEE_EXP .
here i just want to know on what the process happening at reciver FI side after it gets data from xi to its idoc ACC_EMPLOYEE_EXP.
i have also found the exit for this idoc as
ACBAPI01 EXIT_SAPLACC4_001 Accounting: Customer enhancement to BAPI interfaces.
after i went into this exit ,i have found the code as LOOP AT extension.
Determine line item
READ TABLE t_accit WITH KEY posnr = extension-field1.
IF sy-subrc IS INITIAL.
Update the line item text
t_accit-bschl = extension-field2.
t_accit-koart = extension-field3.
MODIFY t_accit INDEX sy-tabix.
ENDIF.
ENDLOOP.
but here i just want to know how the idoc is tirggering this exit and what data will this idoc pass to this exit.
i also want to know on what will happen after the above mentioned code executed in the exit.
will be wating for the best answer.
regards.
Varma.