<?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: function  module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812027#M916934</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u only need 3 fields declare the internal table only with this fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_mvke occurs 0,&lt;/P&gt;&lt;P&gt;           matnr like mvke-matnr,&lt;/P&gt;&lt;P&gt;           vmsta like mvke-vmsta,&lt;/P&gt;&lt;P&gt;           vmstd like mvke-vmstd,&lt;/P&gt;&lt;P&gt;        end of i_mvke.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT MATNR&lt;/P&gt;&lt;P&gt;VMSTA&lt;/P&gt;&lt;P&gt;VMSTD&lt;/P&gt;&lt;P&gt;FROM mvke&lt;/P&gt;&lt;P&gt;INTO TABLE i_mvke&lt;/P&gt;&lt;P&gt;WHERE MATNR = MATNO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2008 15:05:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-23T15:05:19Z</dc:date>
    <item>
      <title>function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812025#M916932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hv got the output ............but i want that only 3 fields will be display which i needed.................i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  MATNR&lt;/P&gt;&lt;P&gt;        VMSTA&lt;/P&gt;&lt;P&gt;        VMSTD&lt;/P&gt;&lt;P&gt;         FROM mvke&lt;/P&gt;&lt;P&gt;         INTO corresponding fields of TABLE i_mvke&lt;/P&gt;&lt;P&gt;         WHERE MATNR = MATNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i m executing .........all the fields of table mvke are displayed.........i know that the remaining fields will contain zero/blank value........but i dont want to display all that fields.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 15:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812025#M916932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T15:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812026#M916933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Check how you have declared the internal table i_mvke.Decalre it as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:begin of str,&lt;/P&gt;&lt;P&gt;         MATNR type mvke-matnr,&lt;/P&gt;&lt;P&gt;         VMSTA type mvke-vmsta,&lt;/P&gt;&lt;P&gt;        VMSTD type mvke-VMSTD,&lt;/P&gt;&lt;P&gt;        end of str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:i_mvke type standard table of str.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 15:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812026#M916933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T15:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812027#M916934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u only need 3 fields declare the internal table only with this fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_mvke occurs 0,&lt;/P&gt;&lt;P&gt;           matnr like mvke-matnr,&lt;/P&gt;&lt;P&gt;           vmsta like mvke-vmsta,&lt;/P&gt;&lt;P&gt;           vmstd like mvke-vmstd,&lt;/P&gt;&lt;P&gt;        end of i_mvke.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT MATNR&lt;/P&gt;&lt;P&gt;VMSTA&lt;/P&gt;&lt;P&gt;VMSTD&lt;/P&gt;&lt;P&gt;FROM mvke&lt;/P&gt;&lt;P&gt;INTO TABLE i_mvke&lt;/P&gt;&lt;P&gt;WHERE MATNR = MATNO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 15:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812027#M916934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T15:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812028#M916935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did you declare your I_MVKE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare with only those fields that you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_mvke occurs 0,&lt;/P&gt;&lt;P&gt;          MATNR type mvke-matnr,&lt;/P&gt;&lt;P&gt;VMSTA type mvke-vmsta,&lt;/P&gt;&lt;P&gt;VMSTD type mvke-vmstd,&lt;/P&gt;&lt;P&gt;    end of i_mvke.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 15:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812028#M916935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T15:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812029#M916936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;give ur code for WRITE statement where you are displaying Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, that I wil go thur once and tel u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sandeep reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 15:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812029#M916936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T15:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812030#M916937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Decalre your internal table i_mvke like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_mvke OCCURS 0,&lt;/P&gt;&lt;P&gt;       MATNR TYPE mvke-MATNR ,&lt;/P&gt;&lt;P&gt;       VMSTA TYPE mvke-VMSTA,&lt;/P&gt;&lt;P&gt;       VMSTD type mvke-VMSTD,&lt;/P&gt;&lt;P&gt;   END OF i_mvke.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT MATNR&lt;/P&gt;&lt;P&gt;VMSTA&lt;/P&gt;&lt;P&gt;VMSTD&lt;/P&gt;&lt;P&gt;FROM mvke&lt;/P&gt;&lt;P&gt;INTO corresponding fields of TABLE i_mvke&lt;/P&gt;&lt;P&gt;WHERE MATNR = MATNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if it helps. let me know if you have any question.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kinjal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 21:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3812030#M916937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T21:31:54Z</dc:date>
    </item>
  </channel>
</rss>

