<?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: Getting Error Table is not defined ABAP Dictionary. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707650#M1453310</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;show me the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Mar 2010 06:34:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-16T06:34:05Z</dc:date>
    <item>
      <title>Getting Error Table is not defined ABAP Dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707649#M1453309</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 have create a Transparent table and want to call in my INCLUDE, but when i activate it it show's me this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;''TABLE IS NOT DEFINED IN THE ABAP DICTIONARY AS A TABLE, PROJECTION VIEW OR DATABASE VIEW''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even tough i already checked it that the table is still exit ABAP DICTIONARY so why im getting this ERROR...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sappk25&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 06:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707649#M1453309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-16T06:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Error Table is not defined ABAP Dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707650#M1453310</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;show me the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 06:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707650#M1453310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-16T06:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Error Table is not defined ABAP Dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707651#M1453311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the CODE:&lt;/P&gt;&lt;P&gt;--&amp;gt;&lt;STRONG&gt;Where ZTESTREORT is a Transparent Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt;&lt;STRONG&gt;And  ZTESTREORT_STUC is a structure&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM displayform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: fm_name TYPE  rs38l_fnam,&lt;/P&gt;&lt;P&gt;        lv_remarks(1000) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;        IT_HEAD like standard table of ZTESTREPORT_STUC,&lt;/P&gt;&lt;P&gt;        IT_MAIN like standard table of ZTESTREPORT_STUC,&lt;/P&gt;&lt;P&gt;        IT_DETAIL like standard table of ZTESTREPORT_STUC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      formname = 'ZTESTREPORT'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      fm_name  = fm_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;    FROM ZTESTREPORT&lt;/P&gt;&lt;P&gt;    INTO table ZTESTREPORT_STUC&lt;/P&gt;&lt;P&gt;    WHERE AUDAT = ZTESTREPORT-AUDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION fm_name&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        IT_HEAD     = ZTESTREPORT_STUC&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        IT_MAIN     = ZTESTREPORT_STUC.&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;FORM getdata .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR LV_STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE *&lt;/P&gt;&lt;P&gt;    FROM ZTESTREPORT&lt;/P&gt;&lt;P&gt;    INTO ZTESTREPORT_STUC&lt;/P&gt;&lt;P&gt;    WHERE AUDAT = ZTESTREPORT-AUDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE ZTESTREPORT-KUNNR TO LV_STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD KUNNR-&amp;gt;set_textstream&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text                   = lv_string&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        error_cntl_call_method = 1&lt;/P&gt;&lt;P&gt;        not_supported_by_gui   = 2&lt;/P&gt;&lt;P&gt;        OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    move ZTESTREPORT-AUDAT to lv_string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD staff-&amp;gt;set_textstream&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text                   = lv_string&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        error_cntl_call_method = 1&lt;/P&gt;&lt;P&gt;        not_supported_by_gui   = 2&lt;/P&gt;&lt;P&gt;        OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;      clear: ZTESTREPORT,ztestreport_stuc.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE *&lt;/P&gt;&lt;P&gt;    FROM ZTESTREPORT&lt;/P&gt;&lt;P&gt;    INTO ZTESTREPORT_STUC&lt;/P&gt;&lt;P&gt;    WHERE AUDAT = ZTESTREPORT-AUDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 06:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707651#M1453311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-16T06:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Error Table is not defined ABAP Dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707652#M1453312</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 have noticed. You have declared an internal table in a routine and if you want to access this internal table outside this form it won't be possible. This object exist with in routine&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;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 06:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-table-is-not-defined-abap-dictionary/m-p/6707652#M1453312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-16T06:52:50Z</dc:date>
    </item>
  </channel>
</rss>

