<?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: help in perform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858028#M670131</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are trying Subroutines in an FM, you have to put the subroutine itself in the top include. Now you can access this subroutine from any FM in this Function Group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, If you want to call this subroutine only in one single FM, you can keep the subroutine after ENDFUNCTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot have FORM ... ENDFORM inside FUNCTION... ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2007 15:49:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-25T15:49:57Z</dc:date>
    <item>
      <title>help in perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858025#M670128</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 wont to do perform and i new in this topic&lt;/P&gt;&lt;P&gt;i have program and i wont to insert this code to perform that bring table (becouse the append is to long )&amp;lt;b&amp;gt;t_ran&amp;lt;/b&amp;gt; how i can do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TYPES: BEGIN OF ty_ran,&lt;/P&gt;&lt;P&gt;     sign   TYPE c LENGTH 1,&lt;/P&gt;&lt;P&gt;     option TYPE c LENGTH 2,&lt;/P&gt;&lt;P&gt;     low    TYPE string,&lt;/P&gt;&lt;P&gt;     high   TYPE string,&lt;/P&gt;&lt;P&gt;    END OF ty_ran.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: t_ran TYPE STANDARD TABLE OF ty_ran,&lt;/P&gt;&lt;P&gt;        w_ran LIKE LINE OF t_ran.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    w_ran-sign = 'I'.&lt;/P&gt;&lt;P&gt;  w_ran-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  w_ran-low = 'ggg'.&lt;/P&gt;&lt;P&gt;  APPEND w_ran TO t_ran.&lt;/P&gt;&lt;P&gt;  w_ran-low = 'hhh'.&lt;/P&gt;&lt;P&gt;  APPEND w_ran TO t_ran.&lt;/P&gt;&lt;P&gt;  w_ran-low = 'st'.&lt;/P&gt;&lt;P&gt;  APPEND w_ran TO t_ran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 15:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858025#M670128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T15:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858026#M670129</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;You can do like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_ran,&lt;/P&gt;&lt;P&gt;sign TYPE c LENGTH 1,&lt;/P&gt;&lt;P&gt;option TYPE c LENGTH 2,&lt;/P&gt;&lt;P&gt;low TYPE string,&lt;/P&gt;&lt;P&gt;high TYPE string,&lt;/P&gt;&lt;P&gt;END OF ty_ran.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform f_fill_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form f_fill_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move your code between this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.      "f_fill_itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 15:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858026#M670129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T15:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858027#M670130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sriram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try your saggstion but its not work i have eroor maybe becouse &lt;/P&gt;&lt;P&gt;i do that in FM?  &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 15:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858027#M670130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T15:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: help in perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858028#M670131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are trying Subroutines in an FM, you have to put the subroutine itself in the top include. Now you can access this subroutine from any FM in this Function Group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, If you want to call this subroutine only in one single FM, you can keep the subroutine after ENDFUNCTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot have FORM ... ENDFORM inside FUNCTION... ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 15:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-perform/m-p/2858028#M670131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T15:49:57Z</dc:date>
    </item>
  </channel>
</rss>

