<?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: pass a particular value  in the function module. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589292#M864189</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requiremnt is to select the entries for company from a table where the company code value starts from 2* only there are many other company code values  in that table apart from 2000 like1000 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: I need values for Company that has a company code of 2000,2001,2002,2003.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls advice..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2008 21:24:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-24T21:24:29Z</dc:date>
    <item>
      <title>pass a particular value  in the function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589290#M864187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a function module READ_HAUPTBUCH_TEXT , here in the importing table KONTENPLAN like ska1-ktopl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I need to pass a value as ZNOA for KONTENPLAN while calling the function which is maintained in the db, but it is always picking up the value 'AZ'.&lt;/P&gt;&lt;P&gt;can you please let me know as to how i do it .thx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 18:39:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589290#M864187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T18:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: pass a particular value  in the function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589291#M864188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sandeep it is better to pass like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_ktopl type  ska1-ktopl.&lt;/P&gt;&lt;P&gt;        clear v_ktopl.&lt;/P&gt;&lt;P&gt;         v_ktopl = itab-ktopl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'READ_HAUPTBUCH_TEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          kontenplan           =  v_ktopl&lt;/P&gt;&lt;P&gt;          sachkonto            =&lt;/P&gt;&lt;P&gt;          sprache              =&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NO_BUFFER            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TEXT_WA              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TEXT_NOT_FOUND       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS               = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      ENDIF.&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 18:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589291#M864188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T18:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: pass a particular value  in the function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589292#M864189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requiremnt is to select the entries for company from a table where the company code value starts from 2* only there are many other company code values  in that table apart from 2000 like1000 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: I need values for Company that has a company code of 2000,2001,2002,2003.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls advice..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 21:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-a-particular-value-in-the-function-module/m-p/3589292#M864189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T21:24:29Z</dc:date>
    </item>
  </channel>
</rss>

