<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Fixed Assets]]></title>
		<link>https://frontaccounting.com/punbb/index.php</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;fid=29&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at FrontAccounting forum.]]></description>
		<lastBuildDate>Wed, 20 Dec 2023 06:31:05 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Fixed assets purchased and paid for in the past]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10438&amp;action=new</link>
			<description><![CDATA[<p>How do I treat fixed assets purchased and paid for in the past in the newly installed FrontAccounting now? I don&#039;t want the purchase to go to the account payable. I need a guide on which accounts I should create for both debit and credit, emphasis these fixed assets have been paid for in the past 5 years.</p>]]></description>
			<author><![CDATA[null@example.com (demmystone)]]></author>
			<pubDate>Wed, 20 Dec 2023 06:31:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10438&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Depreciate Fixed Assets in Batch]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10200&amp;action=new</link>
			<description><![CDATA[<p>If I have 100 Fixed Assets, someone please tell me I don&#039;t have to hit &quot;process depreciation&#039; 100 times.&nbsp; Where&#039;s the batch option? Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (MacKenzie)]]></author>
			<pubDate>Sun, 19 Feb 2023 20:46:49 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10200&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Convert building materials to fixed asset]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=10065&amp;action=new</link>
			<description><![CDATA[<p>We have a building that was just constructed. I want to capture the building as a fixed asset.<br />There are two ways that I have tried to do this:<br />1. the first approach is to add the building as fixed asset, and capture the cost of building it as the purchase price.<br />The problem with this approach is that it will debit/credit the accounts twice. first as revenue/expenditure during the purchase of building materials for constructing the building.</p><p>2. the second approach is to capture only the building materials (debit/credit bank/building - under fixed assets). the problem I have notice with this approach is that although the account will balance, the building will not show up in fixed assets register, and depreciation/valuation cannot be carried out on the building.</p><p>please what is the proper way to handle this</p>]]></description>
			<author><![CDATA[null@example.com (mfonnix)]]></author>
			<pubDate>Wed, 02 Nov 2022 10:47:34 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=10065&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How do I transfer an asset from a sister company?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9921&amp;action=new</link>
			<description><![CDATA[<p>Hello<br />How do I transfer an asset from a sister company?<br />Note - there is no purchase invoice<br />How do I prove the amount and Quantity of the original without creating a purchase invoice?</p>]]></description>
			<author><![CDATA[null@example.com (kh.rawasy)]]></author>
			<pubDate>Sun, 24 Jul 2022 03:03:03 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9921&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Why we need separate Category and location for Fixed Assets ?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9806&amp;action=new</link>
			<description><![CDATA[<p>Suppose if i have only one location for my business. how do i add fixed assets location. ?</p><p>I need to create separate location for fixed assets. but actually its not original, As i need to use the same location that i have. </p><p>And also the category.</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Mon, 09 May 2022 16:58:49 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9806&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Fixed Assets inquiry has not connected with right GRN]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9800&amp;action=new</link>
			<description><![CDATA[<p>From fixed assets inquiry page, we have a purchased column with link, thats giving wrong trans_no. </p><p><strong>get_fixed_asset_purchase</strong>&nbsp; function get invoice now, how do we link the invoice trans no in place of&nbsp; GRN&nbsp; trans no. </p><div class="codebox"><pre><code>function purchase_link($row)
{

      if ($row[&#039;purchase_date&#039;] === NULL)
        return &quot;&quot;;

      return get_supplier_trans_view_str(ST_SUPPRECEIVE, $row[&quot;purchase_no&quot;], sql2date($row[&quot;purchase_date&quot;]));
}</code></pre></div><p>Here the $row[&#039;purchase_no&#039;] has not exist.&nbsp; </p><div class="codebox"><pre><code>function purchase_link($row)
{

      if ($row[&#039;purchase_date&#039;] === NULL)
        return &quot;&quot;;
      //my suggestion would be something like this to get GRN now.
       $sql =&quot;SELECT trans_no FROM &quot;.TB_PREF.&quot;stock_moves WHERE 1=1 AND type =&quot;.ST_SUPPRECEIVE.&quot; AND stock_id =&quot;.db_escape($row[&#039;stock_id&#039;]).&quot; AND qty &gt; &#039;0&#039; &quot;;
      $res = db_query($sql, &quot;Can&#039;t get grn no&quot;);
       $row2=db_fetch($res);

     return get_supplier_trans_view_str(ST_SUPPRECEIVE, $rows[&quot;trans_no&quot;], sql2date($row[&quot;purchase_date&quot;]));
}</code></pre></div><p>@Joe, check it.&nbsp; otherwise we need to connect the invoice, instead of the GRN in purchase link.</p><p>and also i see, we can try the depreciation start with the date given from fixed assets input date. i dont know the reason why we are using every month start date.</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Sat, 07 May 2022 14:49:27 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9800&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How to process Fixed Assets multiple quantity ?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9798&amp;action=new</link>
			<description><![CDATA[<p>Suppose if i buy 20 laptops or computers in a same brand and same config. How do i add it in fixed assets?</p><p>each time should i need to create separate fixed asset and do the purchase and make the depreciation?</p><p>How about buying of 50 computers. or 100 Computers. ?</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Thu, 05 May 2022 16:15:50 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9798&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[What is the use of parent class in Fixed Assets class ?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9797&amp;action=new</link>
			<description><![CDATA[<p>As i am trying out with Fixed assets, and came to know what is the use of parent class id in the fixed assets class. </p><p>I feel it was not used anywhere from the depreciation to the entire system.</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Thu, 05 May 2022 11:21:33 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9797&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Can the Initial Value field for a fixed asset be edited?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9525&amp;action=new</link>
			<description><![CDATA[<p>I own injection moulds that I want to add as Fixed Asset but the tooling was purchased years ago and outside of FA.&nbsp; It appears that the process of purchasing the asset is how the Initial Value is set.&nbsp; There doesn&#039;t appear to be any way to edit the assets Initial Value field after the asset has been purchased.&nbsp; I&#039;ve checked the permissions associated with Administrator but don&#039;t see anything that allows editing Fixed Assets.</p><p>So, is my only option then to purchase the asset in FA and then do a JE to reverse the credit to Bank and the debit to Capital Assets account?</p>]]></description>
			<author><![CDATA[null@example.com (diventi.enterprises)]]></author>
			<pubDate>Sat, 23 Oct 2021 19:43:08 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9525&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Fixed asset depreciation straigtht line]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9347&amp;action=new</link>
			<description><![CDATA[<p>Dear all , i am trying to depreciate my fixed asset using straight line, but the depreciation value is not correct according to the method and percentage.</p><p>e.g i have and asset value of 20,000 with depreciation of 5% straight line, after depreciation the value must be 19,000 but instead it giving lesser value</p><p>anybody can help explain how depreciation works a bit more? <br />Does the tax affect the amount in the depreciation? @joe</p><p>thanks</p>]]></description>
			<author><![CDATA[null@example.com (cedricktshiyoyo)]]></author>
			<pubDate>Thu, 17 Jun 2021 13:37:01 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9347&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Not Able to find asset, update or delete from the system]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9292&amp;action=new</link>
			<description><![CDATA[<p>Dear @joe I just installed new FA on Ubuntu 20.4 with PHP 7.43 MYSQL 8</p><p>After registering assets in the system, i am not able to find them again, to modify or delete them, <br />supposed to be under maintenance fixed Asset tab, but it only showing 2 tabs, general settings and transactions. there is no where to select existing assets to either modify the description, code or depreciation date.</p><p>thanks</p>]]></description>
			<author><![CDATA[null@example.com (cedricktshiyoyo)]]></author>
			<pubDate>Wed, 05 May 2021 10:24:00 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9292&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How to Create an opening balance in Fixed Assets?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9214&amp;action=new</link>
			<description><![CDATA[<p>I have an existing company accounts in another accounting software. Now I want to transfer the accounts from that software to the FrontAccounting system. I have the fixed assets balance and the accumulated depreciation balance in that software. How shall I transfer these balances directly to FrontAccounting?</p>]]></description>
			<author><![CDATA[null@example.com (Ashraf73)]]></author>
			<pubDate>Tue, 02 Mar 2021 14:14:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9214&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Fixed Assets Valuation Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9189&amp;action=new</link>
			<description><![CDATA[<p>Printing this report for a past date, (e.g 31st Dec 2019) does not give the correct accumulated depreciation. Instead the accumulated depreciation will be as of current date.<br />I realized FA Assets module does not store anywhere Fixed Asset depreciation transactions, instead values are updated into <strong>material_cost</strong> column in the <strong>stock_master</strong> table. This makes it difficult to print any backddated report as per any date.</p><p>Please advise how to go about this.</p>]]></description>
			<author><![CDATA[null@example.com (mugao-em)]]></author>
			<pubDate>Fri, 12 Feb 2021 19:14:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9189&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[FIXED ASSET ENTRY NOT REFLECTING IN BALANCE SHEET]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9141&amp;action=new</link>
			<description><![CDATA[<p>I made an entry for a Vehicle purchase and this particular entry does not reflect in the balance sheet. However, it reflects in the trial balance. What could I have done wrong?</p><p>Also, in an attempt to remove this entry and post a new one, the fixed asset valuation report is showing both values. I need to remove one to have a correct fixed assets value. How do I remove the entry completely?</p>]]></description>
			<author><![CDATA[null@example.com (aolandoh)]]></author>
			<pubDate>Fri, 08 Jan 2021 14:40:57 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9141&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[There are no fixed assets that could be depreciated.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?id=9132&amp;action=new</link>
			<description><![CDATA[<p>Hello everyone, I am getting this error whenever I want to process asset depreciation, I am getting this error saying&nbsp; &quot;THERE ARE NO FIXED ASSET THAT COULD BE DEPRECIATED&quot; yet I have created my fixed asset class, category, then inserted fixed asset, purchased it. but when I click process depreciation I get that error. what could be the problem? Maybe I am not doing it the right way!</p><p>Any help please!!!</p>]]></description>
			<author><![CDATA[null@example.com (cedricktshiyoyo)]]></author>
			<pubDate>Tue, 29 Dec 2020 13:25:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?id=9132&amp;action=new</guid>
		</item>
	</channel>
</rss>
