<?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: syntax error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580673#M262006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johnn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL &amp;lt;b&amp;gt;WITH HEADER LINE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO GT_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_FINAL TYPE LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO WA_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND WA_FINAL TO GT_FINAL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2006 09:19:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-26T09:19:37Z</dc:date>
    <item>
      <title>syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580663#M261996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear SDN Members,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my declaration part&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;        START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;        END_DATE  TYPE DATS,&lt;/P&gt;&lt;P&gt;        DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;        END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this statement -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO GT_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error ' gt_final is a table without header &amp;amp; no component called DELNR '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in Advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:09:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580663#M261996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580664#M261997</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;&lt;/P&gt;&lt;P&gt;Change your internal table  declaration like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL with header line&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580664#M261997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580665#M261998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;declare it in this way ..&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL &amp;lt;b&amp;gt;WITH HEADER LINE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580665#M261998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580666#M261999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here your gt_final is a table without a header line.So you have to explicitly declare a work area for this operation.&lt;/P&gt;&lt;P&gt;data :&lt;/P&gt;&lt;P&gt;wa_final type lt_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO wa_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;append wa_final-delnr to gt_final.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580666#M261999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580667#M262000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Define like this-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF lt_final,&lt;/P&gt;&lt;P&gt;start_date TYPE dats,&lt;/P&gt;&lt;P&gt;end_date TYPE dats,&lt;/P&gt;&lt;P&gt;delnr TYPE /sapapo/om_delnr,&lt;/P&gt;&lt;P&gt;END OF lt_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : gt_final TYPE STANDARD TABLE OF lt_final WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580667#M262000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580668#M262001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi john abraham!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when did u left modeling,&lt;/P&gt;&lt;P&gt;any way,try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL,&lt;/P&gt;&lt;P&gt;       WA_GT_FINAL TYPE LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye,&lt;/P&gt;&lt;P&gt;kcc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580668#M262001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580669#M262002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Johnn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement- &lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;creates a table without a header line(a struture).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare an implicit structure ie the header line&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL with header line.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Or&amp;lt;/b&amp;gt; you can declare an explicit structure of type&lt;/P&gt;&lt;P&gt;data : x_final type lt_final.&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO X_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580669#M262002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580670#M262003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL occurs 0 with header line.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580670#M262003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580671#M262004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now the error is 'Field gt_final is unknown but there is field lt_final '&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580671#M262004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580672#M262005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do as told by others &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare workarea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : &amp;lt;b&amp;gt;wa_FINAL&amp;lt;/b&amp;gt; type lt_final.

MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO &amp;lt;b&amp;gt;WA_FINAL&amp;lt;/b&amp;gt;-DELNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580672#M262005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580673#M262006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johnn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL &amp;lt;b&amp;gt;WITH HEADER LINE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO GT_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;END_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_FINAL TYPE LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO WA_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND WA_FINAL TO GT_FINAL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580673#M262006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580674#M262007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declaration part&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF LT_FINAL,&lt;/P&gt;&lt;P&gt;        NAME TYPE /SAPAPO/CRES_NAME,&lt;/P&gt;&lt;P&gt;        START_DATE TYPE DATS,&lt;/P&gt;&lt;P&gt;        END_DATE  TYPE DATS,&lt;/P&gt;&lt;P&gt;        DELNR TYPE /SAPAPO/OM_DELNR,&lt;/P&gt;&lt;P&gt;        QUANTITY TYPE /SAPAPO/OM_GESAMT_MENGE,&lt;/P&gt;&lt;P&gt;        END OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA_FINAL TYPE LT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code  part&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT LT_ORDMAPS ASSIGNING &amp;lt;LT_ORDMAPS&amp;gt;. " WHERE ORDID = LT_ORDMAPS-ORDID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE LT_OUTPUT ASSIGNING &amp;lt;LT_OUTPUT&amp;gt; WITH KEY ORDERID = &amp;lt;LT_ORDMAPS&amp;gt;-ORDID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO WA_FINAL-DELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_OUTPUT&amp;gt;-QUANTITY TO WA_FINAL-QUANTITY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE P_RES TO WA_FINAL-NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE P_START TO WA_FINAL-START_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE P_END TO WA_FINAL-END_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND WA_FINAL TO GT_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&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;Error : field wa_final is unknown, but known field is lt_final.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580674#M262007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580675#M262008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your cde looks good , double click on the error and find out the line no where u r getting the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSPELL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN OF LT_FINAL,
NAME TYPE NAME1,
START_DATE TYPE DATS,
END_DATE TYPE DATS,
DELNR TYPE NAME2,
QUANTITY TYPE MATNR,
END OF LT_FINAL.

DATA : GT_FINAL TYPE STANDARD TABLE OF LT_FINAL.

DATA : WA_FINAL TYPE LT_FINAL.

MOVE 'xyz' TO WA_FINAL-NAME.
APPEND WA_FINAL TO GT_FINAL.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:37:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580675#M262008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580676#M262009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Error  in this line &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO WA_FINAL-DELNR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:47:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580676#M262009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580677#M262010</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've tried your code and worked fine: have u sure you've defined WA_FINAL before the statament MOVE &amp;lt;LT_ORDMAPS&amp;gt;-DELNR TO WA_FINAL-DELNR? or where have you defined it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:55:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580677#M262010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580678#M262011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The declaration part is in Top Include.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 09:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580678#M262011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T09:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580679#M262012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you activated that INCLUDE program ? please check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 10:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580679#M262012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580680#M262013</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;It'll be stupid...but have you actived all includes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 10:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580680#M262013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T10:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580681#M262014</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 it is giving the error it does not find the definition of the work area in the activate code. Check if you have activate the includes in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 10:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580681#M262014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T10:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580682#M262015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even Top include is activated.&lt;/P&gt;&lt;P&gt; while activating the main program it gives a process Error like ' field wa_final is unknown, but known field is lt_final'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i gave 'activate anyway' &amp;amp; got the requirement now&lt;/P&gt;&lt;P&gt;   Is there any problem in giving activate anyway ?&lt;/P&gt;&lt;P&gt;   Thanks for ur support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 10:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/1580682#M262015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T10:29:41Z</dc:date>
    </item>
  </channel>
</rss>

