<?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 MM01 Batch Input Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004201#M408345</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have 23 view for one material. When I start batch input selecting all views (SELA) after that I want takeout 2 view because I don't need them. My code is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'CONVERSION_EXIT_ALPHA_INPUT'
       exporting
            INPUT   = tab-bismt
      importing
           OUTPUT  = tab-bismt
       exceptions
            others  = 1.

select single pstat from mara into v_vpsta where matnr = tab-bismt.

call function 'SELECTION_VIEWS_FIND'
exporting
bildsequenz = '21'
pflegestatus = v_vpsta
tables
bildtab = i_bildtab.


Loop at i_bildtab Into wabildtab.
  If wabildtab-dytxt = 'XXX Grubu Urun Verileri' Or wabildtab-dytxt = 'Kalite yonetimi'.
     CONCATENATE 'MSICHTAUSW-KZSEL(' wabildtab-IDXBD ')' Into Ad.
     perform isle using ''   ''  Ad ''.
  Endif.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute this code it is give me MSICHTAUSW-KZSEL(22) not found. But I now this material have 23 view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is problem? I think table control of views cann't keep all view rows. How can I fix it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mehmet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Mar 2007 15:45:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-19T15:45:43Z</dc:date>
    <item>
      <title>MM01 Batch Input Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004201#M408345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have 23 view for one material. When I start batch input selecting all views (SELA) after that I want takeout 2 view because I don't need them. My code is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'CONVERSION_EXIT_ALPHA_INPUT'
       exporting
            INPUT   = tab-bismt
      importing
           OUTPUT  = tab-bismt
       exceptions
            others  = 1.

select single pstat from mara into v_vpsta where matnr = tab-bismt.

call function 'SELECTION_VIEWS_FIND'
exporting
bildsequenz = '21'
pflegestatus = v_vpsta
tables
bildtab = i_bildtab.


Loop at i_bildtab Into wabildtab.
  If wabildtab-dytxt = 'XXX Grubu Urun Verileri' Or wabildtab-dytxt = 'Kalite yonetimi'.
     CONCATENATE 'MSICHTAUSW-KZSEL(' wabildtab-IDXBD ')' Into Ad.
     perform isle using ''   ''  Ad ''.
  Endif.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute this code it is give me MSICHTAUSW-KZSEL(22) not found. But I now this material have 23 view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is problem? I think table control of views cann't keep all view rows. How can I fix it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mehmet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 15:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004201#M408345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: MM01 Batch Input Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004202#M408346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do the recordng in SHDB.&lt;/P&gt;&lt;P&gt;YOu can probably see that the number of views that you see in the recording mode is not 22 at a time.&lt;/P&gt;&lt;P&gt;You need to press a page down or two page downs to reac the 22nd view.&lt;/P&gt;&lt;P&gt;record that page down user action also. Then modify the BDC recording part in your code also, in order to handle the page down user action.&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>Mon, 19 Mar 2007 15:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004202#M408346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: MM01 Batch Input Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004203#M408347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I must change my views from stuation of material type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some case for material types. So Can I understand view number from its comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 15:56:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm01-batch-input-error/m-p/2004203#M408347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:56:47Z</dc:date>
    </item>
  </channel>
</rss>

