<?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 how to know the function of a function module? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701969#M625764</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 am reading others' source code without , and find it uses function module 'HELP_VALUES_GET_WITH_TABLE'. i can mainly guess what function this function module perform, but not sure. i double click it and get into the function builder screen of this module. though i can see the 'import','export'.. parameters of the module , but i want to know in detail the function about this module. can someone helps me ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or can u tell me some method to know the function of any funciton module, and some method to find appropriate function module to fit my requirement. thanks for your advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Aug 2007 01:53:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-24T01:53:37Z</dc:date>
    <item>
      <title>how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701969#M625764</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 am reading others' source code without , and find it uses function module 'HELP_VALUES_GET_WITH_TABLE'. i can mainly guess what function this function module perform, but not sure. i double click it and get into the function builder screen of this module. though i can see the 'import','export'.. parameters of the module , but i want to know in detail the function about this module. can someone helps me ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or can u tell me some method to know the function of any funciton module, and some method to find appropriate function module to fit my requirement. thanks for your advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 01:53:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701969#M625764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T01:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701970#M625765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to tcode se37 and refer the documentation or go to &lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://www.se37.com"&amp;gt;this site for documentation&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Jul 24, 2008 12:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701970#M625765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701971#M625766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer from the documentation in the t-code se37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : v_dataum TYPE sy-datum.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_DATE'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   DATE_FOR_FIRST_MONTH               = SY-DATUM&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPLAY                            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FACTORY_CALENDAR_ID                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GREGORIAN_CALENDAR_FLAG            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HOLIDAY_CALENDAR_ID                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PROGNAME_FOR_FIRST_MONTH           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   SELECT_DATE                        = v_datum&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SELECT_WEEK                        = SELECT_WEEK&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SELECT_WEEK_BEGIN                  = SELECT_WEEK_BEGIN&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SELECT_WEEK_END                    = SELECT_WEEK_END&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALENDAR_BUFFER_NOT_LOADABLE       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_AFTER_RANGE                   = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_BEFORE_RANGE                  = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_INVALID                       = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FACTORY_CALENDAR_NOT_FOUND         = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HOLIDAY_CALENDAR_NOT_FOUND         = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_CONFLICT                 = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                             = 8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help Regarding FM 'HELP_VALUES_GET_WITH_TABLE'&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/attach-a-search-help-to-the-screen-field.htm" target="test_blank"&gt;http://www.sap-img.com/abap/attach-a-search-help-to-the-screen-field.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this functionality to get help. &lt;/P&gt;&lt;P&gt;*-- Set up fields to retrieve data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: t001w.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: lc_werks      LIKE t001w-werks,&lt;/P&gt;&lt;P&gt;      ltab_fields LIKE help_value OCCURS 0 with header line,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      BEGIN OF ltab_values OCCURS 0,&lt;/P&gt;&lt;P&gt;        feld(40) TYPE c,&lt;/P&gt;&lt;P&gt;      END OF ltab_values.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*-- Set up fields to retrieve data&lt;/P&gt;&lt;P&gt;  ltab_fields-tabname    = 'T001W'.&lt;/P&gt;&lt;P&gt;  ltab_fields-fieldname  = 'WERKS'.&lt;/P&gt;&lt;P&gt;  ltab_fields-selectflag = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND ltab_fields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ltab_fields-tabname    = 'T001W'.&lt;/P&gt;&lt;P&gt;  ltab_fields-fieldname  = 'NAME1'.&lt;/P&gt;&lt;P&gt;  ltab_fields-selectflag = space.&lt;/P&gt;&lt;P&gt;  APPEND ltab_fields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*-- Fill values&lt;/P&gt;&lt;P&gt;  select * from t001w.&lt;/P&gt;&lt;P&gt;    ltab_values-feld = t001w-werks.&lt;/P&gt;&lt;P&gt;    append ltab_values.&lt;/P&gt;&lt;P&gt;    ltab_values-feld = t001w-name1.&lt;/P&gt;&lt;P&gt;    append ltab_values.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          fieldname                 = 'WERKS'&lt;/P&gt;&lt;P&gt;          tabname                   = 'T001W'&lt;/P&gt;&lt;P&gt;          title_in_values_list      = 'Select a value'&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          select_value              = lc_werks&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          fields                    = ltab_fields&lt;/P&gt;&lt;P&gt;          valuetab                  = ltab_values&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          field_not_in_ddic         = 01&lt;/P&gt;&lt;P&gt;          more_then_one_selectfield = 02&lt;/P&gt;&lt;P&gt;          no_selectfield            = 03.&lt;/P&gt;&lt;P&gt;&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;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Jul 24, 2008 12:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701971#M625766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701972#M625767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto &lt;A href="https://community.sap.com/www.se37.com" target="test_blank"&gt;www.se37.com&lt;/A&gt; and login as guest, enter the name of the FM and see the documentation or else do the same from tcode se37.&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;kaushik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701972#M625767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701973#M625768</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 try Goto --&amp;gt; Documentation, and get note 'Document HELP_VALUES_GET_WITH_TABLE' is not avilable in language EN, maybe there&lt;/P&gt;&lt;P&gt;is documents written in Genman, but i don't know Genman...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701973#M625768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701974#M625769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go through documentation in t-code SE37.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;see the first few lines in the link of my above post.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Jul 24, 2008 12:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:38:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701974#M625769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to know the function of a function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701975#M625770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i login in the &lt;A href="https://community.sap.com/www.se37.com" target="test_blank"&gt;www.se37.com&lt;/A&gt; and enter HELP_VALUES_GET_WITH_TABLE&lt;/P&gt;&lt;P&gt;in the FM input field, and the website popup 'there is no documentaton for function module HELP_VALUES_GET_WITH_TABLE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is the FM HELP_VALUES_GET_WITH_TABLE not used frequently?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 02:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-know-the-function-of-a-function-module/m-p/2701975#M625770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T02:39:50Z</dc:date>
    </item>
  </channel>
</rss>

