<?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: BOM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628063#M604024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to cs12 tcode there the application area field is there just for exploding the bom there what value you are giving that is the application id. In my company it is PP01 for pp.&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>Mon, 06 Aug 2007 05:08:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-06T05:08:35Z</dc:date>
    <item>
      <title>BOM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628059#M604020</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any function module to find which item(bom) the given material belongs to,how to find this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 04:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628059#M604020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T04:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: BOM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628060#M604021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CS_BOM_EXPL_MAT_V2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here &lt;/P&gt;&lt;P&gt;CAPID = application id&lt;/P&gt;&lt;P&gt;datuv = sy-datum&lt;/P&gt;&lt;P&gt;mehrs = 'X' ' for multi level bom&lt;/P&gt;&lt;P&gt;mtnrv = header material no&lt;/P&gt;&lt;P&gt;werks = plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can try also fm CS_WHERE_USED_MAT.&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>Mon, 06 Aug 2007 04:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628060#M604021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T04:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: BOM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628061#M604022</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;thanx for ur reply, how can we find application id&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 05:03:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628061#M604022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T05:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: BOM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628062#M604023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Try FM: CSAP_MAT_BOM_READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First hit against the MAST table with the material number. Then hit against STPO with the internal BOM number to get the components. There are also some function modules that will do this to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: xmast type mast.&lt;/P&gt;&lt;P&gt;data: istpo type table of stpo with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Single * from mast&lt;/P&gt;&lt;P&gt;where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;If sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Write:/ 'This material has a BOM'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;Write:/ 'No BOM found'.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ 'Components'.&lt;/P&gt;&lt;P&gt;select * into corresponding fields of table istpo&lt;/P&gt;&lt;P&gt;from stpo&lt;/P&gt;&lt;P&gt;where stlnr = xmast-stlnr.&lt;/P&gt;&lt;P&gt;loop at istpo.&lt;/P&gt;&lt;P&gt;write:/ istpo-idnrk.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 05:06:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628062#M604023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T05:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: BOM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628063#M604024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to cs12 tcode there the application area field is there just for exploding the bom there what value you are giving that is the application id. In my company it is PP01 for pp.&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>Mon, 06 Aug 2007 05:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bom/m-p/2628063#M604024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T05:08:35Z</dc:date>
    </item>
  </channel>
</rss>

