<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Inventory Planning Report]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=6348</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=6348&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Inventory Planning Report.]]></description>
		<lastBuildDate>Wed, 02 Mar 2022 03:57:54 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=40675#p40675</link>
			<description><![CDATA[<p>Inventory Planning report does not calculate the raw materials qty. (BoM in Manufacturing) based pending sales order. Tried with Advanced Manufacturing as well. We could find in neither cust. order qty. nor in demand qty. is there any solutions to fix this issue?</p>]]></description>
			<author><![CDATA[null@example.com (geesyscare)]]></author>
			<pubDate>Wed, 02 Mar 2022 03:57:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=40675#p40675</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=39714#p39714</link>
			<description><![CDATA[<p>Brother It looks like the description and long description affects and also the no of query which runs for this report is huge. </p><p>@Joe we need to find an alternative&nbsp; way for it.</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Thu, 15 Jul 2021 11:19:51 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=39714#p39714</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=39709#p39709</link>
			<description><![CDATA[<p>We have Unique &quot;stock id&quot; not &quot;Description&quot;. Stock ID has assigned with auto increment. We have over 30 unique categories and over 13k Stock IDs. FA is running of 4CPU, 16GB RAM based server. We are not able use inventory planning and stock check sheet report as on date. <br />it is possible to sort/group it by &quot;stock id&quot;?</p>]]></description>
			<author><![CDATA[null@example.com (geesyscare)]]></author>
			<pubDate>Thu, 15 Jul 2021 06:38:34 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=39709#p39709</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=37407#p37407</link>
			<description><![CDATA[<p><strong>rep302.php</strong> is the <a href="https://frontaccounting.com/fawiki/uploads/Help/Rep302_InvPlanRpt.png">Inventory Planning Report</a>.</p><p>There are only 2 main SQLs in it in the functions:<br /></p><div class="codebox"><pre><code>getTransactions()
getPeriods()</code></pre></div><p>Do some single stepping and check the value of the $sql variable in them and see if the tables need any (non primary key) indexes to speed it up.</p><p>Hope you have the following Unique Indexes:<br /></p><div class="codebox"><pre><code>`stock_category`.`description`
`stock_master`.`description`</code></pre></div><p>The former is there in my default install and the latter may need to be inculcated.</p><p>How many transactions are you querying and hope your PHP.ini file has adequate memory allocated.</p><p>@joe: Adding an Unique Index for <strong>`stock_master`.`description`</strong> may be in order.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 05 May 2020 15:24:23 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=37407#p37407</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=37394#p37394</link>
			<description><![CDATA[<p>Inventory Planning is executing few lakhs of queries and system is getting hanged for next 15 minutes. Horrible.<br />Afraid of Inventory reports in FA.</p>]]></description>
			<author><![CDATA[null@example.com (geesyscare)]]></author>
			<pubDate>Mon, 04 May 2020 21:08:45 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=37394#p37394</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31562#p31562</link>
			<description><![CDATA[<p>@joe: Lines 50 and 52 can be removed in <a href="https://github.com/FrontAccountingERP/FA/blob/master/reporting/rep302.php">reporting/rep302.php</a> as there can be only one <strong>description</strong> for one <strong>id</strong> for both <em>category_id</em> and <em>stock_id</em> fields.</p><p>Also <a href="https://github.com/FrontAccountingERP/FA/blob/master/reporting/rep302.php#L77">Line 77</a>&nbsp; filters on ST_CUSTCREDIT (11) and ST_CUSTDELIVERY (13) instead of on ST_SUPPRECEIVE (25) and ST_CUSTDELIVERY (13) and the need to take care of transactions pertaining to ST_MANUISSUE (28) and ST_MANURECEIVE (29) with the signs being taken care of as well.</p><p>Further, lines 38 and 39:<br /></p><div class="codebox"><pre><code>            IF(move.stock_id IS NULL, &#039;&#039;, move.loc_code) AS loc_code,
            SUM(IF(move.stock_id IS NULL, 0, move.qty)) AS qty_on_hand</code></pre></div><p>can be re-coded as<br /></p><div class="codebox"><pre><code>            COALESCE(move.loc_code, &#039;&#039;) AS loc_code,
            SUM(COALESCE(move.qty, 0)) AS qty_on_hand</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Thu, 03 May 2018 02:06:15 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31562#p31562</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31561#p31561</link>
			<description><![CDATA[<p>To produce the report did you filter by catergory or location?</p><p>Something else that may help is go to Items &amp; Inventory -&gt; Inventory Item Movement select the item you have a problem with, select the time frame and post the screen shot of the result</p>]]></description>
			<author><![CDATA[null@example.com (poncho1234)]]></author>
			<pubDate>Thu, 03 May 2018 00:45:13 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31561#p31561</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31560#p31560</link>
			<description><![CDATA[<p>You can still insert file write statements to spit out the inspection points / variable values. Read the <a href="https://frontaccounting.com/fawiki/index.php?n=Devel.TrobleshootingFrontAccounting">Wiki</a>.</p><p>Inventory Planning Report is <a href="http://reporting/rep302.php">reporting/rep302.php</a>.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 02 May 2018 17:58:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31560#p31560</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31556#p31556</link>
			<description><![CDATA[<p>Hi, you can obtain a backup copy of the database as described <a href="https://frontaccounting.com/fawiki/index.php?n=Help.BackupAndRestoreDatabase">here</a> in the wiki</p><p>You need to give us more info for us to help you - </p><div class="quotebox"><cite>apmuthu wrote:</cite><blockquote><p>Upload attachments somewhere and provide link here. Check MySQL / apache error logs for hints.</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (poncho1234)]]></author>
			<pubDate>Wed, 02 May 2018 12:10:18 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31556#p31556</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31555#p31555</link>
			<description><![CDATA[<p>Hi, I&#039;m working on @BigFunHappens&#039;s system and is trying to solve the same problem as what seahawk enquired about.</p><p>Here is an example of the problem: https://imgur.com/a/LBIxjKN</p><p>The image shows an example of the inventory planning report as is shown in our system. <br />The values inside of the red border are incorrect.</p><p>Many items function as intended like the 1st item in the example report, but some items have the same problem as the 2nd item.</p><p>I have tried to access the MySQL logs but it seems as if we cannot view the logs with our current web host package. Could this be true?</p>]]></description>
			<author><![CDATA[null@example.com (Speghatti)]]></author>
			<pubDate>Wed, 02 May 2018 11:01:43 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31555#p31555</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=27368#p27368</link>
			<description><![CDATA[<p>Please read @joe&#039;s post above (4th post). @randr and @seahawk have not provided their sql dumps for analysis.</p><p>Rebuilding indexes in FA is quite simple - drop the index and recreate it from the schema in the Chart of Accounts used.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 11 Jan 2017 19:00:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=27368#p27368</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=27367#p27367</link>
			<description><![CDATA[<p>Hi, this is my first post, although I have been using FA for a few years now. Absolutely outstanding system. Seahawk&#039;s post was about my system when I asked him to try and solve it, and I see Randr has the same problem.<br />Only in Inventory Planning Report the monthly unit sales is 0 for about 25% of the stock items. The average monthly sales is thus also 0, although it shows the correct QOH, Supp Ord and Cust Ord. The Sugg Ord is then also not correct.<br />The correct unit sales are available from inventory movements, but it is quite a job to extract everything manually. The other reports seem to be all OK.<br />Some of the older DOS programs had a &quot;rebuild indexes&quot; option which solved this type of problem, or am I going in the wrong direction?</p>]]></description>
			<author><![CDATA[null@example.com (BigFunHappens)]]></author>
			<pubDate>Wed, 11 Jan 2017 18:31:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=27367#p27367</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=25864#p25864</link>
			<description><![CDATA[<p>Is it possible that the said report ignores invoices not in the period of 3/4 months? Can you provide a small backup where you can show - how it is - and - how it should be - scenarios - preferably in the <strong>en_US-demo.sq</strong>l instance of a Training Co.?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 26 Jul 2016 02:04:24 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=25864#p25864</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=25862#p25862</link>
			<description><![CDATA[<p>Joe, I am ok with the calculation, I just can&#039;t figure out why some sales appear on the report and some do not.</p>]]></description>
			<author><![CDATA[null@example.com (randr)]]></author>
			<pubDate>Mon, 25 Jul 2016 18:59:50 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=25862#p25862</guid>
		</item>
		<item>
			<title><![CDATA[Re: Inventory Planning Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=25824#p25824</link>
			<description><![CDATA[<p>@joe: Thanks for the explanation. <a href="https://frontaccounting.com/fawiki/index.php?n=Help.ReportsAndAnalysis">Wiki</a>-ed it.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 19 Jul 2016 03:19:56 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=25824#p25824</guid>
		</item>
	</channel>
</rss>
