<?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 Function module testing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-testing/m-p/2244811#M484458</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to test the function module PRICING, so I go into se37 and click on test and enter all the basic fields but still dont get any output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to know the mandatory fields i need to enter to get an output, how do I find out which fields are mandatory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 May 2007 15:30:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-20T15:30:53Z</dc:date>
    <item>
      <title>Function module testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-testing/m-p/2244811#M484458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to test the function module PRICING, so I go into se37 and click on test and enter all the basic fields but still dont get any output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to know the mandatory fields i need to enter to get an output, how do I find out which fields are mandatory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 May 2007 15:30:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-testing/m-p/2244811#M484458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-20T15:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Function module testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-testing/m-p/2244812#M484459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;see the below Std programs where this function module is used.&lt;/P&gt;&lt;P&gt;LMEPRF0V&lt;/P&gt;&lt;P&gt;LMEPRF1Y&lt;/P&gt;&lt;P&gt;LMLSPF4V&lt;/P&gt;&lt;P&gt;LMLSPF9S&lt;/P&gt;&lt;P&gt;LTAX1F02&lt;/P&gt;&lt;P&gt;LTAX1U02&lt;/P&gt;&lt;P&gt;LTAX1U04&lt;/P&gt;&lt;P&gt;LTAX1U13&lt;/P&gt;&lt;P&gt;LTAX1U15&lt;/P&gt;&lt;P&gt;LTAX1U18&lt;/P&gt;&lt;P&gt;LV60AA60&lt;/P&gt;&lt;P&gt;LV60AA70&lt;/P&gt;&lt;P&gt;LV60AF0P&lt;/P&gt;&lt;P&gt;LV60AF0R&lt;/P&gt;&lt;P&gt;LV60FF0F&lt;/P&gt;&lt;P&gt;LV60FF0X&lt;/P&gt;&lt;P&gt;LV61AU18&lt;/P&gt;&lt;P&gt;LVFRRF0C&lt;/P&gt;&lt;P&gt;LVIMPF0F&lt;/P&gt;&lt;P&gt;LVIMPF0P&lt;/P&gt;&lt;P&gt;MM06EFKO_PREISFINDUNG&lt;/P&gt;&lt;P&gt;MM06EFMP&lt;/P&gt;&lt;P&gt;MV13AF0K&lt;/P&gt;&lt;P&gt;have a look at these programs and pass the parameters&lt;/P&gt;&lt;P&gt;You have to pass the structures KOMK and KOMP and take the values to TKOMV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: preis_art LIKE komv-ksteu,&lt;/P&gt;&lt;P&gt;DATA:    BEGIN OF tkomv OCCURS 50.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE komv.&lt;/P&gt;&lt;P&gt;DATA:    END OF tkomv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'PRICING'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        calculation_type = preis_art&lt;/P&gt;&lt;P&gt;        comm_head_i      = komk&lt;/P&gt;&lt;P&gt;        comm_item_i      = komp&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        comm_head_e      = komk&lt;/P&gt;&lt;P&gt;        comm_item_e      = komp&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        tkomv            = tkomv.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Kopfdaten übernehmen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MOVE komk TO tkomk.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;und in Tabelle einstellen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MODIFY tkomk INDEX komp-ix_komk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 May 2007 15:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-testing/m-p/2244812#M484459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-20T15:41:35Z</dc:date>
    </item>
  </channel>
</rss>

