cancel
Showing results for 
Search instead for 
Did you mean: 

Look up performance

Former Member
0 Kudos

Hi All,

We need to write look up's for our business requirements.

Our backend is R/3 System and we have Remote function modules.So now we need to evaluate the performance for the two options.

1. Look up's using JCO connections.

2. Look up's using API'S

Volume of messages: 30,000 per hour.

Verison: PI 7.0 and R/3 - ECC 6.0

Please let me know which one is better.

Regards,

Srinivas.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Srinivas,

Consider the use of an ABAP-XSLT mapping, it will have 2 advantages for you,

which will speed up your interface a lot.

First advantage: The mapping is done on the ABAP stacks, which prevents the transport of the message between the Java and the Abap stack for the mapping.

Second advantage: You can use an "lookup" ABAP-class for your lookups from the ABAP-XSLT (xslt extension).

The ABAP method will do the call to your R/3 backend through an RFC call.

If you have to do a lot of lookups in the mapping, you can even do a "batched" lookup,

which means:

1)In the xslt make a loop over your source XML.

Save the inputdata for your lookups in an attribute of your "lookup" ABAP-class (setter).

2) Then call the method to retrieve the (backend) SAP data (in one call, so the function should return a table instead of a single entry).

3) create your target XML message in the xslt

and call a getter method to the local ABAP-class to retrieve the data from the defined attribute in your ABAP-class

which in fact is a call to XI now instead of a remote call to R/3.

I hope this helps.

It is a very fast solution for heavily used interfaces!

Best Regards,

Mark Eijpe

Former Member
0 Kudos

Hi Mark,

Thanks a lot for your info.

Do you have any doucments on abap-xslt, if so please share the links.

Regards,

Srinivas.

Former Member
0 Kudos

Hi,

Refer

/people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping

Thanks

swarup

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please go through below liks it will give some mroe hints

/people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler

http://help.sap.com/saphelp_nw04/helpdata/en/cf/406642ea59c753e10000000a1550b0/frameset.htm

Thanks

Swarup