<?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: how to create function module for getting customer name in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798852#M1123732</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is No need for FM, just use a select query for table &lt;STRONG&gt;KNA1&lt;/STRONG&gt; with &lt;STRONG&gt;KUNNR.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2008 07:37:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-02T07:37:50Z</dc:date>
    <item>
      <title>how to create function module for getting customer name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798849#M1123729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;               How to create function module?  when in import parameter kunnr values to be passed it must give name1 details according to the customer number...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to write the logic in source code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thiru. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 07:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798849#M1123729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T07:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to create function module for getting customer name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798850#M1123730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. First of all create function group.&lt;/P&gt;&lt;P&gt;2. Create function module using this function group.&lt;/P&gt;&lt;P&gt;3. If only one kunnr is needed at a time, create import parameter for it. But if many kunnr to be entered at a time,use table.&lt;/P&gt;&lt;P&gt;4. Fetch name1 for each kunnr from KNA1 table.&lt;/P&gt;&lt;P&gt;"-&amp;gt;&amp;gt; if many kunnr &lt;/P&gt;&lt;P&gt;if not t_kunnr[] is initial.&lt;/P&gt;&lt;P&gt;select kunnr as kunnr name1 as name1&lt;/P&gt;&lt;P&gt;into table t_kunnr_name1&lt;/P&gt;&lt;P&gt;from kna1&lt;/P&gt;&lt;P&gt;for all entried in table t_kunnr&lt;/P&gt;&lt;P&gt;where kunnr = t_kunnr-kunnr.&lt;/P&gt;&lt;P&gt;endif.        &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;sort t_kunnr_name1 by kunnr name1.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from t_kunnr_name1 comparing kunnr name1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table t_kunnr_name1 will contain kunnr and its name1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope logic is clear for you now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 07:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798850#M1123730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T07:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to create function module for getting customer name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798851#M1123731</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; Check the FM BAPI_CUSTOMER_GETDETAIL...this will give the Kunnr Details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: avinash kodarapu on Dec 2, 2008 1:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 07:33:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798851#M1123731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T07:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to create function module for getting customer name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798852#M1123732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is No need for FM, just use a select query for table &lt;STRONG&gt;KNA1&lt;/STRONG&gt; with &lt;STRONG&gt;KUNNR.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 07:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798852#M1123732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T07:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to create function module for getting customer name</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798853#M1123733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use  a search help  like BBPH_DEBITOR_GENERAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 07:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-function-module-for-getting-customer-name/m-p/4798853#M1123733</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2008-12-02T07:46:40Z</dc:date>
    </item>
  </channel>
</rss>

