<?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: why is it that some function module require an endselect in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630023#M604625</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;All FM-s require an ENDMODULE command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT is only needed, when there is within the FM a SELECT command present, without an INTO keyword. This requires ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 13:45:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T13:45:06Z</dc:date>
    <item>
      <title>why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630022#M604624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why is it that some function module require an endselect and some can work without the endselect...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 13:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630022#M604624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T13:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630023#M604625</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;All FM-s require an ENDMODULE command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT is only needed, when there is within the FM a SELECT command present, without an INTO keyword. This requires ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 13:45:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630023#M604625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T13:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630024#M604626</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;The difference is in fetching the data. &lt;/P&gt;&lt;P&gt;Select &lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;Endselect. is an obsolete one. Here inbetween select and endselect you can do some calculations or manupulations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where as select is the new thing which will dirctly store the fetched data in to internal table or fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is nothing to do with the function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 13:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630024#M604626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T13:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630025#M604627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt; Endselect is required if you are using... one of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) u r using UP TO 1 ROWS options with ur select &lt;/P&gt;&lt;P&gt;2) ur selecting a field list from a table into a work area...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it got nothing to do with the function module... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 13:57:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630025#M604627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T13:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630026#M604628</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;If the result of the selection is meant to be a table, the data is usually (for further information, see INTO -Klausel ) read line by line within a processing loop introduced by SELECT and concluded by ENDSELECT . For each line read, the processing passes through the loop once. If the result of the selection is meant to be a single record, the closing ENDSELECT is omitted. &lt;/P&gt;&lt;P&gt;The FROM source clause the source (database table or view ) from which the data is to be selected. It also determines &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the type of client handling, &lt;/P&gt;&lt;P&gt;the behavior for buffered tables and &lt;/P&gt;&lt;P&gt;the maximum number of lines to be read. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After ENDSELECT , SY-DBCNT contains the total number of lines read. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 At least one line was read. &lt;/P&gt;&lt;P&gt;SY_SUBRC = 4 No lines were read. &lt;/P&gt;&lt;P&gt;SY-SUBRC = 8 The search key was not fully qualified. &lt;/P&gt;&lt;P&gt;(nur bei SELECT SINGLE ). The returned single record is any line of the solution set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select..enselect  is obsolete..Dont use tht..&lt;/P&gt;&lt;P&gt;Reward if this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neslin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 14:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630026#M604628</guid>
      <dc:creator>Neslinn</dc:creator>
      <dc:date>2007-08-08T14:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: why is it that some function module require an endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630027#M604629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u does't use table and into key words.the endselect function will coming&lt;/P&gt;&lt;P&gt;into the picture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 14:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-it-that-some-function-module-require-an-endselect/m-p/2630027#M604629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T14:33:56Z</dc:date>
    </item>
  </channel>
</rss>

