<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Batching multiple operation in a single request in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105655#M3230664</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As per the document &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-size: 10.0pt; font-family: inherit; color: #333333;"&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-29682"&gt;How To Batch Multiple Operations Into A Single Request&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-size: 10.0pt; font-family: inherit; color: #333333;"&gt;i cannot post the batch operation as mentioned in page.18, after sending the request it displays as &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tag"&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;"The server is refusing to process the request because the entity has a unsupported format" and the status code as 415-unsupported media type. kindly help me on this to resolve the problem. Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jan 2013 03:44:42 GMT</pubDate>
    <dc:creator>GowthamRaja</dc:creator>
    <dc:date>2013-01-24T03:44:42Z</dc:date>
    <item>
      <title>Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaq-p/9105648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I am doing a task as displayed below&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-29682" style="background-color: #ffffff; color: #3778c7; text-decoration: underline !important;"&gt;How To Batch Multiple Operations Into A Single Request&lt;/A&gt;&lt;/P&gt;&lt;P&gt;whether the multiple operation in a single request can be done only with Odata using $batch or there is any different approach. is it possble to do it using rfc methods as per link &lt;SPAN style="color: #ff0000;"&gt;[Content Deleted June 2013] &lt;/SPAN&gt;Kindly help me on this issue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jason Lax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2012 09:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaq-p/9105648</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2012-12-13T09:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105649#M3230658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand the question correctly, the $batch is the only operation that you can use to send multiple requests over one http call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is possible to use the RFC methods, but the $batch function was introduce in SP4 (I believe) so if you were running SAP NetWeaver Gateway 2.0 SP3 as in the How-to guide example, it wouldn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wayne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 20:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105649#M3230658</guid>
      <dc:creator>wbrown</dc:creator>
      <dc:date>2012-12-21T20:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105650#M3230659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;If you are using SUP ODP to consume Gateway REST services, here is some android saple code to send multiple request in single call. Please revert back if this is what you are looking for. I will share you the code to hadle the response as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ISDMBundleRequest batchRequests = new SDMBundleRequest();&lt;/P&gt;&lt;P&gt;String serviceDocPath = "&lt;A href="http://&amp;lt;host&amp;gt;port"&gt;http://&amp;lt;host&amp;gt;:port&lt;/A&gt; /sap/opu/sdata/iwfnd/RMTSAMPLEFLIGHT/";&lt;/P&gt;&lt;P&gt;ISDMRequest serviceDocRequest = buildRequest(serviceDocPath , (ISDMNetListener) this);&lt;/P&gt;&lt;P&gt;batchRequests.addRequest(serviceDocRequest);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ISDMRequest metaDataRequest = buildRequest(serviceDocPath + "$metadata",(ISDMNetListener) this);&lt;/P&gt;&lt;P&gt;batchRequests.addRequest(metaDataRequest);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;searchURL = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://"&gt;http://&lt;/A&gt;&lt;SPAN&gt; &amp;lt;host&amp;gt;:port/sap/opu/sdata/iwfnd/ RMTSAMPLEFLIGHT/carrierCollection";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ISDMRequest collectionDataRequest = buildRequest(searchURL, (ISDMNetListener)this);&lt;/P&gt;&lt;P&gt;batchRequests.addRequest(collectionDataRequest);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;getRequestmanager().makeRequest(batchRequests);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rohith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2012 03:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105650#M3230659</guid>
      <dc:creator>rohith_deraje</dc:creator>
      <dc:date>2012-12-22T03:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105651#M3230660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brown,&lt;/P&gt;&lt;P&gt;Thanks for your information. if you see the link i have attached, it will show the service RMTSAMPLEFLIGHT is not build on modelling like BOR, RFC, etc and we are using the latest version of SAP Netweaver gateway. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 07:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105651#M3230660</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2012-12-26T07:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105652#M3230661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohith,&lt;/P&gt;&lt;P&gt;Thanks for your information. i cannot get your information clearly, can you please make me clear on what you have posted. Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 07:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105652#M3230661</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2012-12-26T07:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105653#M3230662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;If I understand your question correctly, You are trying to send batch requests to gateway.&lt;/P&gt;&lt;P&gt;Batch =&amp;gt; Multiple operations in single call/requests. &lt;/P&gt;&lt;P&gt;The cample code I shared above is to send batch/bundle requests from android application to gateway using SUP.&lt;/P&gt;&lt;P&gt;SUP:- Sybase unwired platform which is a mobile platform ofering from SAP to develop online/offline mobile applications.&lt;/P&gt;&lt;P&gt;Is my undertsnading correct here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rohith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 08:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105653#M3230662</guid>
      <dc:creator>rohith_deraje</dc:creator>
      <dc:date>2012-12-26T08:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105654#M3230663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohith,&lt;/P&gt;&lt;P&gt;I am doing an android application that i am scanning a barcode and getting the value of the barocode.&lt;/P&gt;&lt;P&gt;My Requirement is:&lt;/P&gt;&lt;P&gt;I have to pass the value stored in a variable to get the details of a value from sap system backened table. How to do this Please guide me. Awaiting for your reply, Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2013 10:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105654#M3230663</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2013-01-07T10:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105655#M3230664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As per the document &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-size: 10.0pt; font-family: inherit; color: #333333;"&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-29682"&gt;How To Batch Multiple Operations Into A Single Request&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-size: 10.0pt; font-family: inherit; color: #333333;"&gt;i cannot post the batch operation as mentioned in page.18, after sending the request it displays as &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tag"&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;"The server is refusing to process the request because the entity has a unsupported format" and the status code as 415-unsupported media type. kindly help me on this to resolve the problem. Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 03:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105655#M3230664</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2013-01-24T03:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105656#M3230665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rowtham,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; can u post ur batch Request with its main header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jibin Joy &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 04:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105656#M3230665</guid>
      <dc:creator>jibin_joy</dc:creator>
      <dc:date>2013-01-24T04:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105657#M3230666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jibin,&lt;/P&gt;&lt;P&gt;this is my url : &lt;A class="active_link" href="http://CCH1WPSAP1.corp.hexaware.com:8014/sap/opu/odata/IWFND/RMTSAMPLEFLIGHT/$batch" title="http://CCH1WPSAP1.corp.hexaware.com:8014/sap/opu/odata/IWFND/RMTSAMPLEFLIGHT/$batch"&gt;http://server:port/sap/opu/odata/IWFND/RMTSAMPLEFLIGHT/$batch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;this is my header info: &lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/178043" width="450" /&gt;&lt;/P&gt;&lt;P&gt;this is my body content:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/178044" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 05:16:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105657#M3230666</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2013-01-24T05:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105658#M3230667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Hi Rowtham,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;"The server is refusing to process the request because the entity has a unsupported format" &lt;/SPAN&gt; error usually occur&amp;nbsp; when we provide invalid content Type .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Based on above post Content-type is fine even i tested it working properly as shown below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/178058" width="450" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Jibin Joy&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 06:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105658#M3230667</guid>
      <dc:creator>jibin_joy</dc:creator>
      <dc:date>2013-01-24T06:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105659#M3230668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jibin. then this is system side error right? what should i do to resolve it or provide me a document which is working fine. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 06:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105659#M3230668</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2013-01-24T06:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105660#M3230669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I Think .....its small pblm in Content Type:Content-Type: &lt;STRONG&gt;mutlipart&lt;/STRONG&gt;/mixed; boundary=batch (Wrong spelling) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its Content-Type: &lt;STRONG&gt;multipart&lt;/STRONG&gt;/mixed; boundary=batch &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 07:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105660#M3230669</guid>
      <dc:creator>jibin_joy</dc:creator>
      <dc:date>2013-01-24T07:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105661#M3230670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jibin,&lt;/P&gt;&lt;P&gt;Thanks for your help haven't noticed the spelling. now it is working fine. Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 07:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105661#M3230670</guid>
      <dc:creator>GowthamRaja</dc:creator>
      <dc:date>2013-01-24T07:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105662#M3230671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gowtham,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Its all depends on ur entity design .&lt;/P&gt;&lt;P&gt;- we can use GetEntitySet Method if Barcode information is also presented in same entity with help of $filter option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- If not available use custom operation &lt;A href="http://www.odata.org/documentation/uri-conventions#ServiceOperationParameters" title="http://www.odata.org/documentation/uri-conventions#ServiceOperationParameters"&gt;http://www.odata.org/documentation/uri-conventions#ServiceOperationParameters&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- one more option is to use "select" option which is also implemented in GETEntityset . I think this option is provided by SAP not from Odata Protocol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 08:06:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105662#M3230671</guid>
      <dc:creator>jibin_joy</dc:creator>
      <dc:date>2013-01-24T08:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105663#M3230672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can multiple batching operations be used for $filter and $select operations as well... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 09:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105663#M3230672</guid>
      <dc:creator>prasanna_prabhu2</dc:creator>
      <dc:date>2013-08-26T09:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105664#M3230673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasanna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the below link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-45504"&gt;http://scn.sap.com/docs/DOC-45504&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun Chembra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 09:12:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105664#M3230673</guid>
      <dc:creator>arunchembra1</dc:creator>
      <dc:date>2013-08-26T09:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105665#M3230674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the quick response. But in my case its always fetching the entity collection though i give the filter condition. The request body looks like below&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;--batch&lt;/P&gt;&lt;P&gt;Content-Type: application/http&lt;/P&gt;&lt;P&gt;Content-Transfer-Encoding: binary&lt;/P&gt;&lt;P&gt;Accept: application/xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CUSTOMERCollection/?$filter = COUNTRY eq 'AT'&amp;nbsp; HTTP/1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--batch&lt;/P&gt;&lt;P&gt;Content-Type: application/http&lt;/P&gt;&lt;P&gt;Content-Transfer-Encoding: binary&lt;/P&gt;&lt;P&gt;Accept: application/jsonxml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CUSTOMERCollection/?$filter = COUNTRY eq 'BE'&amp;nbsp; HTTP/1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--batch--&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Am i missing something here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if i keep the debugger point the table it_filter_select_options is empty. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me on this regard.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 11:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105665#M3230674</guid>
      <dc:creator>prasanna_prabhu2</dc:creator>
      <dc:date>2013-08-26T11:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105666#M3230675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Instead of batch request call single request and check you are getting data for C&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;USTOMERCollection/?$filter = COUNTRY eq 'AT'&amp;nbsp; HTTP/1.1&lt;/SPAN&gt; and &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CUSTOMERCollection/?$filter = COUNTRY eq 'BE'&amp;nbsp; HTTP/1.1 .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;2. While calling batch you are getting any erro?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;3. Have you &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 16px; background-color: #ffffff;"&gt;redefine&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 16px; font-family: 'Courier New', Courier, monospace; background-color: #ffffff; color: #333333;"&gt;/IWBEP/IF_MGW_APPL_SRV_RUNTIME~CHANGESET_BEGIN &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 16px; background-color: #ffffff;"&gt;and&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 16px; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 16px; font-family: 'Courier New', Courier, monospace; background-color: #ffffff; color: #333333;"&gt;/IWBEP/IF_MGW_APPL_SRV_RUNTIME~CHANGESET_END methods. If not please refer this link &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-45504" style="font-size: 12px; background-color: #ffffff; color: #3778c7;"&gt;http://scn.sap.com/docs/DOC-45504&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;4. Please check this link also &lt;A _jive_internal="true" href="https://answers.sap.com/thread/3403864"&gt;http://scn.sap.com/thread/3403864&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Arun Chembra&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 11:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105666#M3230675</guid>
      <dc:creator>arunchembra1</dc:creator>
      <dc:date>2013-08-26T11:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Batching multiple operation in a single request</title>
      <link>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105667#M3230676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i execute the requests separately its fetching the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am geeting an error "&lt;SPAN style="color: #000000; font-family: 'Times New Roman';"&gt;Invalid type for '$filter' system query option. Expected type is 'Edm.Boolean'&lt;/SPAN&gt;" when do a batch operation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have redefined both the changeset begin and change set end. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 13:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/batching-multiple-operation-in-a-single-request/qaa-p/9105667#M3230676</guid>
      <dc:creator>prasanna_prabhu2</dc:creator>
      <dc:date>2013-08-26T13:14:26Z</dc:date>
    </item>
  </channel>
</rss>

