<?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 Extension problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642138#M285966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I pulled up the control record and all it has is Basic Type DELFOR01, Message Type DELINS.  Extension and IDoc Type are blank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Oct 2006 22:13:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-30T22:13:45Z</dc:date>
    <item>
      <title>IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642128#M285956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Created new segment with 2 fields in WE31.&lt;/P&gt;&lt;P&gt;2. Created new extension based on DELFOR01 and added my new segment from step 1 to it in WE30.&lt;/P&gt;&lt;P&gt;3. In WE82 I added a new entry with Message type DELINS, Basic Type delfor01, and my extension from step 2.&lt;/P&gt;&lt;P&gt;4. In CMOD I created an enhancement project and activated the user exit.&lt;/P&gt;&lt;P&gt;5. code from SE38:&lt;/P&gt;&lt;P&gt;data: segprice type zxxxxx,&lt;/P&gt;&lt;P&gt;case int_edidd-segnam.&lt;/P&gt;&lt;P&gt;  when 'E1EDK09'.&lt;/P&gt;&lt;P&gt;    clear int_edidd.&lt;/P&gt;&lt;P&gt;    int_edidd-segnam = 'Zxxxx'.&lt;/P&gt;&lt;P&gt;    segprice-field1 = xekko-xxxxx. &lt;/P&gt;&lt;P&gt;    segprice-field2 = xekpo-xxxxx. &lt;/P&gt;&lt;P&gt;    move segprice to int_edidd-sdata.&lt;/P&gt;&lt;P&gt;    append int_edidd.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything works great to this point.&lt;/P&gt;&lt;P&gt;My segment shows up when i look at it in BD87, and the data is as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is the structure is flat.  When my segment is present all idoc hierarchy is flattened, which causes syntax errors.  Any help is greatly appreciated, I have been working on this for several weeks and found nothing.&lt;/P&gt;&lt;P&gt;structure should be &lt;/P&gt;&lt;P&gt;-&amp;gt;E1EDK09 level 1 &lt;/P&gt;&lt;P&gt;    E1EDKA1 level 2&lt;/P&gt;&lt;P&gt;    Zxxxxxx custom segment level 2&lt;/P&gt;&lt;P&gt;  -&amp;gt;E1EDP10 level 2&lt;/P&gt;&lt;P&gt;      E1EDP16 level 3&lt;/P&gt;&lt;P&gt;The structure with my segment is&lt;/P&gt;&lt;P&gt;E1EDK09 level 1 &lt;/P&gt;&lt;P&gt;E1EDKA1 level 1&lt;/P&gt;&lt;P&gt;Zxxxxxx custom segment level 1&lt;/P&gt;&lt;P&gt;E1EDP10 level 1&lt;/P&gt;&lt;P&gt;E1EDP16&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642128#M285956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T20:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642129#M285957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you expecting the custom segment?  The code you provded appears to attempt to place it immediately after E1EDK09, but you list it after E1EDKA1 at the end of your post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Versioning can cause syntax errors.  You'll notice segments are released per a specific SAP version.  If the Seg. release in IDoc type is set to another version, the syntax check will fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI - Any time a syntax error occurs, the resulting IDoc is displayed without its hierarchical format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 21:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642129#M285957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T21:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642130#M285958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the following sample codes (in bold) that you may need to add in your user exits to determine proper IDoc segment hierarchy/level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR I_EDIDD.
