<?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 needed in funciton module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192512#M467570</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;The best way to know about the function module and its parameters is just go to SE37 and display these FMs and find its Documentation ,,&lt;/P&gt;&lt;P&gt; These two has the Documentation you can find the best explanation about the function modules and its parameters with examples also ......&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
EXPORTING
CLIENT = SY-MANDT
date = sy-datum
foreign_amount = XXXX "enter the amount which is to be converted
foreign_currency = YYY "enter the currency of the amount to be converted
local_currency = ZZZ "enter the to currenct
* RATE = 0
TYPE_OF_RATE = 'M' "enter the type of the rate
READ_TCURR = 'X' "check this is you want to take the data from table tcurr
IMPORTING
EXCHANGE_RATE =
* FOREIGN_FACTOR =
LOCAL_AMOUNT = amt "this is your result
* LOCAL_FACTOR =
* EXCHANGE_RATEX =
* FIXED_RATE =
* DERIVED_RATE_TYPE =
EXCEPTIONS
NO_RATE_FOUND = 1
OVERFLOW = 2
NO_FACTORS_FOUND = 3
NO_SPREAD_FOUND = 4
DERIVED_2_TIMES = 5
OTHERS = 6

Check this example

DATA: v_amount TYPE p DECIMALS 2.

CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY'
EXPORTING
date = sy-datum
foreign_currency = 'INR'
local_amount = '1.00'
local_currency = 'USD'
IMPORTING
foreign_amount = v_amount
EXCEPTIONS
no_rate_found = 1
overflow = 2
no_factors_found = 3
no_spread_found = 4
derived_2_times = 5
OTHERS = 6.
IF sy-subrc = 0.
WRITE: / 'US dollar to Indian rupees - ', v_amount.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rk Pasupuleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2007 07:21:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-27T07:21:32Z</dc:date>
    <item>
      <title>help needed in funciton module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192511#M467569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one please tell how this fm can be used in the pgm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input/opt fileds and all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY&lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 07:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192511#M467569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T07:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in funciton module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192512#M467570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;The best way to know about the function module and its parameters is just go to SE37 and display these FMs and find its Documentation ,,&lt;/P&gt;&lt;P&gt; These two has the Documentation you can find the best explanation about the function modules and its parameters with examples also ......&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
EXPORTING
CLIENT = SY-MANDT
date = sy-datum
foreign_amount = XXXX "enter the amount which is to be converted
foreign_currency = YYY "enter the currency of the amount to be converted
local_currency = ZZZ "enter the to currenct
* RATE = 0
TYPE_OF_RATE = 'M' "enter the type of the rate
READ_TCURR = 'X' "check this is you want to take the data from table tcurr
IMPORTING
EXCHANGE_RATE =
* FOREIGN_FACTOR =
LOCAL_AMOUNT = amt "this is your result
* LOCAL_FACTOR =
* EXCHANGE_RATEX =
* FIXED_RATE =
* DERIVED_RATE_TYPE =
EXCEPTIONS
NO_RATE_FOUND = 1
OVERFLOW = 2
NO_FACTORS_FOUND = 3
NO_SPREAD_FOUND = 4
DERIVED_2_TIMES = 5
OTHERS = 6

Check this example

DATA: v_amount TYPE p DECIMALS 2.

CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY'
EXPORTING
date = sy-datum
foreign_currency = 'INR'
local_amount = '1.00'
local_currency = 'USD'
IMPORTING
foreign_amount = v_amount
EXCEPTIONS
no_rate_found = 1
overflow = 2
no_factors_found = 3
no_spread_found = 4
derived_2_times = 5
OTHERS = 6.
IF sy-subrc = 0.
WRITE: / 'US dollar to Indian rupees - ', v_amount.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rk Pasupuleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 07:21:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192512#M467570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T07:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in funciton module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192513#M467571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Try this code.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: IV_EXCH_RATE_DATE TYPE  CNVT_EXCH_RATE_DATE,&lt;/P&gt;&lt;P&gt;IV_EXCH_RATE_TYPE TYPE  CNVT_EXCH_RATE_TYPE,&lt;/P&gt;&lt;P&gt;IV_EXCH_RATE TYPE  CNVT_EXCH_RATE,&lt;/P&gt;&lt;P&gt;IV_FOREIGN_CURRENCY TYPE  CNVT_FOREIGN_CURRENCY_UNIT,&lt;/P&gt;&lt;P&gt;IV_LOCAL_CURRENCY TYPE  CNVT_LOCAL_CURRENCY_UNIT,&lt;/P&gt;&lt;P&gt;IV_AMOUNT TYPE  CNVT_CURRENCY_AMOUNT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  perform check_convert_to_local using iv_exch_rate_date&lt;/P&gt;&lt;P&gt;                                       iv_exch_rate_type&lt;/P&gt;&lt;P&gt;                                       iv_exch_rate&lt;/P&gt;&lt;P&gt;                                       iv_amount&lt;/P&gt;&lt;P&gt;                                       iv_foreign_currency&lt;/P&gt;&lt;P&gt;                                       iv_local_currency.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  check_convert_to_local&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form check_convert_to_local&lt;/P&gt;&lt;P&gt;     using uv_exch_date        type cnvt_exch_rate_date&lt;/P&gt;&lt;P&gt;           uv_exch_type        type cnvt_exch_rate_type&lt;/P&gt;&lt;P&gt;           uv_exch_rate        type cnvt_exch_rate&lt;/P&gt;&lt;P&gt;           uv_foreign_amount   type cnvt_foreign_currency_amount&lt;/P&gt;&lt;P&gt;           uv_foreign_currency type cnvt_foreign_currency_unit&lt;/P&gt;&lt;P&gt;           uv_local_currency   type cnvt_local_currency_unit.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;variables for ABAP call&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: lv_local_amount_abap      type cnvt_foreign_currency_amount,&lt;/P&gt;&lt;P&gt;        lv_local_amount_abap2(16) type p decimals 3,&lt;/P&gt;&lt;P&gt;        lv_local_amount_java      type cnvt_local_currency_amount.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  write: / text-101 color 7.&lt;/P&gt;&lt;P&gt;  write: / text-009,&lt;/P&gt;&lt;P&gt;           uv_foreign_amount,&lt;/P&gt;&lt;P&gt;           text-010,&lt;/P&gt;&lt;P&gt;           text-013,&lt;/P&gt;&lt;P&gt;           uv_foreign_currency,&lt;/P&gt;&lt;P&gt;           text-011,&lt;/P&gt;&lt;P&gt;           text-012,&lt;/P&gt;&lt;P&gt;           uv_local_currency.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call ABAP&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLIENT                  = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      date                    = uv_exch_date&lt;/P&gt;&lt;P&gt;      foreign_amount          = uv_foreign_amount&lt;/P&gt;&lt;P&gt;      foreign_currency        = uv_foreign_currency&lt;/P&gt;&lt;P&gt;      local_currency          = uv_local_currency&lt;/P&gt;&lt;P&gt;      rate                    = uv_exch_rate&lt;/P&gt;&lt;P&gt;      type_of_rate            = uv_exch_type&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  READ_TCURR              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    exchange_rate           = lv_erate&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FOREIGN_FACTOR          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      local_amount            = lv_local_amount_abap&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_FACTOR            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCHANGE_RATEX          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIXED_RATE              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DERIVED_RATE_TYPE       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;       no_rate_found           = 1&lt;/P&gt;&lt;P&gt;       overflow                = 2&lt;/P&gt;&lt;P&gt;       no_factors_found        = 3&lt;/P&gt;&lt;P&gt;       no_spread_found         = 4&lt;/P&gt;&lt;P&gt;       derived_2_times         = 5&lt;/P&gt;&lt;P&gt;       others                  = 6.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4&lt;/P&gt;&lt;P&gt;            into gv_message.&lt;/P&gt;&lt;P&gt;    write: / gv_message.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  lv_local_amount_abap2 = lv_local_amount_abap. "rounding&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endform.                    "check_convert_to_local&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if it solves ur query or answer is helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chinmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 07:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192513#M467571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T07:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in funciton module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192514#M467572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;   if you want do currency conversion,goto transaction SE37 just use CONVERT_TO_LOCAL_CURRENCY,and fill all required fields in that function module.&lt;/P&gt;&lt;P&gt;use CONVERT_TO_FOREIGN_CURRENCY as similar to above&lt;/P&gt;&lt;P&gt;please reward my answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 07:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192514#M467572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T07:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in funciton module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192515#M467573</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; Translate foreign currency amount to local currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; An amount in local currency is calculated from a specified foreign&lt;/P&gt;&lt;P&gt; currency amount. For this, you may either specify the translation rate&lt;/P&gt;&lt;P&gt; manually (Parameter RATE) or have the system determine it from table&lt;/P&gt;&lt;P&gt; TCURR on the basis of the rate type, date and currency key. Because the&lt;/P&gt;&lt;P&gt; ratios for the units of the currencies involved in the translation are&lt;/P&gt;&lt;P&gt; significant for this translation, table TCURF is always read by the&lt;/P&gt;&lt;P&gt; program, and there must be a valid entry there for the data specified.&lt;/P&gt;&lt;P&gt; IF exchange rate fixing is defined for the exchange rate type&lt;/P&gt;&lt;P&gt; TYPE_OF_RATE or an alternative exchange rate is defined for the currency&lt;/P&gt;&lt;P&gt; pair, this information is transferred to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When table TCURR is read, the foreign currency key is always taken as&lt;/P&gt;&lt;P&gt; the first part of the key and the local currency as the second part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Sample call-up:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     EXPORTING   DATE             = BKPF-WWERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 FOREIGN_CURRENCY = BKPF-WAERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 LOCAL_CURRENCY   = T001-WAERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 FOREIGN_AMOUNT   = BSEG-WRBTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    FOREIGN_AMOUNT   = BSEG-WRBTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    RATE             = BKPF-KURSF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    TYPE_OF_RATE     = 'M'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IMPORTING   EXCHANGE_RATE    = KURS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    LOCAL_AMOUNT     = BSEG-DMBTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    FOREIGN_FACTOR   = FAKTOR-F&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    LOCAL_FACTOR     = FAKTOR-L&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    FIXED_RATE       = FIXKURS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        EXCEPTIONS  NO_RATE_FOUND    = 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    NO_FACTORS_FOUND = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLIENT&lt;/P&gt;&lt;P&gt;    DATE&lt;/P&gt;&lt;P&gt;    FOREIGN_AMOUNT&lt;/P&gt;&lt;P&gt;    FOREIGN_CURRENCY&lt;/P&gt;&lt;P&gt;    LOCAL_CURRENCY&lt;/P&gt;&lt;P&gt;    RATE&lt;/P&gt;&lt;P&gt;    TYPE_OF_RATE&lt;/P&gt;&lt;P&gt;    READ_TCURR&lt;/P&gt;&lt;P&gt;    EXCHANGE_RATE&lt;/P&gt;&lt;P&gt;    FOREIGN_FACTOR&lt;/P&gt;&lt;P&gt;    LOCAL_AMOUNT&lt;/P&gt;&lt;P&gt;    LOCAL_FACTOR&lt;/P&gt;&lt;P&gt;    EXCHANGE_RATEX&lt;/P&gt;&lt;P&gt;    FIXED_RATE   EXCHANGE_RATEX&lt;/P&gt;&lt;P&gt;   FIXED_RATE&lt;/P&gt;&lt;P&gt;   DERIVED_RATE_TYPE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xceptions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   NO_RATE_FOUND&lt;/P&gt;&lt;P&gt;   OVERFLOW&lt;/P&gt;&lt;P&gt;   NO_FACTORS_FOUND&lt;/P&gt;&lt;P&gt;   NO_SPREAD_FOUND&lt;/P&gt;&lt;P&gt;   DERIVED_2_TIMES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unction Group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SCUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can also check this from TC se37:- go to that FM and click on FM Documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&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;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 07:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-funciton-module/m-p/2192515#M467573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T07:27:21Z</dc:date>
    </item>
  </channel>
</rss>

