<?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: how to create internal type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011615#M711688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, just go to SE11, enter the name of the table type, maybe &amp;lt;your_table_name_TT&amp;gt;.  Enter this in the data type field on the SE11 screen, and select that radiobutton, then click create,  in the dialog choose table type, and hit enter, in the next screen, give the description, and below, enter the name of the "Z" table as the line type, save and activate.  That's it.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Nov 2007 15:55:58 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2007-11-11T15:55:58Z</dc:date>
    <item>
      <title>how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011609#M711682</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 created a normal table 'ZNLMEVENTS' with 4 fields. I entered data. Now i created a function module with below code. Problem i have is i get only one record inspite of having more rows. How to get all rows shown.. i came to know its possible thru making the table as internal. I dont know how to do that. kinldy help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZNLM_ALARAMEVENTS.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(ALARMEVENTS) TYPE  ZNLMEVENTS&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;select * from znlmevents into table alarmevents.&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to ABAP language. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 01:45:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011609#M711682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T01:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011610#M711683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should change the EXPORTING interface parameter to a TABLES parameter (and call it that way too).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 02:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011610#M711683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T02:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011611#M711684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed it as you told but still i get only one record. Please see the code below. kindly let me know where i am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION ZNLM_ALARAMEVENTS.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  TABLES
*"     VALUE(ALARMEVENTS) TYPE  ZNLMEVENTS
*"----------------------------------------------------------------------
select * from znlmevents into alarmevents.
endselect.

ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 02:43:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011611#M711684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T02:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011612#M711685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leave the TABLES parameter as Rob suggested, and now change your SELECT statement to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from znlmevents into TABLE alarmevents.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 03:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011612#M711685</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-11-11T03:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011613#M711686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just FYI,  the above will work, but the TABLES parameter is obselete.  The correct way of so it now, is to create a table type in the ABAP dictionary which would have a line type of your transparent table name, then you would use an EXPORT parameter as you have done initially, and use the table type to describe the parameter instead of the table name, and you would leave the SELECT statement as it was with the INTO TABLE.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 03:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011613#M711686</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-11-11T03:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011614#M711687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately i only know how to create table but dont know how to create a line type of my transparent table. I guess, it means to create a new table with a field of type my transaparent table rt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answers..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 03:53:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011614#M711687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T03:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to create internal type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011615#M711688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, just go to SE11, enter the name of the table type, maybe &amp;lt;your_table_name_TT&amp;gt;.  Enter this in the data type field on the SE11 screen, and select that radiobutton, then click create,  in the dialog choose table type, and hit enter, in the next screen, give the description, and below, enter the name of the "Z" table as the line type, save and activate.  That's it.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 15:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-internal-type/m-p/3011615#M711688</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-11-11T15:55:58Z</dc:date>
    </item>
  </channel>
</rss>

