Enterprise Resource Planning Blogs by Members
Gain new perspectives and knowledge about enterprise resource planning in blog posts from community members. Share your own comments and ERP insights today!
cancel
Showing results for 
Search instead for 
Did you mean: 
Posting FI Account documents is a vital step for any Company to manage business flow. SAP provided different ways to post FI documents. One of the way is using FLAT FILE to upload and post FI documents.

Interfacing is one of the techniques used in SAP and of course in other technologies as well for uploading and then updating/Inserting data to the database. The data loaded must have some validation checks to make sure that the correct data is passed to the application , and saved to the database.

There are many interfacing techniques available with in the SAP Environment such as IDOCS, XI/PI , BDC AND LSMW.  In this blog i am explaining the process of uploading data using the flat file for financial postings.

 

Below are the Steps to setup flat file and Object development step.

 

(1) For demonstration purposes, i am taking single record for 26 fields coming into the system. Below is the screen capture of the flat file.

 



 

 



 

(2)Next step is the development of file upload program. I leveraged the file upload program and changed it based on my requirement. Below is the screen capture for creating file upload program.

 





 

(3) Run the program and see how the screen for the file upload program looks like. This one has an option to upload file from the application server or Flat file.



 

(4) Now let us put a break point in the program to see how the file upload program is handling the flat tile data.

(a) Initially the data is loaded from flat file into the it_data1 internal table using file upload program.



(b) Data with in the internal table from flat file.



(5) Now lets move to the next step where we are arranging data in a separate internal table it_data2 for further processing for the interface. I have used SPLIT command to arrange data into the desired fields as shown below.

 



 

 



 

(6)The data is setup in the second internal table for further processing as shown in the above screen capture.

 

(7) data setup for gl account, currency amount and tax in their tables are shown in the below screen capture.



 



 

(8)Now we call BAPI BAPI_ACC_DOCUMENT_CHECK to see if there are any errors in the postings we are doing.

 



 

as you can see the Lt_return table has no entries , indicating there are no errors in the document.

Now lets move to function module BAPI_ACC_DOCUMENT_POST to post financial entries.

 



 

Return table indicates success message, the document is successfully posted.

 

Thanks for reading.

 

References:

file upload program :

https://wiki.scn.sap.com/wiki/display/ABAP/F4+Help+for+Application+Server+and+GUI+Files+using+CL_RSA...

 

 

 

 
Labels in this area