<?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>topic Re: Deep Insert in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042124#M1968046</link>
    <description>&lt;P&gt;Dear Mahesh,&lt;/P&gt;&lt;P&gt;At first, thanks for your prompt reply and help ! I have converted the xml to json as below. I didn't change codes yet but encountered the different return code 400 ... the redefine is also listed as below. Thank you.&lt;/P&gt;&lt;P&gt;SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L0S31 {
font-style: italic;
color: #808080;
}
.L0S33 {
color: #4DA619;
}
.L0S52 {
color: #0000FF;
}
.L0S55 {
color: #800080;
}
.L0S70 {
color: #808080;
}&lt;/P&gt;&lt;P&gt; method /IWBEP/IF_MGW_APPL_SRV_RUNTIME~CREATE_DEEP_ENTITY.&lt;BR /&gt;
**TRY.&lt;BR /&gt;
*CALL METHOD SUPER-&amp;gt;/IWBEP/IF_MGW_APPL_SRV_RUNTIME~CREATE_DEEP_ENTITY&lt;BR /&gt;
* EXPORTING&lt;BR /&gt;
** IV_ENTITY_NAME =&lt;BR /&gt;
** IV_ENTITY_SET_NAME =&lt;BR /&gt;
** IV_SOURCE_NAME =&lt;BR /&gt;
* IO_DATA_PROVIDER =&lt;BR /&gt;
** IT_KEY_TAB =&lt;BR /&gt;
** IT_NAVIGATION_PATH =&lt;BR /&gt;
* IO_EXPAND =&lt;BR /&gt;
** IO_TECH_REQUEST_CONTEXT =&lt;BR /&gt;
** IMPORTING&lt;BR /&gt;
** ER_DEEP_ENTITY =&lt;BR /&gt;
* .&lt;BR /&gt;
** CATCH /IWBEP/CX_MGW_BUSI_EXCEPTION .&lt;BR /&gt;
** CATCH /IWBEP/CX_MGW_TECH_EXCEPTION .&lt;BR /&gt;
**ENDTRY.&lt;BR /&gt;
&lt;BR /&gt;
 DATA custome_create_deep_entity TYPE&lt;BR /&gt;
 ZCL_ZGW_DEEP_INSERT_MPC_EXT=&amp;gt;ts_deep_entity.&lt;BR /&gt;
&lt;BR /&gt;
 CASE iv_entity_set_name.&lt;BR /&gt;
 WHEN 'HeaderSet'.&lt;BR /&gt;
 CALL METHOD me-&amp;gt;custome_create_deep_entity&lt;BR /&gt;
 EXPORTING&lt;BR /&gt;
 iv_entity_name = iv_entity_name&lt;BR /&gt;
 iv_entity_set_name = iv_entity_set_name&lt;BR /&gt;
 iv_source_name = iv_source_name&lt;BR /&gt;
 it_key_tab = it_key_tab&lt;BR /&gt;
 it_navigation_path = it_navigation_path&lt;BR /&gt;
 io_expand = io_expand&lt;BR /&gt;
 io_tech_request_context = io_tech_request_context&lt;BR /&gt;
 io_data_provider = io_data_provider&lt;BR /&gt;
 IMPORTING&lt;BR /&gt;
 er_deep_entity = custome_create_deep_entity.&lt;BR /&gt;
