<?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: function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2530877#M573857</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;   This function module is intended for internal use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module reads a decision tree of a feature with the transferred field contents and determines the expected return value for the field contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module HR_FEATURE_BACKTABLE reads a feature with a table return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Read the feature M0001:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables pme04.&lt;/P&gt;&lt;P&gt;data feature like t549b-namen.&lt;/P&gt;&lt;P&gt;data back_tab(50) occurs 1 with header line.&lt;/P&gt;&lt;P&gt;data status(1).&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;pme04-tclas = 'A'.&lt;/P&gt;&lt;P&gt;pme04-infty = '0001'.&lt;/P&gt;&lt;P&gt;feature = 'M0001'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;call function 'HR_FEATURE_BACKTABLE'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;           feature                     = feature&lt;/P&gt;&lt;P&gt;           struc_content               = pme04&lt;/P&gt;&lt;P&gt;           kind_of_error               = space&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;          back                         = back_tab&lt;/P&gt;&lt;P&gt;          status                       = status&lt;/P&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;          dummy                        = 1&lt;/P&gt;&lt;P&gt;           error_operation             = 2&lt;/P&gt;&lt;P&gt;           no_backvalue                = 3&lt;/P&gt;&lt;P&gt;          feature_not_generated       = 4&lt;/P&gt;&lt;P&gt;          invalid_sign_in_funid       = 5&lt;/P&gt;&lt;P&gt;          field_in_report_tab_in_pe03 = 6&lt;/P&gt;&lt;P&gt;          others                       = 7.&lt;/P&gt;&lt;P&gt;case sy-subrc.&lt;/P&gt;&lt;P&gt;  when 2.&lt;/P&gt;&lt;P&gt;  when 3.&lt;/P&gt;&lt;P&gt;  when 4.&lt;/P&gt;&lt;P&gt;  when 5.&lt;/P&gt;&lt;P&gt;  when 6.&lt;/P&gt;&lt;P&gt;endcase.&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>Wed, 11 Jul 2007 08:47:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-11T08:47:39Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2530876#M573856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m using HR_FEATURE_BACKTABLE to read the feature will it do its intended work if i call it using above function module for eg if feature is intended for sending a message to distribution list. if i call it using thid function module it returns me a table giving distribution list , message etc.. will it send a message using this module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 08:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2530876#M573856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T08:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2530877#M573857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;   This function module is intended for internal use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module reads a decision tree of a feature with the transferred field contents and determines the expected return value for the field contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module HR_FEATURE_BACKTABLE reads a feature with a table return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Read the feature M0001:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables pme04.&lt;/P&gt;&lt;P&gt;data feature like t549b-namen.&lt;/P&gt;&lt;P&gt;data back_tab(50) occurs 1 with header line.&lt;/P&gt;&lt;P&gt;data status(1).&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;pme04-tclas = 'A'.&lt;/P&gt;&lt;P&gt;pme04-infty = '0001'.&lt;/P&gt;&lt;P&gt;feature = 'M0001'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;call function 'HR_FEATURE_BACKTABLE'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;           feature                     = feature&lt;/P&gt;&lt;P&gt;           struc_content               = pme04&lt;/P&gt;&lt;P&gt;           kind_of_error               = space&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;          back                         = back_tab&lt;/P&gt;&lt;P&gt;          status                       = status&lt;/P&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;          dummy                        = 1&lt;/P&gt;&lt;P&gt;           error_operation             = 2&lt;/P&gt;&lt;P&gt;           no_backvalue                = 3&lt;/P&gt;&lt;P&gt;          feature_not_generated       = 4&lt;/P&gt;&lt;P&gt;          invalid_sign_in_funid       = 5&lt;/P&gt;&lt;P&gt;          field_in_report_tab_in_pe03 = 6&lt;/P&gt;&lt;P&gt;          others                       = 7.&lt;/P&gt;&lt;P&gt;case sy-subrc.&lt;/P&gt;&lt;P&gt;  when 2.&lt;/P&gt;&lt;P&gt;  when 3.&lt;/P&gt;&lt;P&gt;  when 4.&lt;/P&gt;&lt;P&gt;  when 5.&lt;/P&gt;&lt;P&gt;  when 6.&lt;/P&gt;&lt;P&gt;endcase.&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>Wed, 11 Jul 2007 08:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2530877#M573857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T08:47:39Z</dc:date>
    </item>
  </channel>
</rss>

