<?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 BOM component material Number in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom-component-material-number/m-p/1807008#M346327</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;I need to use a BOM materials which has some components...&lt;/P&gt;&lt;P&gt;If i give the materials it should display F4 help for the COmponents as like VA01..&lt;/P&gt;&lt;P&gt;And based on the user input it should display material...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KITDM100IGB is the BOM material...For this 14 components are there...&lt;/P&gt;&lt;P&gt;In that For 1F24 Rates It will display F4 as Rental, Lease, Service...&lt;/P&gt;&lt;P&gt;user can select any thing from this...Based on that it shoukld display the material...if the user is selecting Rental  then it is displaying as 1F24R...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done till the F4 help...but i dono how to capture the material based on the user input...&lt;/P&gt;&lt;P&gt;This is same like VA01...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CS03 it is shoing the materials like 1F24R , 1F24S, 1F24L in recursive type...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jan 2007 09:23:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-04T09:23:11Z</dc:date>
    <item>
      <title>BOM component material Number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom-component-material-number/m-p/1807008#M346327</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;I need to use a BOM materials which has some components...&lt;/P&gt;&lt;P&gt;If i give the materials it should display F4 help for the COmponents as like VA01..&lt;/P&gt;&lt;P&gt;And based on the user input it should display material...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KITDM100IGB is the BOM material...For this 14 components are there...&lt;/P&gt;&lt;P&gt;In that For 1F24 Rates It will display F4 as Rental, Lease, Service...&lt;/P&gt;&lt;P&gt;user can select any thing from this...Based on that it shoukld display the material...if the user is selecting Rental  then it is displaying as 1F24R...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done till the F4 help...but i dono how to capture the material based on the user input...&lt;/P&gt;&lt;P&gt;This is same like VA01...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CS03 it is shoing the materials like 1F24R , 1F24S, 1F24L in recursive type...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 09:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom-component-material-number/m-p/1807008#M346327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T09:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: BOM component material Number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom-component-material-number/m-p/1807009#M346328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      CAPID                 = 'PP01'&lt;/P&gt;&lt;P&gt;      DATUV                 = SY-DATUM&lt;/P&gt;&lt;P&gt;      MEHRS                 = 'X'&lt;/P&gt;&lt;P&gt;      MTNRV                 = P_MATNR&lt;/P&gt;&lt;P&gt;      WERKS                 = P_WERKS&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      STB                   = I_BOM&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ALT_NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;      CALL_INVALID          = 2&lt;/P&gt;&lt;P&gt;      MATERIAL_NOT_FOUND    = 3&lt;/P&gt;&lt;P&gt;      MISSING_AUTHORIZATION = 4&lt;/P&gt;&lt;P&gt;      NO_BOM_FOUND          = 5&lt;/P&gt;&lt;P&gt;      NO_PLANT_DATA         = 6&lt;/P&gt;&lt;P&gt;      NO_SUITABLE_BOM_FOUND = 7&lt;/P&gt;&lt;P&gt;      CONVERSION_ERROR      = 8&lt;/P&gt;&lt;P&gt;      OTHERS                = 9.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not enough clear about your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry for that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 09:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom-component-material-number/m-p/1807009#M346328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T09:26:52Z</dc:date>
    </item>
  </channel>
</rss>

