cancel
Showing results for 
Search instead for 
Did you mean: 

Size of an IDOC

Former Member
0 Kudos

Hi All,

I want to know how much size & memory can be occupied by an IDOC when we triggering an custom IDOC.

In Detail:-

I am execting an custom IDOC from SAP R\3 to SAP XI.

I want to know how much size or memory can be occupied by the system.

Can we take more than 100 fields in an IDOC in different - different segments.

Kindly also suggest me details of payload fields

<SAP:MessageSizePayload>8689</SAP:MessageSizePayload>

<SAP:MessageSizeTotal>24235</SAP:MessageSizeTotal>

<SAP:PayloadSizeRequest>8689</SAP:PayloadSizeRequest>

<SAP:PayloadSizeRequestMap>0</SAP:PayloadSizeRequestMap>

<SAP:PayloadSizeResponse>0</SAP:PayloadSizeResponse>

<SAP:PayloadSizeResponseMap>0</SAP:PayloadSizeResponseMap>

Regards,

Narendra

Accepted Solutions (1)

Accepted Solutions (1)

former_member185881
Active Participant
0 Kudos

Hi

It all depends on XI server configuration.

You can read XI tunning guide https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/soa-middleware/pro...

Ideally Message size should be 1 to 5 MB. (You can make as many segments u want but it should lie in between the size 1 to 5 MB not more then that).

<SAP:MessageSizePayload>8689</SAP:MessageSizePayload>

<SAP:MessageSizeTotal>24235</SAP:MessageSizeTotal>

The Message Size Payload describe the size of the payload.

The Message Size Total describe the total message size (header + payload)

<SAP:PayloadSizeRequest>8689</SAP:PayloadSizeRequest>

<SAP:PayloadSizeRequestMap>0</SAP:PayloadSizeRequestMap>

The above two lines describe the payload size before and after the mapping.

In your given case mapping reduced the size of the payload. (here it is showing 0 and i believe this is the prob it should not be 0)

<SAP:PayloadSizeResponse>0</SAP:PayloadSizeResponse>

<SAP:PayloadSizeResponseMap>0</SAP:PayloadSizeResponseMap>

The above two lines determine the size of the response message that is sent back to PI before and after the response mapping for synchronous messages.

you can aslo check for details = http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0b96675-87cf-2c10-b489-dee0ac03f...

Regards

Dheeraj kumar

Edited by: Dheeraj Kumar on May 11, 2010 4:15 PM

Answers (1)

Answers (1)

former_member181962
Active Contributor
0 Kudos

Did you check in SXMB_MONI?

SXMB_MONI->Inbound Message or Receiver Grouping->SOAP Header->Runtime?

Regards,

Ravi

Former Member
0 Kudos

Hi,

What is the difference in all these parameters.

<SAP:MessageSizePayload>8689</SAP:MessageSizePayload>

<SAP:MessageSizeTotal>24235</SAP:MessageSizeTotal>

<SAP:PayloadSizeRequest>8689</SAP:PayloadSizeRequest>

<SAP:PayloadSizeRequestMap>0</SAP:PayloadSizeRequestMap>

<SAP:PayloadSizeResponse>0</SAP:PayloadSizeResponse>

<SAP:PayloadSizeResponseMap>0</SAP:PayloadSizeResponseMap>

What is the unit of all these sizes.

Regards,

Narendra

former_member181962
Active Contributor
0 Kudos

You can refer page 53 of this document:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0b96675-87cf-2c10-b489-dee0ac03f...

UNIT is BYTES for all of these.

Regards,

Ravi

Edited by: Ravi Kanth Talagana on May 11, 2010 12:43 PM