<?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: Issue with FM : BAPI_MATPHYSINV_CREATE_MULT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-fm-bapi-matphysinv-create-mult/m-p/3598603#M866674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;This is due to a limit in the function MB_GROUP_INVENTORY_ITEMS&lt;/P&gt;&lt;P&gt;the code here is &lt;/P&gt;&lt;P&gt;21	  IF MAX_POSITIONS IS INITIAL.&lt;/P&gt;&lt;P&gt;22	    MAX_POSITIONS = '300'.&lt;/P&gt;&lt;P&gt;23	  ELSEIF MAX_POSITIONS &amp;gt; '300'.&lt;/P&gt;&lt;P&gt;24	    MAX_POSITIONS = '300'.&lt;/P&gt;&lt;P&gt;25	  ENDIF.&lt;/P&gt;&lt;P&gt;meaning that you may limit below 300 but not above it.  I looked for notes and find one adding the max limit to 333 , but that's more or less the same.&lt;/P&gt;&lt;P&gt;There are a few good reasons to keep the nr of items down..&lt;/P&gt;&lt;P&gt;When you come to post teh differences you are limited to 999 postings to fi and each item with a gap requires 2 .. so it takes you down to 499 items as a good maximum.&lt;/P&gt;&lt;P&gt;And in the process of registrering the count you will also find better performance if the # items are "not too high"&lt;/P&gt;&lt;P&gt;And finally.. You are limited to the max nr of items = 999 ..due to the 3 digits item nr ..&lt;/P&gt;&lt;P&gt;So we have decided to live happily with the limit of 300..&lt;/P&gt;&lt;P&gt;Good luck..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Nov 2010 12:22:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-29T12:22:35Z</dc:date>
    <item>
      <title>Issue with FM : BAPI_MATPHYSINV_CREATE_MULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-fm-bapi-matphysinv-create-mult/m-p/3598602#M866673</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 am using the function module post physical inventory docuemnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is one parameter where in you can pass the max number of items that you want on the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tired passing 999 and 99999 but the time it posted only 300 items system default limit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has any one ran into the same issue before? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MATPHYSINV_CREATE_MULT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            head     = l_wa_head&lt;/P&gt;&lt;P&gt;            maxitems = v_max_count ( 999 or 99999) &lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            items    = it_item&lt;/P&gt;&lt;P&gt;            return   = i_it_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 05:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-fm-bapi-matphysinv-create-mult/m-p/3598602#M866673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T05:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with FM : BAPI_MATPHYSINV_CREATE_MULT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-fm-bapi-matphysinv-create-mult/m-p/3598603#M866674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;This is due to a limit in the function MB_GROUP_INVENTORY_ITEMS&lt;/P&gt;&lt;P&gt;the code here is &lt;/P&gt;&lt;P&gt;21	  IF MAX_POSITIONS IS INITIAL.&lt;/P&gt;&lt;P&gt;22	    MAX_POSITIONS = '300'.&lt;/P&gt;&lt;P&gt;23	  ELSEIF MAX_POSITIONS &amp;gt; '300'.&lt;/P&gt;&lt;P&gt;24	    MAX_POSITIONS = '300'.&lt;/P&gt;&lt;P&gt;25	  ENDIF.&lt;/P&gt;&lt;P&gt;meaning that you may limit below 300 but not above it.  I looked for notes and find one adding the max limit to 333 , but that's more or less the same.&lt;/P&gt;&lt;P&gt;There are a few good reasons to keep the nr of items down..&lt;/P&gt;&lt;P&gt;When you come to post teh differences you are limited to 999 postings to fi and each item with a gap requires 2 .. so it takes you down to 499 items as a good maximum.&lt;/P&gt;&lt;P&gt;And in the process of registrering the count you will also find better performance if the # items are "not too high"&lt;/P&gt;&lt;P&gt;And finally.. You are limited to the max nr of items = 999 ..due to the 3 digits item nr ..&lt;/P&gt;&lt;P&gt;So we have decided to live happily with the limit of 300..&lt;/P&gt;&lt;P&gt;Good luck..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 12:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-fm-bapi-matphysinv-create-mult/m-p/3598603#M866674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-29T12:22:35Z</dc:date>
    </item>
  </channel>
</rss>

