<?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: error  message field itab unknown in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044927#M966865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the itab contails the screen name ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM &lt;/P&gt;&lt;P&gt;DYNPRO &lt;/P&gt;&lt;P&gt;DYNBEGIN &lt;/P&gt;&lt;P&gt;FNAM &lt;/P&gt;&lt;P&gt;FVAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Jun 2008 10:56:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-14T10:56:53Z</dc:date>
    <item>
      <title>error  message field itab unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044923#M966861</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 get error message field itab unknown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38' USING ITAB MODE 'N'&lt;/P&gt;&lt;P&gt;MESSAGES INTO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 09:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044923#M966861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T09:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: error  message field itab unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044924#M966862</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;Have you decleared ITAB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tHANKS&lt;/P&gt;&lt;P&gt;Vikrant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 09:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044924#M966862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T09:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: error  message field itab unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044925#M966863</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 TRANSACTION 'SE38' USING ITAB MODE 'N'&lt;/P&gt;&lt;P&gt;MESSAGES INTO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above sentence, the 1st ITAB should be of type BDCDATA. Moreover, you cannot use the same internal table for the MESSAGES also. Declare a different internal table (say messtab) and it should be of type BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence, the correct coding sentence would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38' USING bdcdata MODE 'N'&lt;/P&gt;&lt;P&gt;MESSAGES INTO messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, I have used BDCDATA as the BDC internal table instead of ITAB because the name ITAB is generally used to&lt;/P&gt;&lt;P&gt;retrieve data from the Standard or Custom tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nadim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 10:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044925#M966863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T10:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: error  message field itab unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044926#M966864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ilhan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this, it will solve your problem and give you what you need.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*----------------------------------------------------------------------
*       FORM  EDITOR
*----------------------------------------------------------------------
FORM EDITOR.

  DATA VL_DISPLAY.

  VG_REPORT_LINE = VG_REPORT_LINE / 10.

  IF SY-UCOMM = 'EDI'.
    VL_DISPLAY = ' '.
  ELSE.
    VL_DISPLAY = 'X'.
  ENDIF.

  CALL FUNCTION 'EDITOR_PROGRAM'
       EXPORTING
            DISPLAY = VL_DISPLAY
            PROGRAM = TRDIR-NAME
            LINE    = VG_REPORT_LINE.

ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 10:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044926#M966864</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-06-14T10:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: error  message field itab unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044927#M966865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the itab contails the screen name ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM &lt;/P&gt;&lt;P&gt;DYNPRO &lt;/P&gt;&lt;P&gt;DYNBEGIN &lt;/P&gt;&lt;P&gt;FNAM &lt;/P&gt;&lt;P&gt;FVAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 10:56:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-field-itab-unknown/m-p/4044927#M966865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T10:56:53Z</dc:date>
    </item>
  </channel>
</rss>

