<?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: Changing the data in IDOC segment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460953#M1057212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: WA_E1IDKU2 TYPE E1IDKU2.

IF SEGMENT_NAME = 'E1IDKU2'.

MOVE SEGMENT_DATA-SDATA TO WA_E1IDKU2.
*Change the value E1IDKU2-BUSFUN.

ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2008 08:36:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-05T08:36:46Z</dc:date>
    <item>
      <title>Changing the data in IDOC segment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460951#M1057210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Guru's,&lt;/P&gt;&lt;P&gt;      I am working on an user exit, through which I need to change the data in segment data.&lt;/P&gt;&lt;P&gt;      The segment name is E1IDKU2. In this I am having three fields. I want to change the second&lt;/P&gt;&lt;P&gt;      field data. the exit function module name is EXIT_SAPLIEDP_001. Can any body help me how to &lt;/P&gt;&lt;P&gt;      do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF SEGMENT_NAME = 'E1IDKU2'.&lt;/P&gt;&lt;P&gt;          IF THE FIELD NAME IS 'BUSFUN' THEN I WANT TO CHANGE THE DATA of this field.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;       can any body help me with some sample data for this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460951#M1057210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the data in IDOC segment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460952#M1057211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_E1IDKU2 type E1IDKU2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at EDIDD_TABLE where segnam = 'E1IDKU2'.&lt;/P&gt;&lt;P&gt;   wa_E1IDKU2 = EDIDD_TABLE-SDATA.&lt;/P&gt;&lt;P&gt;   modify data in wa_E1IDKU2 as per ur requirement.&lt;/P&gt;&lt;P&gt;   EDIDD_TABLE-SDATA = wa_E1IDKU2. &lt;/P&gt;&lt;P&gt;   modify EDIDD_TABLE.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Amol Lohade&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amol Lohade on Sep 5, 2008 10:28 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amol Lohade on Sep 5, 2008 10:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460952#M1057211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the data in IDOC segment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460953#M1057212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: WA_E1IDKU2 TYPE E1IDKU2.

IF SEGMENT_NAME = 'E1IDKU2'.

MOVE SEGMENT_DATA-SDATA TO WA_E1IDKU2.
*Change the value E1IDKU2-BUSFUN.

ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-data-in-idoc-segment/m-p/4460953#M1057212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:36:46Z</dc:date>
    </item>
  </channel>
</rss>

