<?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: Extended Syntax Error...... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387380#M1238523</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;Try this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : it_seahlpres TYPE STANDARD TABLE OF seahlpres,
       wa_seahlpress TYPE seahlpress.


FORM call_back TABLES   record_tab  TYPE it_seahlpress
               CHANGING shlp_top TYPE shlp_descr
                        callcontrol TYPE ddshf4ctrl.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Mar 2009 06:58:35 GMT</pubDate>
    <dc:creator>I355602</dc:creator>
    <dc:date>2009-03-25T06:58:35Z</dc:date>
    <item>
      <title>Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387375#M1238518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my Program I have created the following Subroutine - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM call_back TABLES record_tab  STRUCTURE seahlpres
                                  CHANGING  shlp_top TYPE shlp_descr
                                                     callcontrol TYPE ddshf4ctrl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here seahlpres is a DDIC Structure&lt;/P&gt;&lt;P&gt;Now this is giving an Extended Syntax Error stating that "Using STRUCTURE is Obsolete".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agreed, but I am unable to use following - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM call_back TABLES record_tab  TYPE STANDARD TABLE OF seahlpres
                         CHANGING  shlp_top TYPE shlp_descr
                                            callcontrol TYPE ddshf4ctrl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM call_back TABLES record_tab  TYPE LINE OF seahlpres
                         CHANGING  shlp_top TYPE shlp_descr
                                            callcontrol TYPE ddshf4ctrl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to remove this Error, by what way should RECORD_TAB be declared as to remove the Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pankaj Agarwal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:47:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387375#M1238518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T06:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387376#M1238519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;You have to declare the table type of it like.&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;tt_seahlpres type standard TABLE OF seahlpres.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM call_back exporting / importing record_tab  type tt_seahlpres&lt;/P&gt;&lt;P&gt;                          CHANGING  shlp_top TYPE shlp_descr&lt;/P&gt;&lt;P&gt;                                            callcontrol TYPE ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eventhough SAP is advicing to not use of changing only use export and import parameters.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387376#M1238519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T06:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387377#M1238520</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;Use table type of 'seahlpres'. If it there already in the system then use it or create new one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code will look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM call_back TABLES record_tab  TYPE tt_seahlpres&lt;/P&gt;&lt;P&gt;                         CHANGING  shlp_top TYPE shlp_descr&lt;/P&gt;&lt;P&gt;                                            callcontrol TYPE ddshf4ctrl.&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;pranaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387377#M1238520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T06:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387378#M1238521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;u have to add the statement&lt;/P&gt;&lt;P&gt;          TABLES: seahlpres.&lt;/P&gt;&lt;P&gt;at the beginning of ur program. then ur program will somewhat look like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZREPORT_NAME.&lt;/P&gt;&lt;P&gt;TABLES: seahlpres.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;" Your code goes here..&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" Definitation of ur form goes here.&lt;/P&gt;&lt;P&gt; FORM call_back TABLES record_tab  TYPE STANDARD TABLE OF seahlpres&lt;/P&gt;&lt;P&gt;                         CHANGING  shlp_top TYPE shlp_descr&lt;/P&gt;&lt;P&gt;                                            callcontrol TYPE ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       " &lt;/P&gt;&lt;P&gt;       "  Your code goes here,..&lt;/P&gt;&lt;P&gt;       "&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves ur problem....&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;Anirban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387378#M1238521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T06:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387379#M1238522</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;see the below code from tcode ABAPDOCU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_mod_tech_example_5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF line,&lt;/P&gt;&lt;P&gt;        col1 TYPE i,&lt;/P&gt;&lt;P&gt;        col2 TYPE i,&lt;/P&gt;&lt;P&gt;      END OF line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab LIKE STANDARD TABLE OF line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM fill CHANGING itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM out  USING    itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fill CHANGING f_itab LIKE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA f_line LIKE LINE OF f_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO 3 TIMES.&lt;/P&gt;&lt;P&gt;    f_line-col1 = sy-index.&lt;/P&gt;&lt;P&gt;    f_line-col2 = sy-index ** 2.&lt;/P&gt;&lt;P&gt;    APPEND f_line TO f_itab.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM out USING value(f_itab) LIKE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA f_line LIKE LINE OF f_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT f_itab INTO f_line.&lt;/P&gt;&lt;P&gt;    WRITE: / f_line-col1, f_line-col2.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details check examples in abapdocu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP Programming Language &amp;gt;Modularization Techniques &amp;gt;Procedures &amp;gt;Subroutines &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rudhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387379#M1238522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T06:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387380#M1238523</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;Try this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : it_seahlpres TYPE STANDARD TABLE OF seahlpres,
       wa_seahlpress TYPE seahlpress.


FORM call_back TABLES   record_tab  TYPE it_seahlpress
               CHANGING shlp_top TYPE shlp_descr
                        callcontrol TYPE ddshf4ctrl.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 06:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387380#M1238523</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-25T06:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387381#M1238524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tarun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I tried initially, but it gives an error - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"The Type "IT_SEAHLPRES" is unknown.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 07:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387381#M1238524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T07:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387382#M1238525</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;  Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM call_back USING record_tab TYPE TABLE OF seahlpres&lt;/P&gt;&lt;P&gt;                                  CHANGING  shlp_top TYPE shlp_descr&lt;/P&gt;&lt;P&gt;                                                     callcontrol TYPE ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Roopa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 07:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387382#M1238525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T07:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387383#M1238526</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;Refer this demo, its working:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : it_tcurc TYPE STANDARD TABLE OF tcurc,
       wa_tcurc TYPE tcurc.


START-OF-SELECTION.
  PERFORM call_back TABLES it_tcurc.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  call_back
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;IT_TCURC   text
*----------------------------------------------------------------------*
FORM call_back TABLES it_tcurc.

ENDFORM.                    "call_back
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 07:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387383#M1238526</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-25T07:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387384#M1238527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;   Try this.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; FORM call_back USING record_tab TYPE TABLE OF seahlpres&lt;/P&gt;&lt;P&gt;&amp;gt;                                   CHANGING  shlp_top TYPE shlp_descr&lt;/P&gt;&lt;P&gt;&amp;gt;                                                      callcontrol TYPE ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Roopa&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RRO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using TYPE TABLE OF gives a Short Dump........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 07:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387384#M1238527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T07:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Syntax Error......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387385#M1238528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tarun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This Works.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 07:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-error/m-p/5387385#M1238528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T07:16:16Z</dc:date>
    </item>
  </channel>
</rss>

