cancel
Showing results for 
Search instead for 
Did you mean: 

Limitation to ABAP Proxy

Former Member
0 Kudos

Hi,

I have a scenario where ABAP program triggers a ABAP proxy and passes internal table as an input. I wanted to know what's the maximum limit a proxy can accept. I have around 400K records to sent to XI using ABAP proxy and XI writes it into a file after transformation.

Your suggestion and help would be appreciated.

Thanks in advance,

Shridhar.

Accepted Solutions (0)

Answers (2)

Answers (2)

bhavesh_kantilal
Active Contributor
0 Kudos

Are 400k records going to be sent in a single shot?

I would suggest that the report triggering the call to XI rather do it in batches.

Regards

Bhavesh

Former Member
0 Kudos

Bhavesh,

Thanks for your reply. Yes, I am sending all 400K records in one shot in one internal table of ABAP Proxy. Is there any problem if I send them. If yes, how to do them in batches and at the same time write them in one file. I cannot split them into two or more files each one with 100K records or so..

Regards,

P.Shridhar.

bhavesh_kantilal
Active Contributor
0 Kudos

Shrihar,

The Report used to trigger the data to XI can be written in such a way that it sends the data in batches.

In XI, in the receiver file adapter you can have the mode as Append so that all the data is written to a single file.

Regards

Bhavesh

Former Member
0 Kudos

Hey

there is no set limit for proxies,infact as far as i know they will give better performance when compared to IDOC's or RFC for larger volume of data.

so dont worry and go ahead with proxies:)

thanx

Ahmad

Message was edited by:

Ahmad

Former Member
0 Kudos

Ahmad,

Thanks for your immediate reply. Can you provide some document which has been provided by SAP which states that ABAP proxy can handle Large volumes of data. As far as I know, Internal tables in ABAP have some limitations on their size.

Regards,

Shridhar.

Former Member
0 Kudos

ABAP Proxies don't have any limitations as such, its just that you should be reasonably good in ABAP

Ashish

Former Member
0 Kudos

Hey

have a look at the following

/people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies

also check the discussion in the bottom

Thanx

Ahmad