cancel
Showing results for 
Search instead for 
Did you mean: 

Performance of SSP creation in CRM and ERP

Former Member
0 Kudos

Experts,

We have a scenario where we are trying to create SSPs in CRM system via custom ABAP program.

The document that is created in CRM system will be replicated in ERP where few calculation will happen and finally the transaction gets saved in ERP.

The performance of the program is really bad when huge transactions are created as between every transaction created in CRM and replication in ERP there are some time delays between every commit and this is causing issues when creating huge transactions.

Is there any middleware settings specific to performance for faster replication?

Is there any other parameter to be factored in creating and replicating BDocs.

Any optimized way for creating SSPs via ABAP program that can replicate faster in ERP?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Vikram

    Do you use BRF+ or BADI ?

    May be you can try creating the SSPs in some bulks(25, 50 etc) and not in one single big load.

    Also I would request you to raise a message with SAP.

Regards

Kamesh

Former Member
0 Kudos

yes, we do use BRF and BADIs.. but for single commit its taking time.. is there any profile parameters that can be changed to make commit happen faster in ABAP programs.

Former Member
0 Kudos

Vikram

     I do not remember any such parameters.

     Could you please identify which API is consuming more time in your program ?

     I think, you have to remove the WAIT: 

 

CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = 'X'.

      I would advise you raise a message with SAP if there are no improvements.

Regards

Kamesh

Answers (0)