&lt;BR /&gt;
 copy_data_to_ref( EXPORTING is_data = custome_create_deep_entity&lt;BR /&gt;
 CHANGING cr_data = er_deep_entity ).&lt;BR /&gt;
 ENDCASE.&lt;BR /&gt;
 endmethod.&lt;/P&gt;&lt;P&gt;SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L1S33 {
color: #009300;
}&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;
 "atom:entry": {&lt;BR /&gt;
 "-xmlns:atom": "http://www.w3.org/2005/Atom",&lt;BR /&gt;
 "-xmlns:d": "http://schemas.microsoft.com/ado/2007/08/dataservices",&lt;BR /&gt;
 "-xmlns:m": "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata",&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:Id": "100",&lt;BR /&gt;
 "d:Name": "Test",&lt;BR /&gt;
 "d:Name2": "Test Header1"&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 "atom:link": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "-rel": "http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemO",&lt;BR /&gt;
 "-type": "application/atom+xml;type=feed",&lt;BR /&gt;
 "-title": "ZGW_DEEP_INSERT_SRV.Header_ItemO",&lt;BR /&gt;
 "m:inline": {&lt;BR /&gt;
 "atom:feed": {&lt;BR /&gt;
 "atom:entry": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdO": "10",&lt;BR /&gt;
 "d:NameO": "Test Item11"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdO": "20",&lt;BR /&gt;
 "d:NameO": "Test Item12"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "-rel": "http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemT",&lt;BR /&gt;
 "-type": "application/atom+xml;type=feed",&lt;BR /&gt;
 "-title": "ZGW_DEEP_INSERT_SRV.Header_ItemT",&lt;BR /&gt;
 "m:inline": {&lt;BR /&gt;
 "atom:feed": {&lt;BR /&gt;
 "atom:entry": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdT": "10",&lt;BR /&gt;
 "d:NameT": "Test Item21"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdT": "20",&lt;BR /&gt;
 "d:NameT": "Test Item22"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
}&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2019 09:27:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-12-03T09:27:41Z</dc:date>
    <item>
      <title>Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042122#M1968044</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
  &lt;P&gt;I encountered status code = 501 when I tried to use deep insert. How to fix the issue ? Any idea ? Thank you.&lt;/P&gt;
  &lt;P&gt;Return message&lt;/P&gt;
  &lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt; -&amp;lt;error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"&amp;gt; &amp;lt;code&amp;gt;/IWBEP/CM_MGW_RT/021&amp;lt;/code&amp;gt; &amp;lt;message xml:lang="en"&amp;gt;Method 'HEADERSET_CREATE_ENTITY' not implemented in data provider class.&amp;lt;/message&amp;gt; -&amp;lt;innererror&amp;gt; -&amp;lt;application&amp;gt; &amp;lt;component_id/&amp;gt; &amp;lt;service_namespace&amp;gt;/SAP/&amp;lt;/service_namespace&amp;gt; &amp;lt;service_id&amp;gt;ZGW_DEEP_INSERT_SRV&amp;lt;/service_id&amp;gt; &amp;lt;service_version&amp;gt;0001&amp;lt;/service_version&amp;gt; &amp;lt;/application&amp;gt; &amp;lt;transactionid&amp;gt;0DB39B666C760080E005DB523AADD266&amp;lt;/transactionid&amp;gt; &amp;lt;timestamp&amp;gt;20191203083702.0093810&amp;lt;/timestamp&amp;gt; -&amp;lt;Error_Resolution&amp;gt; &amp;lt;SAP_Transaction&amp;gt;Run transaction /IWFND/ERROR_LOG on SAP Gateway hub system and search for entries with the timestamp above for more details&amp;lt;/SAP_Transaction&amp;gt; &amp;lt;SAP_Note&amp;gt;See SAP Note 1797736 for error analysis (https://service.sap.com/sap/support/notes/1797736)&amp;lt;/SAP_Note&amp;gt; &amp;lt;/Error_Resolution&amp;gt; -&amp;lt;errordetails&amp;gt; -&amp;lt;errordetail&amp;gt; &amp;lt;code&amp;gt;/IWBEP/CX_MGW_NOT_IMPL_EXC&amp;lt;/code&amp;gt; &amp;lt;message&amp;gt;Method 'HEADERSET_CREATE_ENTITY' not implemented in data provider class&amp;lt;/message&amp;gt; &amp;lt;propertyref/&amp;gt; &amp;lt;severity&amp;gt;error&amp;lt;/severity&amp;gt; &amp;lt;target/&amp;gt; &amp;lt;/errordetail&amp;gt; &amp;lt;/errordetails&amp;gt; &amp;lt;/innererror&amp;gt; &amp;lt;/error&amp;gt;&lt;/P&gt;
  &lt;P&gt;payload&lt;/P&gt;
  &lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt; &amp;lt;atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"&amp;gt; &amp;lt;atom:content type="application/xml"&amp;gt; &amp;lt;m:properties&amp;gt; &amp;lt;d:Id&amp;gt;100&amp;lt;/d:Id&amp;gt; &amp;lt;d:Name&amp;gt;Test&amp;lt;/d:Name&amp;gt; &amp;lt;d:Name2&amp;gt;Test Header1&amp;lt;/d:Name2&amp;gt; &amp;lt;/m:properties&amp;gt; &amp;lt;/atom:content&amp;gt; &amp;lt;atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemO" type="application/atom+xml;type=feed" title="ZGW_DEEP_INSERT_SRV.Header_ItemO"&amp;gt; &amp;lt;m:inline&amp;gt; &amp;lt;atom:feed&amp;gt; &amp;lt;atom:entry&amp;gt; &amp;lt;atom:content type="application/xml"&amp;gt; &amp;lt;m:properties&amp;gt; &amp;lt;d:IdO&amp;gt;10&amp;lt;/d:IdO&amp;gt; &amp;lt;d:NameO&amp;gt;Test Item11&amp;lt;/d:NameO&amp;gt; &amp;lt;/m:properties&amp;gt; &amp;lt;/atom:content&amp;gt; &amp;lt;/atom:entry&amp;gt; &amp;lt;atom:entry&amp;gt; &amp;lt;atom:content type="application/xml"&amp;gt; &amp;lt;m:properties&amp;gt; &amp;lt;d:IdO&amp;gt;20&amp;lt;/d:IdO&amp;gt; &amp;lt;d:NameO&amp;gt;Test Item12&amp;lt;/d:NameO&amp;gt; &amp;lt;/m:properties&amp;gt; &amp;lt;/atom:content&amp;gt; &amp;lt;/atom:entry&amp;gt; &amp;lt;/atom:feed&amp;gt; &amp;lt;/m:inline&amp;gt; &amp;lt;/atom:link&amp;gt; &amp;lt;atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemT" type="application/atom+xml;type=feed" title="ZGW_DEEP_INSERT_SRV.Header_ItemT"&amp;gt; &amp;lt;m:inline&amp;gt; &amp;lt;atom:feed&amp;gt; &amp;lt;atom:entry&amp;gt; &amp;lt;atom:content type="application/xml"&amp;gt; &amp;lt;m:properties&amp;gt; &amp;lt;d:IdT&amp;gt;10&amp;lt;/d:IdT&amp;gt; &amp;lt;d:NameT&amp;gt;Test Item21&amp;lt;/d:NameT&amp;gt; &amp;lt;/m:properties&amp;gt; &amp;lt;/atom:content&amp;gt; &amp;lt;/atom:entry&amp;gt; &amp;lt;atom:entry&amp;gt; &amp;lt;atom:content type="application/xml"&amp;gt; &amp;lt;m:properties&amp;gt; &amp;lt;d:IdT&amp;gt;20&amp;lt;/d:IdT&amp;gt; &amp;lt;d:NameT&amp;gt;Test Item22&amp;lt;/d:NameT&amp;gt; &amp;lt;/m:properties&amp;gt; &amp;lt;/atom:content&amp;gt; &amp;lt;/atom:entry&amp;gt; &amp;lt;/atom:feed&amp;gt; &amp;lt;/m:inline&amp;gt; &amp;lt;/atom:link&amp;gt; &amp;lt;/atom:entry&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 08:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042122#M1968044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-03T08:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042123#M1968045</link>
      <description>&lt;P&gt;I think even though you have redefined the create deep entity method, it is still calling the actual header_create_entity method, which is not implemented and so the error.&lt;/P&gt;&lt;P&gt;So what you can do is.&lt;/P&gt;&lt;P&gt;1. Check if you have redefined the method : /iwbep/if_mgw_appl_srv_runtime~create_deep_entity&lt;/P&gt;&lt;P&gt;2. Check if the payload is correct, as I can see it is in the XML format and So I didn't check it thoroughly.  i would suggest you to pass it in the json format which will be lot easier to understand and validate.&lt;/P&gt;&lt;P&gt;Eg. header param application type should be json "Content-Type: application/json"&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;{
"prop1":"value1",
"navigation1": [
      {
       "prop1":"value1"
      }
    ]
}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 09:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042123#M1968045</guid>
      <dc:creator>maheshpalavalli</dc:creator>
      <dc:date>2019-12-03T09:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042124#M1968046</link>
      <description>&lt;P&gt;Dear Mahesh,&lt;/P&gt;&lt;P&gt;At first, thanks for your prompt reply and help ! I have converted the xml to json as below. I didn't change codes yet but encountered the different return code 400 ... the redefine is also listed as below. Thank you.&lt;/P&gt;&lt;P&gt;SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L0S31 {
font-style: italic;
color: #808080;
}
.L0S33 {
color: #4DA619;
}
.L0S52 {
color: #0000FF;
}
.L0S55 {
color: #800080;
}
.L0S70 {
color: #808080;
}&lt;/P&gt;&lt;P&gt; method /IWBEP/IF_MGW_APPL_SRV_RUNTIME~CREATE_DEEP_ENTITY.&lt;BR /&gt;
**TRY.&lt;BR /&gt;
*CALL METHOD SUPER-&amp;gt;/IWBEP/IF_MGW_APPL_SRV_RUNTIME~CREATE_DEEP_ENTITY&lt;BR /&gt;
* EXPORTING&lt;BR /&gt;
** IV_ENTITY_NAME =&lt;BR /&gt;
** IV_ENTITY_SET_NAME =&lt;BR /&gt;
** IV_SOURCE_NAME =&lt;BR /&gt;
* IO_DATA_PROVIDER =&lt;BR /&gt;
** IT_KEY_TAB =&lt;BR /&gt;
** IT_NAVIGATION_PATH =&lt;BR /&gt;
* IO_EXPAND =&lt;BR /&gt;
** IO_TECH_REQUEST_CONTEXT =&lt;BR /&gt;
** IMPORTING&lt;BR /&gt;
** ER_DEEP_ENTITY =&lt;BR /&gt;
* .&lt;BR /&gt;
** CATCH /IWBEP/CX_MGW_BUSI_EXCEPTION .&lt;BR /&gt;
** CATCH /IWBEP/CX_MGW_TECH_EXCEPTION .&lt;BR /&gt;
**ENDTRY.&lt;BR /&gt;
&lt;BR /&gt;
 DATA custome_create_deep_entity TYPE&lt;BR /&gt;
 ZCL_ZGW_DEEP_INSERT_MPC_EXT=&amp;gt;ts_deep_entity.&lt;BR /&gt;
&lt;BR /&gt;
 CASE iv_entity_set_name.&lt;BR /&gt;
 WHEN 'HeaderSet'.&lt;BR /&gt;
 CALL METHOD me-&amp;gt;custome_create_deep_entity&lt;BR /&gt;
 EXPORTING&lt;BR /&gt;
 iv_entity_name = iv_entity_name&lt;BR /&gt;
 iv_entity_set_name = iv_entity_set_name&lt;BR /&gt;
 iv_source_name = iv_source_name&lt;BR /&gt;
 it_key_tab = it_key_tab&lt;BR /&gt;
 it_navigation_path = it_navigation_path&lt;BR /&gt;
 io_expand = io_expand&lt;BR /&gt;
 io_tech_request_context = io_tech_request_context&lt;BR /&gt;
 io_data_provider = io_data_provider&lt;BR /&gt;
 IMPORTING&lt;BR /&gt;
 er_deep_entity = custome_create_deep_entity.&lt;BR /&gt;
&lt;BR /&gt;
 copy_data_to_ref( EXPORTING is_data = custome_create_deep_entity&lt;BR /&gt;
 CHANGING cr_data = er_deep_entity ).&lt;BR /&gt;
 ENDCASE.&lt;BR /&gt;
 endmethod.&lt;/P&gt;&lt;P&gt;SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L1S33 {
color: #009300;
}&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;
 "atom:entry": {&lt;BR /&gt;
 "-xmlns:atom": "http://www.w3.org/2005/Atom",&lt;BR /&gt;
 "-xmlns:d": "http://schemas.microsoft.com/ado/2007/08/dataservices",&lt;BR /&gt;
 "-xmlns:m": "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata",&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:Id": "100",&lt;BR /&gt;
 "d:Name": "Test",&lt;BR /&gt;
 "d:Name2": "Test Header1"&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 "atom:link": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "-rel": "http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemO",&lt;BR /&gt;
 "-type": "application/atom+xml;type=feed",&lt;BR /&gt;
 "-title": "ZGW_DEEP_INSERT_SRV.Header_ItemO",&lt;BR /&gt;
 "m:inline": {&lt;BR /&gt;
 "atom:feed": {&lt;BR /&gt;
 "atom:entry": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdO": "10",&lt;BR /&gt;
 "d:NameO": "Test Item11"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdO": "20",&lt;BR /&gt;
 "d:NameO": "Test Item12"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "-rel": "http://schemas.microsoft.com/ado/2007/08/dataservices/related/HeadItemT",&lt;BR /&gt;
 "-type": "application/atom+xml;type=feed",&lt;BR /&gt;
 "-title": "ZGW_DEEP_INSERT_SRV.Header_ItemT",&lt;BR /&gt;
 "m:inline": {&lt;BR /&gt;
 "atom:feed": {&lt;BR /&gt;
 "atom:entry": [&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdT": "10",&lt;BR /&gt;
 "d:NameT": "Test Item21"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 },&lt;BR /&gt;
 {&lt;BR /&gt;
 "atom:content": {&lt;BR /&gt;
 "-type": "application/xml",&lt;BR /&gt;
 "m:properties": {&lt;BR /&gt;
 "d:IdT": "20",&lt;BR /&gt;
 "d:NameT": "Test Item22"&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 }&lt;BR /&gt;
 ]&lt;BR /&gt;
 }&lt;BR /&gt;
}&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 09:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042124#M1968046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-03T09:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042125#M1968047</link>
      <description>&lt;P&gt;return message is &lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
-&amp;lt;error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"&amp;gt;
&amp;lt;code&amp;gt;CX_ST_MATCH_ELEMENT/544FAE4641562346A1372144E7396586&amp;lt;/code&amp;gt;
&amp;lt;message xml:lang="en"&amp;gt;System expected the element '{http://www.w3.org/2005/Atom}entry'&amp;lt;/message&amp;gt;
-&amp;lt;innererror&amp;gt;
-&amp;lt;application&amp;gt;
&amp;lt;component_id/&amp;gt;
&amp;lt;service_namespace&amp;gt;/SAP/&amp;lt;/service_namespace&amp;gt;
&amp;lt;service_id&amp;gt;ZGW_DEEP_INSERT_SRV&amp;lt;/service_id&amp;gt;
&amp;lt;service_version&amp;gt;0001&amp;lt;/service_version&amp;gt;
&amp;lt;/application&amp;gt;
&amp;lt;transactionid&amp;gt;0DB39B666C760080E005DB523AADD4A9&amp;lt;/transactionid&amp;gt;
&amp;lt;timestamp&amp;gt;20191203092932.2550520&amp;lt;/timestamp&amp;gt;
-&amp;lt;Error_Resolution&amp;gt;
&amp;lt;SAP_Transaction&amp;gt;Run transaction /IWFND/ERROR_LOG on SAP Gateway hub system and search for entries with the timestamp above for more details&amp;lt;/SAP_Transaction&amp;gt;
&amp;lt;SAP_Note&amp;gt;See SAP Note 1797736 for error analysis (https://service.sap.com/sap/support/notes/1797736)&amp;lt;/SAP_Note&amp;gt;
&amp;lt;/Error_Resolution&amp;gt;
&amp;lt;errordetails/&amp;gt;
&amp;lt;/innererror&amp;gt;
&amp;lt;/error&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 09:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042125#M1968047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-03T09:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042126#M1968048</link>
      <description>&lt;P&gt;Actually, I followed the following information but encountered the above error ...&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2014/04/27/step-by-step-development-guide-for-createdeepentity-operation/"&gt;https://blogs.sap.com/2014/04/27/step-by-step-development-guide-for-createdeepentity-operation/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 09:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042126#M1968048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-03T09:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042127#M1968049</link>
      <description>&lt;P&gt;Dont pass like that, Just pass the data the way I mentioned, like replace prop1 name with ur property and navigation1 with your navigation name and test.&lt;/P&gt;&lt;P&gt;Small tip: You can click on "Comment" for providing more information(That way I will get notification as well). and "Answer" is only dedicated to post solutions.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042127#M1968049</guid>
      <dc:creator>maheshpalavalli</dc:creator>
      <dc:date>2019-12-03T10:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042128#M1968050</link>
      <description>&lt;P&gt;The URL for normal post and deep post call will be same and the system will differentiate based on payload. so cross check payload&lt;/P&gt;&lt;P&gt;make sure you replace below text from my payload.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;replace Your Domain:PORT with your domain and port.&lt;/LI&gt;&lt;LI&gt;ZTEST_SRV with your service name.&lt;/LI&gt;&lt;LI&gt;Property1,Property2 with your property names .&lt;/LI&gt;&lt;LI&gt;NAV_SAVE to your navigation name. &lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;atom:entry
xmlns:atom="http://www.w3.org/2005/Atom"
xml:base="http://Your Domain:PORT/sap/opu/odata/sap/ZTEST_SRV/"
xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"&amp;gt;
&amp;lt;atom:content type="application/xml"&amp;gt;
  &amp;lt;m:properties&amp;gt;
    &amp;lt;d:Property1&amp;gt;100000043&amp;lt;/d:Property1&amp;gt;
   &amp;lt;/m:properties&amp;gt;
&amp;lt;/atom:content&amp;gt;
&amp;lt;atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/NAV_SAVE" type="application/atom+xml;type=feed"
title="NAV_SAVE"&amp;gt;
  &amp;lt;m:inline&amp;gt;
   &amp;lt;atom:feed&amp;gt;
    &amp;lt;atom:entry&amp;gt;
     &amp;lt;atom:content type="application/xml"&amp;gt;
      &amp;lt;m:properties&amp;gt;
          &amp;lt;d:Property1&amp;gt;100000043&amp;lt;/d:Property1&amp;gt;
          &amp;lt;d:Property2&amp;gt;3900&amp;lt;/d:Property2&amp;gt;
          &amp;lt;d:Property3&amp;gt;REMD&amp;lt;/d:Property3&amp;gt;
          &amp;lt;d:Property4&amp;gt;MEC&amp;lt;/d:Property4&amp;gt;
          &amp;lt;d:Property5&amp;gt;3926&amp;lt;/d:Property5&amp;gt;
        &amp;lt;/m:properties&amp;gt;
     &amp;lt;/atom:content&amp;gt;
    &amp;lt;/atom:entry&amp;gt;
   &amp;lt;/atom:feed&amp;gt;
  &amp;lt;/m:inline&amp;gt;
&amp;lt;/atom:link&amp;gt;
&amp;lt;/atom:entry&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042128#M1968050</guid>
      <dc:creator>cdprasanna</dc:creator>
      <dc:date>2019-12-03T10:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Insert</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042129#M1968051</link>
      <description>&lt;P&gt;Dear Prasanna,&lt;/P&gt;&lt;P&gt;I have solved the previous error using your suggestion. Thank you so much !&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 01:12:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-insert/m-p/12042129#M1968051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-04T01:12:26Z</dc:date>
    </item>
  </channel>
</rss>

