<?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: in bom explosion i got the error msg while using select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862964#M364154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;          See if there is any function modue which accepts an internal table instead of one single value. If there is no function module like that then you might have to call this FM in a loop but i wont suggest since its not good in performance check for any other function module.  This FM has one tables parameter MATCAT try and see if you can use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jan 2007 05:55:12 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-01-19T05:55:12Z</dc:date>
    <item>
      <title>in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862954#M364144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i tried to use instead of parameter i am using select options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; error function module was called incorrectly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; how can i rectify to solve this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;tables :mara,marc,stpo.&lt;/P&gt;&lt;P&gt;parameters: p_werks like t001w-werks obligatory.&lt;/P&gt;&lt;P&gt;select-options : P_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;constants c_x value 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_comp occurs 0,&lt;/P&gt;&lt;P&gt;idnrk like stpox-idnrk,&lt;/P&gt;&lt;P&gt;ojtxp like stpox-ojtxp,&lt;/P&gt;&lt;P&gt;menge like stpox-menge,&lt;/P&gt;&lt;P&gt;meins like stpox-meins,&lt;/P&gt;&lt;P&gt;matkl like stpox-matmk,&lt;/P&gt;&lt;P&gt;end of it_comp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_topmat like cstmat.&lt;/P&gt;&lt;P&gt;data : itab type table of mara with header line.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;perform explode_assembly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;perform write_report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************&lt;/P&gt;&lt;P&gt;top-of-page.&lt;/P&gt;&lt;P&gt;************&lt;/P&gt;&lt;P&gt;perform print_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form print_header.&lt;/P&gt;&lt;P&gt;write: /(18) 'Component'(h00),&lt;/P&gt;&lt;P&gt;(40) 'Description'(h01),&lt;/P&gt;&lt;P&gt;'Mat.Group'(h02),&lt;/P&gt;&lt;P&gt;(18) 'Quantity'(h03).&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form write_report.&lt;/P&gt;&lt;P&gt;write: / w_topmat-matnr under text-h00 color col_heading,&lt;/P&gt;&lt;P&gt;w_topmat-maktx under text-h01 color col_heading.&lt;/P&gt;&lt;P&gt;loop at it_comp.&lt;/P&gt;&lt;P&gt;write: /&lt;/P&gt;&lt;P&gt;it_comp-idnrk under text-h00,&lt;/P&gt;&lt;P&gt;it_comp-ojtxp under text-h01,&lt;/P&gt;&lt;P&gt;it_comp-matkl under text-h02,&lt;/P&gt;&lt;P&gt;it_comp-menge unit it_comp-meins under text-h03,&lt;/P&gt;&lt;P&gt;it_comp-meins.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form explode_assembly.&lt;/P&gt;&lt;P&gt;data: it_stb like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;it_stb2 like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;it_stb3 like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;w_msg(255) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr from mara into table itab where matnr between p_matnr-low and p_matnr-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at p_matnr.&lt;/P&gt;&lt;P&gt;   itab-matnr = p_matnr-low.&lt;/P&gt;&lt;P&gt;    append itab.&lt;/P&gt;&lt;P&gt;    itab-matnr = p_matnr-high.&lt;/P&gt;&lt;P&gt;    append itab.&lt;/P&gt;&lt;P&gt;    clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Explode highest level:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function 'CS_BOM_EXPL_MAT_V2'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;auskz = c_x&lt;/P&gt;&lt;P&gt;capid = 'PP01'&lt;/P&gt;&lt;P&gt;cuols = c_x&lt;/P&gt;&lt;P&gt;datuv = sy-datum&lt;/P&gt;&lt;P&gt;knfba = c_x&lt;/P&gt;&lt;P&gt;ksbvo = c_x&lt;/P&gt;&lt;P&gt;mbwls = c_x&lt;/P&gt;&lt;P&gt;mdmps = c_x&lt;/P&gt;&lt;P&gt;BGIXO = c_x&lt;/P&gt;&lt;P&gt;MKMAT = c_x&lt;/P&gt;&lt;P&gt;MMAPS = c_x&lt;/P&gt;&lt;P&gt;FBSTP = c_x&lt;/P&gt;&lt;P&gt;FTREL = c_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;importing&lt;/P&gt;&lt;P&gt;topmat = w_topmat&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;stb = it_stb&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;into w_msg.&lt;/P&gt;&lt;P&gt;write: / w_msg.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;*else.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;loop at it_stb.&lt;/P&gt;&lt;P&gt;it_comp-matkl = it_stb-matmk.&lt;/P&gt;&lt;P&gt;it_comp-idnrk = it_stb-idnrk.&lt;/P&gt;&lt;P&gt;it_comp-ojtxp = it_stb-ojtxp.&lt;/P&gt;&lt;P&gt;it_comp-menge = it_stb-menge.&lt;/P&gt;&lt;P&gt;it_comp-meins = it_stb-meins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;collect it_comp.&lt;/P&gt;&lt;P&gt;clear it_comp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i sove this error .&lt;/P&gt;&lt;P&gt;&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;ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862954#M364144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862955#M364145</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;The pasted code has no errrors ... it i executed in my system ... let us know the place where you are getting errors ...&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;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862955#M364145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862956#M364146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   Use IN instead of BETWEEN and can you give us the exact error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:39:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862956#M364146</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-01-19T05:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862957#M364147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;       In your code do the following changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_stb like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;it_stb2 like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;it_stb3 like stpox occurs 0 with header line,&lt;/P&gt;&lt;P&gt;w_msg(255) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr from mara into table itab where matnr between p_matnr-low and p_matnr-high.&lt;/P&gt;&lt;P&gt;You can write the above select in this fashion also .&lt;/P&gt;&lt;P&gt;select matnr from mara into table itab where matnr in p_matnr.&lt;/P&gt;&lt;P&gt;why you require the below code i don't understand .&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;loop at p_matnr.&lt;/P&gt;&lt;P&gt;itab-matnr = p_matnr-low.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;itab-matnr = p_matnr-high.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Use the Function Module CS_BOM_EXPLOSION and you require the configuration instance .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Explode highest level:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function 'CS_BOM_EXPL_MAT_V2'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;auskz = c_x&lt;/P&gt;&lt;P&gt;capid = 'PP01'&lt;/P&gt;&lt;P&gt;cuols = c_x&lt;/P&gt;&lt;P&gt;datuv = sy-datum&lt;/P&gt;&lt;P&gt;knfba = c_x&lt;/P&gt;&lt;P&gt;ksbvo = c_x&lt;/P&gt;&lt;P&gt;mbwls = c_x&lt;/P&gt;&lt;P&gt;mdmps = c_x&lt;/P&gt;&lt;P&gt;BGIXO = c_x&lt;/P&gt;&lt;P&gt;MKMAT = c_x&lt;/P&gt;&lt;P&gt;MMAPS = c_x&lt;/P&gt;&lt;P&gt;FBSTP = c_x&lt;/P&gt;&lt;P&gt;FTREL = c_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;importing&lt;/P&gt;&lt;P&gt;topmat = w_topmat&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;stb = it_stb&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;into w_msg.&lt;/P&gt;&lt;P&gt;write: / w_msg.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;*else.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;loop at it_stb.&lt;/P&gt;&lt;P&gt;it_comp-matkl = it_stb-matmk.&lt;/P&gt;&lt;P&gt;it_comp-idnrk = it_stb-idnrk.&lt;/P&gt;&lt;P&gt;it_comp-ojtxp = it_stb-ojtxp.&lt;/P&gt;&lt;P&gt;it_comp-menge = it_stb-menge.&lt;/P&gt;&lt;P&gt;it_comp-meins = it_stb-meins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;collect it_comp.&lt;/P&gt;&lt;P&gt;clear it_comp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862957#M364147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862958#M364148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;error is fm is allow you specify only fields of particular type under  mtnrv&lt;/P&gt;&lt;P&gt;here p_matnr is specity different field type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i check that one it gives error&lt;/P&gt;&lt;P&gt;Rds&lt;/P&gt;&lt;P&gt;ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862958#M364148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862959#M364149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Error is here in bold use p_matnr-low or high.&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;auskz = c_x&lt;/P&gt;&lt;P&gt;capid = 'PP01'&lt;/P&gt;&lt;P&gt;cuols = c_x&lt;/P&gt;&lt;P&gt;datuv = sy-datum&lt;/P&gt;&lt;P&gt;knfba = c_x&lt;/P&gt;&lt;P&gt;ksbvo = c_x&lt;/P&gt;&lt;P&gt;mbwls = c_x&lt;/P&gt;&lt;P&gt;mdmps = c_x&lt;/P&gt;&lt;P&gt;BGIXO = c_x&lt;/P&gt;&lt;P&gt;MKMAT = c_x&lt;/P&gt;&lt;P&gt;MMAPS = c_x&lt;/P&gt;&lt;P&gt;FBSTP = c_x&lt;/P&gt;&lt;P&gt;FTREL = c_x&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;mtnrv = p_matnr&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;werks = p_werks&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;topmat = w_topmat&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;stb = it_stb&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862959#M364149</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-01-19T05:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862960#M364150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;       dont use p_matnr use p_matnr-low since p_matnr is an internal table it gives you error. you should pass a filed of type matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862960#M364150</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-01-19T05:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862961#M364151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend&lt;/P&gt;&lt;P&gt;  Thank u&lt;/P&gt;&lt;P&gt; i got the ouput one materials bom,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; if i want to get from and to  materials bom &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; what i have to do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regard&lt;/P&gt;&lt;P&gt; ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862961#M364151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862962#M364152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give this way ...&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;auskz = c_x&lt;/P&gt;&lt;P&gt;capid = 'PP01'&lt;/P&gt;&lt;P&gt;cuols = c_x&lt;/P&gt;&lt;P&gt;datuv = sy-datum&lt;/P&gt;&lt;P&gt;knfba = c_x&lt;/P&gt;&lt;P&gt;ksbvo = c_x&lt;/P&gt;&lt;P&gt;mbwls = c_x&lt;/P&gt;&lt;P&gt;mdmps = c_x&lt;/P&gt;&lt;P&gt;BGIXO = c_x&lt;/P&gt;&lt;P&gt;MKMAT = c_x&lt;/P&gt;&lt;P&gt;MMAPS = c_x&lt;/P&gt;&lt;P&gt;FBSTP = c_x&lt;/P&gt;&lt;P&gt;FTREL = c_x&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;mtnrv = p_matnr-low&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;werks = p_werks&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;topmat = w_topmat&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;stb = it_stb&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;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862962#M364152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862963#M364153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend&lt;/P&gt;&lt;P&gt;Thank u&lt;/P&gt;&lt;P&gt;i got the ouput one materials bom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i want to get from and to materials bom &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard&lt;/P&gt;&lt;P&gt;ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862963#M364153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T05:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862964#M364154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;          See if there is any function modue which accepts an internal table instead of one single value. If there is no function module like that then you might have to call this FM in a loop but i wont suggest since its not good in performance check for any other function module.  This FM has one tables parameter MATCAT try and see if you can use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 05:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862964#M364154</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-01-19T05:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862965#M364155</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; bcs the requirement is run this report in background only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if i give 1 to 500 materials i ll give gives the materials and bom &lt;/P&gt;&lt;P&gt; and download into excel.where i have to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data :  itab like table of mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt; loop at p_matnr.&lt;/P&gt;&lt;P&gt;   itab-matnr = p_matnr-low.&lt;/P&gt;&lt;P&gt;    append itab.&lt;/P&gt;&lt;P&gt;    itab-matnr = p_matnr-high.&lt;/P&gt;&lt;P&gt;    append itab.&lt;/P&gt;&lt;P&gt;    clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; instead of p_matnr-low can i use itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; regds&lt;/P&gt;&lt;P&gt; ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 06:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862965#M364155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T06:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: in bom explosion i got the error msg while using select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862966#M364156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  frineds&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        if i want to pass the low and high value to one itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; then i have to pass one by one value into function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; is it possible to get the output 1 up 10 simultaniously&lt;/P&gt;&lt;P&gt; how can i adopt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 06:56:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bom-explosion-i-got-the-error-msg-while-using-select-options/m-p/1862966#M364156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T06:56:47Z</dc:date>
    </item>
  </channel>
</rss>

