<?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 for endloop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905883#M1145490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi chandra,&lt;/P&gt;&lt;P&gt;i am getting another error like  the data object "jtab" does't have a component called "program"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Dec 2008 11:42:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-23T11:42:52Z</dc:date>
    <item>
      <title>syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905870#M1145477</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;i am getting syntax error ,while i am doing bdc recording, error is "=..."expected after "endloop"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;lvk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905870#M1145477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905871#M1145478</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;send code in forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905871#M1145478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905872#M1145479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report ZERRMP
       no standard page heading line-size 255.

*include bdcrecx1.
*
*start-of-selection.
*
*perform open_group.

tables:lfa1.
data: begin of itab OCCURS 0,
        lifnr type lfa1-lifnr,
        land1 type lfa1-land1,
        name1 type lfa1-name1,
     end of itab.


data: begin of jtab OCCURS 0,

     include, structure, bdcdata.
data: end of jtab.

CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    FILENAME                      = 'c:\zses.txt '
    FILETYPE                      = 'ASC'
*   HAS_FIELD_SEPARATOR           = ' '
*   HEADER_LENGTH                 = 0
*   READ_BY_LINE                  = 'X'
*   DAT_MODE                      = ' '
*   CODEPAGE                      = ' '
*   IGNORE_CERR                   = ABAP_TRUE
*   REPLACEMENT                   = '#'
*   CHECK_BOM                     = ' '
*   VIRUS_SCAN_PROFILE            =
*   NO_AUTH_CHECK                 = ' '
* IMPORTING
*   FILELENGTH                    =
*   HEADER                        =
  TABLES
    DATA_TAB                      = itab.
* EXCEPTIONS
*   FILE_OPEN_ERROR               = 1
*   FILE_READ_ERROR               = 2
*   NO_BATCH                      = 3
*   GUI_REFUSE_FILETRANSFER       = 4
*   INVALID_TYPE                  = 5
*   NO_AUTHORITY                  = 6
*   UNKNOWN_ERROR                 = 7
*   BAD_DATA_FORMAT               = 8
*   HEADER_NOT_ALLOWED            = 9
*   SEPARATOR_NOT_ALLOWED         = 10
*   HEADER_TOO_LONG               = 11
*   UNKNOWN_DP_ERROR              = 12
*   ACCESS_DENIED                 = 13
*   DP_OUT_OF_MEMORY              = 14
*   DISK_FULL                     = 15
*   DP_TIMEOUT                    = 16
*   OTHERS                        = 17
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

CALL FUNCTION 'BDC_OPEN_GROUP'
 EXPORTING
*   CLIENT                    = SY-MANDT
*   DEST                      = FILLER8
    GROUP                     = 'vses'
   HOLDDATE                  = sy-datum
   KEEP                      = 'x'
   USER                      = sy-uname
*   RECORD                    = FILLER1
*   PROG                      = SY-CPROG
*   DCPFM                     = '%'
*   DATFM                     = '%'
* IMPORTING
*   QID                       =
* EXCEPTIONS
*   CLIENT_INVALID            = 1
*   DESTINATION_INVALID       = 2
*   GROUP_INVALID             = 3
*   GROUP_IS_LOCKED           = 4
*   HOLDDATE_INVALID          = 5
*   INTERNAL_ERROR            = 6
*   QUEUE_ERROR               = 7
*   RUNNING                   = 8
*   SYSTEM_LOCK_ERROR         = 9
*   USER_INVALID              = 10
*   OTHERS                    = 11
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
loop at itab.
refresh jtab.
perform sub1 using 'zsm_mps' '100'.
perform sub2 using :'lfa1-lifnr' itab-lifnr,
                    'lfa1-land1' itab-land1,
                    'lfa1-name1' itab-name1.
CALL FUNCTION 'BDC_INSERT'
 EXPORTING
   TCODE                  = 'zsm_mps'
*   POST_LOCAL             = NOVBLOCAL
*   PRINTING               = NOPRINT
*   SIMUBATCH              = ' '
*   CTUPARAMS              = ' '
  TABLES
    DYNPROTAB              = jtab
    endloop     
CALL FUNCTION 'BDC_CLOSE_GROUP'
*     EXCEPTIONS
*       NOT_OPEN          = 1
*       QUEUE_ERROR       = 2
*       OTHERS            = 3
form sub1 using a b.
    clear jtab.
    jtab-program=a.
    jtab-dynpro=b.
    jtab-dynbegin='x'.
    append jtab.
endform.
form sub2 using c d.
    clear jtab.
    jtab-fnam=c.
    jtab-fval=d.
    append jtab.
endform.
              .
    IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

