Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Performance question in posting accounting document

Former Member
0 Likes
789

We need to build a process in which we have to create many accounting documents (about 1000 per transaction).

It would be great if you could tell me what is, in your opinion, the best tecnique to use (considering performance and load balance) beetwen:

- batch-input

- idoc (FIDCCP01)

- bapi (bapi_account_document_check)

Thank you very much in advance

1 ACCEPTED SOLUTION
Read only

Abhijit74
Active Contributor
0 Likes
615

Hello,

There is no such benchmark on performance for document posting. You can use any of three BAPI, Batch input or IDOC. May be in BAPI there are few more structures . All has got different applications. Like IDOC is for exchange data between two 2 sap system. BAPI can be used to execute  sap from non sap system.  Another like in LSMW you can import file . Consider the error processing. If you have error during processing who is going to correct? You or business? You have to think which is best for business.

So, what is best for your option that is important not BAPI, BDC, IDOC or LSMW,

Thanks & Regards,

Abhijit

3 REPLIES 3
Read only

Former Member
0 Likes
615

Hello ,

The best way to fulfil the requirement is the use Bapi : BAPI_ACC_DOCUMENT_POST with appropiate coding

Please check out the Wiki link below :

http://wiki.scn.sap.com/wiki/display/ABAP/Business+Transaction+Event+-+RWBAPI01+-+For+Accounting+Doc...

Regards

Read only

Abhijit74
Active Contributor
0 Likes
616

Hello,

There is no such benchmark on performance for document posting. You can use any of three BAPI, Batch input or IDOC. May be in BAPI there are few more structures . All has got different applications. Like IDOC is for exchange data between two 2 sap system. BAPI can be used to execute  sap from non sap system.  Another like in LSMW you can import file . Consider the error processing. If you have error during processing who is going to correct? You or business? You have to think which is best for business.

So, what is best for your option that is important not BAPI, BDC, IDOC or LSMW,

Thanks & Regards,

Abhijit

Read only

Former Member
0 Likes
615

thanks a lot!