<?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: standard function modules in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665711#M882865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai&lt;/P&gt;&lt;P&gt;   suman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               Standard function modulaes are predefined by sap to perform specific task.&lt;/P&gt;&lt;P&gt;we can use those modules in our programs by going to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patterns -&amp;gt; call function option. Then give the name of the standard function module and click on ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before going to use  a standard function module, you should find first by going to &lt;/P&gt;&lt;P&gt;transaction SE37 based on the name of the concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: To translate the internal date format to external date format or vice versa,&lt;/P&gt;&lt;P&gt;      converting one unit of measure to another unit of measure,&lt;/P&gt;&lt;P&gt;      converting hexadecimal to characters&lt;/P&gt;&lt;P&gt;Once , u get the fm in your program , identifying the mandatory parameters passed to fm and give proper values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the example prevoius reply.Then u got the clear idea.&lt;/P&gt;&lt;P&gt;we are using standard fm's very frequently.&lt;/P&gt;&lt;P&gt;There are so many fm's used in real time programs.&lt;/P&gt;&lt;P&gt;it simplifies our job by reducing the coding work substatially.  &lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;Reward points  if useful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, &lt;/P&gt;&lt;P&gt;G.V.K.Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 05 Apr 2008 17:14:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-05T17:14:42Z</dc:date>
    <item>
      <title>standard function modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665709#M882863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we make use of standard function modules&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 04:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665709#M882863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T04:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: standard function modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665710#M882864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a pattern button on one of the tool bars click it and enter your function module name.specify importing and exporting parameters &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example fm which converts units of material from kg to ton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
md_convert_material_unit

CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
EXPORTING
i_matnr = l_matnr
i_in_me = l_meins_in
i_out_me = 'KG'
i_menge = l_gsmng
IMPORTING
e_menge = l_gsmng
EXCEPTIONS
error_in_application = 1
error = 2
OTHERS = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 04:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665710#M882864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T04:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: standard function modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665711#M882865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai&lt;/P&gt;&lt;P&gt;   suman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               Standard function modulaes are predefined by sap to perform specific task.&lt;/P&gt;&lt;P&gt;we can use those modules in our programs by going to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patterns -&amp;gt; call function option. Then give the name of the standard function module and click on ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before going to use  a standard function module, you should find first by going to &lt;/P&gt;&lt;P&gt;transaction SE37 based on the name of the concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: To translate the internal date format to external date format or vice versa,&lt;/P&gt;&lt;P&gt;      converting one unit of measure to another unit of measure,&lt;/P&gt;&lt;P&gt;      converting hexadecimal to characters&lt;/P&gt;&lt;P&gt;Once , u get the fm in your program , identifying the mandatory parameters passed to fm and give proper values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the example prevoius reply.Then u got the clear idea.&lt;/P&gt;&lt;P&gt;we are using standard fm's very frequently.&lt;/P&gt;&lt;P&gt;There are so many fm's used in real time programs.&lt;/P&gt;&lt;P&gt;it simplifies our job by reducing the coding work substatially.  &lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;Reward points  if useful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, &lt;/P&gt;&lt;P&gt;G.V.K.Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 17:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665711#M882865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T17:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: standard function modules</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665712#M882866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In se38 when you are editing the program you can find the PATTERN button in Menu Bar use that and write the function module which you want to use than press OK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will provide with all mandatory field, IMPORT , EXPORT Parameters than use this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-function-modules/m-p/3665712#M882866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:46:14Z</dc:date>
    </item>
  </channel>
</rss>

