<?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: *EDI: Syntax error in IDoc (segment cannot be identified)* in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552545#M1074880</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..The below is my source code..can anyone help this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_matkl like mara-matkl, lv_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;data: lv_ean11 like mara-ean11, lv_psgnum like edidd-psgnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if control_record_out-rcvpor = 'CAREFOR_SE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*First Delete E1EDP19 Segment with SalesUnit EAN Number&lt;/P&gt;&lt;P&gt;  loop at int_edidd where segnam = 'E1EDP19'.&lt;/P&gt;&lt;P&gt;    clear: *e1edp19, lv_tabix.&lt;/P&gt;&lt;P&gt;    lv_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    move int_edidd-sdata to *e1edp19.&lt;/P&gt;&lt;P&gt;    if *e1edp19-qualf = '003'.&lt;/P&gt;&lt;P&gt;      delete int_edidd index lv_tabix.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;*Find Parent Segment, and Populate Material Group&lt;/P&gt;&lt;P&gt;  loop at int_edidd where segnam = 'E1EDP01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear: *e1edp01, *e1edp19, lv_psgnum, lv_matkl, lv_tabix, lv_matnr, lv_ean11.&lt;/P&gt;&lt;P&gt;    lv_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    lv_psgnum = int_edidd-segnum.&lt;/P&gt;&lt;P&gt;    move int_edidd-sdata to *e1edp01.&lt;/P&gt;&lt;P&gt;    read table xtvbdpr with key posnr = *e1edp01-posex.&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;      lv_matnr = xtvbdpr-matnr.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        INPUT  = lv_matnr&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        OUTPUT = lv_matnr.&lt;/P&gt;&lt;P&gt;    select single matkl ean11 into (lv_matkl,lv_ean11)&lt;/P&gt;&lt;P&gt;      from mara&lt;/P&gt;&lt;P&gt;     where matnr = lv_matnr.&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;       *e1edp01-matkl  = lv_matkl.&lt;/P&gt;&lt;P&gt;      move *e1edp01 to int_edidd-sdata.&lt;/P&gt;&lt;P&gt;      modify int_edidd index lv_tabix.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;*Add E1EDP19-003 Segment with BaseUnit EAN Number&lt;/P&gt;&lt;P&gt;    if lv_ean11 is not initial.&lt;/P&gt;&lt;P&gt;       *e1edp19-qualf  = '003'.&lt;/P&gt;&lt;P&gt;       *e1edp19-idtnr  = lv_ean11.&lt;/P&gt;&lt;P&gt;      int_edidd-sdata  = *e1edp19.&lt;/P&gt;&lt;P&gt;      int_edidd-segnam = 'E1EDP19'.&lt;/P&gt;&lt;P&gt;       append int_edidd.&lt;/P&gt;&lt;P&gt;      clear int_edidd.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Oct 2008 07:08:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-09T07:08:31Z</dc:date>
    <item>
      <title>*EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552538#M1074873</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;My IDoc is failling dueto a syntax error. I have extended the standard IDoc INVOIC02 with the extension E1EDP01&lt;/P&gt;&lt;P&gt;but when I run the send idoc report &lt;/P&gt;&lt;P&gt;the structure (hierarchy) of the IDOC changes drastically with all segments &lt;/P&gt;&lt;P&gt;of the IDOC being at the same hierarchical level and also I get the message &lt;/P&gt;&lt;P&gt;below. &lt;/P&gt;&lt;P&gt;*****************************************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EDI: Syntax error in IDoc (segment cannot be identified)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Diagnosis&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The segment E1EDP19 does not occur at the current level of the basic type INVOIC02 (extension ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error can have several reasons:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The segment E1EDP19 is assigned to a group whose header segment does not occur.&lt;/P&gt;&lt;P&gt;The segment E1EDP19 does not exist in the syntax description of the basic type INVOIC02 (extension ).&lt;/P&gt;&lt;P&gt;The sequence of segments in the group in which the segment appears is incorrect.&lt;/P&gt;&lt;P&gt;Previous errors ('mandatory' segment or group missing) may be due to this error.&lt;/P&gt;&lt;P&gt;*****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help this issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 07:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552538#M1074873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T07:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552539#M1074874</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;goto WE30 and check your IDocType espacially Extension.&lt;/P&gt;&lt;P&gt;Look for your hierarchical structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use this structure and the segment must be filled in this levelline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. look at the error segment definition if it is mandatory or not&lt;/P&gt;&lt;P&gt;2. be sure that each E1EDP01 has one E1EDP19 or the hierarchic structure is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to WE19 and check it, too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 07:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552539#M1074874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T07:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552540#M1074875</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;Looks like a issue in Extending the IDOC.......Go thru the hierarchies once again......Follow the sequence of IDOC Extension.......If feeling confused with the existing one......go with a fresh one...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 09:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552540#M1074875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T09:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552541#M1074876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           The Segment E1EDP01 seems to be at the Delivery Item Level. So, if you have any extension for this Segment, add this as a Child Segment E1EDL20. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Secondly, the Exit which you are required to use for populating the IDoc Extension is EXIT_SAPLVEDF_002 in which you'll have to populate the Extended Segment and append it to the INT_EDIDD table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          You were getting the error because you are trying to populate the extended the Segment at a location where its parent is not being populated (E1EDP19). Check it again and it should be working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Venkat Phani Prasad Konduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 10:16:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552541#M1074876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T10:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552542#M1074877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am guessing, the order of these segments are not proper.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 15:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552542#M1074877</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2008-10-08T15:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552543#M1074878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone plz help this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2008 06:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552543#M1074878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-09T06:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552544#M1074879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to post your IDoc structure and your posted IDoc structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2008 06:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552544#M1074879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-09T06:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552545#M1074880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..The below is my source code..can anyone help this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_matkl like mara-matkl, lv_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;data: lv_ean11 like mara-ean11, lv_psgnum like edidd-psgnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if control_record_out-rcvpor = 'CAREFOR_SE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*First Delete E1EDP19 Segment with SalesUnit EAN Number&lt;/P&gt;&lt;P&gt;  loop at int_edidd where segnam = 'E1EDP19'.&lt;/P&gt;&lt;P&gt;    clear: *e1edp19, lv_tabix.&lt;/P&gt;&lt;P&gt;    lv_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    move int_edidd-sdata to *e1edp19.&lt;/P&gt;&lt;P&gt;    if *e1edp19-qualf = '003'.&lt;/P&gt;&lt;P&gt;      delete int_edidd index lv_tabix.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;*Find Parent Segment, and Populate Material Group&lt;/P&gt;&lt;P&gt;  loop at int_edidd where segnam = 'E1EDP01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear: *e1edp01, *e1edp19, lv_psgnum, lv_matkl, lv_tabix, lv_matnr, lv_ean11.&lt;/P&gt;&lt;P&gt;    lv_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    lv_psgnum = int_edidd-segnum.&lt;/P&gt;&lt;P&gt;    move int_edidd-sdata to *e1edp01.&lt;/P&gt;&lt;P&gt;    read table xtvbdpr with key posnr = *e1edp01-posex.&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;      lv_matnr = xtvbdpr-matnr.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        INPUT  = lv_matnr&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        OUTPUT = lv_matnr.&lt;/P&gt;&lt;P&gt;    select single matkl ean11 into (lv_matkl,lv_ean11)&lt;/P&gt;&lt;P&gt;      from mara&lt;/P&gt;&lt;P&gt;     where matnr = lv_matnr.&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;       *e1edp01-matkl  = lv_matkl.&lt;/P&gt;&lt;P&gt;      move *e1edp01 to int_edidd-sdata.&lt;/P&gt;&lt;P&gt;      modify int_edidd index lv_tabix.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;*Add E1EDP19-003 Segment with BaseUnit EAN Number&lt;/P&gt;&lt;P&gt;    if lv_ean11 is not initial.&lt;/P&gt;&lt;P&gt;       *e1edp19-qualf  = '003'.&lt;/P&gt;&lt;P&gt;       *e1edp19-idtnr  = lv_ean11.&lt;/P&gt;&lt;P&gt;      int_edidd-sdata  = *e1edp19.&lt;/P&gt;&lt;P&gt;      int_edidd-segnam = 'E1EDP19'.&lt;/P&gt;&lt;P&gt;       append int_edidd.&lt;/P&gt;&lt;P&gt;      clear int_edidd.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2008 07:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552545#M1074880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-09T07:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552546#M1074881</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;i think you have an issue with your "add e1edp19" after e1edp01 modify.&lt;/P&gt;&lt;P&gt;what about your segmentnumber ? (segnum) this must be sorted after addition of a new segment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;segnum 1 = e1edp01&lt;/P&gt;&lt;P&gt;segnum 2 = e1edp19&lt;/P&gt;&lt;P&gt;segnum 3 = e1edp19 (003)&lt;/P&gt;&lt;P&gt;segnum 4 = e1edp01&lt;/P&gt;&lt;P&gt;segnum 5 = e1edp19 (new added).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you delete segnum3 (cause of qualifier = 003), then you have to use Segnum 3 for Segnum 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, After your edidd is complete, make a new segnum sort like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at edidd assigning &amp;lt;edidd&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;edidd&amp;gt;-segnum = sy-tabix.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give me your EDIDD Table entries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2008 07:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552546#M1074881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-09T07:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: *EDI: Syntax error in IDoc (segment cannot be identified)*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552547#M1074882</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;Maximum times the problem is that we assign basic type to partner number during the time of configuration but after creating the extension we forget to assign the extension to the partner number thinking that we have already completed the configuration so this is the problem assign extension to the partner number and it will work out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Kotni Srikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 07:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edi-syntax-error-in-idoc-segment-cannot-be-identified/m-p/4552547#M1074882</guid>
      <dc:creator>former_member845053</dc:creator>
      <dc:date>2014-05-29T07:29:47Z</dc:date>
    </item>
  </channel>
</rss>