* EXCEPTIONS
*   INTERNAL_ERROR         = 1
*   NOT_OPEN               = 2
*   QUEUE_ERROR            = 3
*   TCODE_INVALID          = 4
*   PRINTING_INVALID       = 5
*   POSTING_INVALID        = 6
*   OTHERS                 = 7
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.


*perform bdc_dynpro      using 'ZSM_MP' '0100'.
*perform bdc_field       using 'BDC_OKCODE'
*                              '=SUBMIT'.
*perform bdc_field       using 'BDC_CURSOR'
*                              'LFA1-NAME1'.
*perform bdc_field       using 'LFA1-LIFNR'
*                              '789'.
*perform bdc_field       using 'LFA1-LAND1'
*                              'IN'.
*perform bdc_field       using 'LFA1-NAME1'
*                              'err'.
*perform bdc_dynpro      using 'ZSM_MP' '0100'.
*perform bdc_field       using 'BDC_OKCODE'
*                              '=EXIT'.
*perform bdc_field       using 'BDC_CURSOR'
*                              'LFA1-LIFNR'.
*perform bdc_field       using 'LFA1-LIFNR'
*                              '789'.
*perform bdc_field       using 'LFA1-LAND1'
*                              'IN'.
*perform bdc_field       using 'LFA1-NAME1'
*                              'err'.
*perform bdc_transaction using 'ZSM_MPS'.
*
*perform close_group.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Formatted by: Alvaro Tejada Galindo on Dec 23, 2008 10:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905872#M1145479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905873#M1145480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES
DYNPROTAB = jtab
endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should be like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES
DYNPROTAB = jtab. "you are missing '.' here
endloop. "you are missing '.' here&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 09:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905873#M1145480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T09:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905874#M1145481</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;CALL FUNCTION 'BDC_INSERT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;TCODE = 'zsm_mps'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POST_LOCAL = NOVBLOCAL &lt;/P&gt;&lt;P&gt;PRINTING = NOPRINT &lt;/P&gt;&lt;P&gt;SIMUBATCH = ' ' &lt;/P&gt;&lt;P&gt;CTUPARAMS = ' ' &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DYNPROTAB = jtab.&lt;/STRONG&gt;          &lt;EM&gt;Add '.' at end&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;                            &lt;EM&gt;Add '.' at end&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905874#M1145481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905875#M1145482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;  I think u missed ( . ) period afte ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905875#M1145482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905876#M1145483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi chandra,&lt;/P&gt;&lt;P&gt;i am getting one more error like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form sub1 using a b.&lt;/P&gt;&lt;P&gt;clear jtab.&lt;/P&gt;&lt;P&gt;jtab-program=a.&lt;/P&gt;&lt;P&gt;jtab-dynpro=b.&lt;/P&gt;&lt;P&gt;jtab-dynbegin='x'.&lt;/P&gt;&lt;P&gt;append jtab.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:24:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905876#M1145483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905877#M1145484</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;can be paste the error message...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905877#M1145484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905878#M1145485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;statement before "form..." not concluded(period missing)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905878#M1145485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905879#M1145486</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;missing perion ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BDC_CLOSE_GROUP'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;NOT_OPEN = 1 &lt;/P&gt;&lt;P&gt;QUEUE_ERROR = 2 &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OTHERS = 3.&lt;/STRONG&gt;           &lt;EM&gt;Add period at end&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905879#M1145486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905880#M1145487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'BDC_CLOSE_GROUP'

EXCEPTIONS 
NOT_OPEN = 1 
QUEUE_ERROR = 2 
OTHERS = 3.  "Add '.' here &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:45:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905880#M1145487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905881#M1145488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am getting another error like  statement "jtab_program=a"is not defined check your spelling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 10:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905881#M1145488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T10:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905882#M1145489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;jtab_program = a  " give space 
jtab-dynpro = b." give space
jtab-dynbegin = 'x'." give space&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 11:05:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905882#M1145489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T11:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905883#M1145490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi chandra,&lt;/P&gt;&lt;P&gt;i am getting another error like  the data object "jtab" does't have a component called "program"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 11:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905883#M1145490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T11:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905884#M1145491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of jtab OCCURS 0,

include, structure, bdcdata.
data: end of jtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of jtab OCCURS 0,

include structure bdcdata.
data: end of jtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 12:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905884#M1145491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T12:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905885#M1145492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again it is giving another like unable to interpret "structure".possible cause of error. incorrect spelling error or comma error&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 12:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905885#M1145492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T12:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error for endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905886#M1145493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: begin of jtab OCCURS 0.
 include structure bdcdata.
data: end of jtab.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 12:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-for-endloop/m-p/4905886#M1145493</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-12-23T12:25:15Z</dc:date>
    </item>
  </channel>
</rss>

