<?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: Idoc data modified in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409726#M537405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;From what I understand,I think you are trying to modify a segemnt with some data.&lt;/P&gt;&lt;P&gt;I also assume that you are working in an include.&lt;/P&gt;&lt;P&gt;Anyway,to do the modification what you can do is loop at the edidd section of the idoc.Then when the segment name is the segment name where you want modification,fill the data in the work area of the segment and then modify the idoc edidd section.&lt;/P&gt;&lt;P&gt;To understand it better please see the piece of code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at edidd into lw_edidd.&lt;/P&gt;&lt;P&gt;lv_index = sy-index.&lt;/P&gt;&lt;P&gt;when lw_eiddd-segnam = &amp;lt;your segment name&amp;gt;.&lt;/P&gt;&lt;P&gt;lw_segment = lw_edidd-sdata.&lt;/P&gt;&lt;P&gt;clear lw_segment.&lt;/P&gt;&lt;P&gt;lw_segment-f1 = value.&lt;/P&gt;&lt;P&gt;lw_segment-f2 = value.&lt;/P&gt;&lt;P&gt;and so on.&lt;/P&gt;&lt;P&gt;move segment name to &amp;lt;work are type edidd-segnam&amp;gt;.&lt;/P&gt;&lt;P&gt;move lw_segment to &amp;lt;work are type edidd-sdata&amp;gt;.&lt;/P&gt;&lt;P&gt;modify edidd from work are type edidd&lt;/P&gt;&lt;P&gt;index lv_index&lt;/P&gt;&lt;P&gt;transporting segnam sdata.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will bw useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2007 12:53:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-22T12:53:05Z</dc:date>
    <item>
      <title>Idoc data modified</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409724#M537403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know how to send in an idoc only the modified data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 12:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409724#M537403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T12:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc data modified</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409725#M537404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean, if you change the text description of the material, i want an idoc with only this field, i don´t want to send all the material data again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 12:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409725#M537404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T12:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Idoc data modified</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409726#M537405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;From what I understand,I think you are trying to modify a segemnt with some data.&lt;/P&gt;&lt;P&gt;I also assume that you are working in an include.&lt;/P&gt;&lt;P&gt;Anyway,to do the modification what you can do is loop at the edidd section of the idoc.Then when the segment name is the segment name where you want modification,fill the data in the work area of the segment and then modify the idoc edidd section.&lt;/P&gt;&lt;P&gt;To understand it better please see the piece of code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at edidd into lw_edidd.&lt;/P&gt;&lt;P&gt;lv_index = sy-index.&lt;/P&gt;&lt;P&gt;when lw_eiddd-segnam = &amp;lt;your segment name&amp;gt;.&lt;/P&gt;&lt;P&gt;lw_segment = lw_edidd-sdata.&lt;/P&gt;&lt;P&gt;clear lw_segment.&lt;/P&gt;&lt;P&gt;lw_segment-f1 = value.&lt;/P&gt;&lt;P&gt;lw_segment-f2 = value.&lt;/P&gt;&lt;P&gt;and so on.&lt;/P&gt;&lt;P&gt;move segment name to &amp;lt;work are type edidd-segnam&amp;gt;.&lt;/P&gt;&lt;P&gt;move lw_segment to &amp;lt;work are type edidd-sdata&amp;gt;.&lt;/P&gt;&lt;P&gt;modify edidd from work are type edidd&lt;/P&gt;&lt;P&gt;index lv_index&lt;/P&gt;&lt;P&gt;transporting segnam sdata.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will bw useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 12:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-data-modified/m-p/2409726#M537405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T12:53:05Z</dc:date>
    </item>
  </channel>
</rss>