I_EDIDD-MANDT  = SY-MANDT.
I_EDIDD-SEGNUM = '000001'.
I_EDIDD-SEGNAM = 'E1EDL20'.
&amp;lt;b&amp;gt;I_EDIDD-PSGNUM = '000000'.
I_EDIDD-HLEVEL = '02'.
I_EDIDD-DTINT2 = '1000'.&amp;lt;/b&amp;gt;
I_EDIDD-SDATA  = L_E1EDL20.
APPEND I_EDIDD.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 21:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642130#M285958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T21:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642131#M285959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The segment needs to be at level 2.  In WE30 it is the first child segment of E1EDK09.  From that, it looks like it was added in the order it shows up in the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The version for Message type DELINS basic type DELFOR01 is 30A.  The entry I made to add my extension was 30A as well.  Is that what you are refering to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the flat hierarchy does not appear to indicate an issue, here are the exact errors:&lt;/P&gt;&lt;P&gt;1. The segment Zxxxx does not occur at the current level of the basic type DELFOR01 (extension ).&lt;/P&gt;&lt;P&gt;2. The segment group E1EDP10 has the attribute 'Mandatory' in the syntax description of the basic type DELFOR01 (customer enhancement ). &lt;/P&gt;&lt;P&gt;3. The segment E1EDKA1 has the attribute 'Mandatory' in the syntax description of the basic type DELFOR01 (customer enhancement ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both E1EDP10, and E1EDKA1 exist with data in the data records folder in BD87.  Not sure why the syntax check thinks they are missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something I have noticed in BD87, in the technical short info box where it lists basic type DELFOR01, Message Type DELINS, the extension field is blank.  Should it not contain my extension name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 21:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642131#M285959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T21:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642132#M285960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The missing extension might be the issue.  Is the extension showing up in the control record, EDIDC-CIMTYP?  Did you add the extension name to the partner profile entry for DELINS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do not need to populate anything beyond SEGNAM and SDATA when adding to the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642132#M285960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642133#M285961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I left out that I have added the extension to the partner profile.  DELINS is listed as an outound parameter, and when you drill nito it, I have added my extension to the the extension field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642133#M285961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642134#M285962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you been able to debug the user-exit?  I think your IDoc is built by IDOC_OUTPUT_DELINS.  Is that correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642134#M285962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642135#M285963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I can debug the exit.  Everything is populating great, it is just that when my segment show up, the hierarchy goes to 0 for every segment that follows.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642135#M285963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642136#M285964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your extension name showing up in the structure CONTROL_RECORD_OUT?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:10:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642136#M285964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642137#M285965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to head out, but I'll check the thread again in the morning.  Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:13:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642137#M285965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642138#M285966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I pulled up the control record and all it has is Basic Type DELFOR01, Message Type DELINS.  Extension and IDoc Type are blank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 22:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642138#M285966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T22:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642139#M285967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To verify this is the issue, you could add a break-point to IDOC_OUTPUT_DELINS and update CONTROL_RECORD_OUT-CIMTYP immediately after PERFORM CALL_USEREXIT_FOR_CONTROL_REC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll try to find out more regarding the extension.  I assume you are using output determination for this.  Is your output type set up to use RSNASTED as your processing program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 14:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642139#M285967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642140#M285968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Activate user-exit EXIT_SAPLEINM_001 in FORM call_userexit_for_control_rec.&lt;/P&gt;&lt;P&gt;2) Add a check for CONTROL_RECORD_OUT-RCVPRN = your desired external logical system.&lt;/P&gt;&lt;P&gt;3) If equal, set CONTROL_RECORD_OUT-CIMTYP to your extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CHECK CONTROL_RECORD_OUT-RCVPRN = 'EXTSYSLS'.
MOVE 'ZEXTEN' TO CONTROL_RECORD_OUT-CIMTYP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, what output type are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 14:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642140#M285968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T14:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642141#M285969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I activated the user-exit 001 and added the code to move my extension to the control record, but now my idoc will not generate.  To verify, I removed the move and the idoc generated.  Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 15:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642141#M285969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T15:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642142#M285970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At this point I would start debugging.  You should be able to turn off the syntax check in the partner profile as a temporary solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried creating the IDoc from WE19?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 16:02:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642142#M285970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T16:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642143#M285971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I run through the business process for testing. &lt;/P&gt;&lt;P&gt;I change the scheduling agreement and then process it in ME84&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found an error in ME84&lt;/P&gt;&lt;P&gt;No processing (error message ME 857)  No message record found&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This only occues when I have this line in&lt;/P&gt;&lt;P&gt;MOVE 'Zxxxxx' TO CONTROL_RECORD_OUT-CIMTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure why, but my breakpoints no longer work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 17:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642143#M285971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T17:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642144#M285972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ME 857 is an ISO code error.  Do you have any idea which field might trigger this?  The only place I found this error was in FORM ISO_CODE_LANGUAGE in include LEINMF0U.  This form is called in form FILL_SRV_BLAORD when populating segment E1EDCT3 (long text).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 17:22:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642144#M285972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T17:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642145#M285973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Turns out someone deleted my message control record.  The move extension data to the control record fixed my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 16:25:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642145#M285973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T16:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Extension problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642146#M285974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great news!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 16:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-extension-problem/m-p/1642146#M285974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T16:26:17Z</dc:date>
    </item>
  </channel>
</rss>

