<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Online Accounting Product Blog</title>
	<atom:link href="http://productblog.saasu.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://productblog.saasu.com</link>
	<description></description>
	<lastBuildDate>Tue, 09 Mar 2010 00:55:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automated Statements Engine</title>
		<link>http://productblog.saasu.com/2010/03/09/automated-statements-engine/</link>
		<comments>http://productblog.saasu.com/2010/03/09/automated-statements-engine/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 00:55:41 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Automation]]></category>
		<category><![CDATA[Statements]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1134</guid>
		<description><![CDATA[Saasu&#8217;s new Automated Statements feature released last night is about helping you look professional, saving time and bringing forward cashflow. You can now send statements automatically via email. 

You can setup Automated Statements for each type of billing you do.
You can have an Automated Statement run applied to specific contacts Contact or just attach Contact [...]]]></description>
			<content:encoded><![CDATA[<p>Saasu&#8217;s new Automated Statements feature released last night is about helping you look professional, saving time and bringing forward cashflow. You can now send statements automatically via email. </p>
<ul>
<li>You can setup <a href="http://help.saasu.com/context/automated-statments/">Automated Statements</a> for each type of billing you do.</li>
<li>You can have an <a href="http://help.saasu.com/context/automated-statments/">Automated Statement</a> run applied to specific contacts <a href="http://help.saasu.com/context/contacts/">Contact</a> or just attach <a href="http://help.saasu.com/context/contact-groups/">Contact Groups</a> you may already use in Automates Sales and Billings.</li>
<li>You have the ability to <a href="http://help.saasu.com/context/themes/">create CSS/HTML designs</a> to apply to your <a href="http://help.saasu.com/context/templates">Templates</a> for Statements. We call these designs <a href="http://help.saasu.com/context/themes/">Themes</a>.</li>
</ul>
<h4>Let the engine do the work</h4>
<p>The Automated Statement Engine does the work for you. Payment reminders, monthly statements, loans/finance tracking, subscription billing, renewal requests and facilitating debtors collection are just a few ways you can use it.</p>
<h4>You set the rules</h4>
<p>Send Statements to non-zero balance contacts. Even add a few days/weeks grace if you want to cut them some slack. Control the period that the statement relates to &#8211; week, fortnight, month or quarter.  You can also send a Contact a Statement as a means to highlight your customers activity in much the same way banks, telco&#8217;s and utilities send statements.</p>
<h4>Calling all ideas!</h4>
<p>If in the coming weeks you have found a nifty use of this feature then <a href="https://secure.saasu.com/a/net/contactus.aspx">let us know</a> and we&#8217;ll post it in our Product Blog and link back to the genius who thought it up!</p>
<p>We hope you like it!</p>
<p><img class="alignleft" align=left src="http://www.saasu.com/images/screenshots/r28-automated-statements.png" height="549" width="465" alt="" title="Automated Statements for online accounting" /></p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2010/03/09/automated-statements-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API updates for Multi Currency</title>
		<link>http://productblog.saasu.com/2010/02/22/api-updates-for-multi-currency/</link>
		<comments>http://productblog.saasu.com/2010/02/22/api-updates-for-multi-currency/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 01:41:48 +0000</pubDate>
		<dc:creator>Kaz</dc:creator>
				<category><![CDATA[API]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1115</guid>
		<description><![CDATA[We have taken the capablity of the API one step further by introducing Multi Currency transaction support. This enables our users to create and update foreign currency transactions(invoices and payments) directly in Saasu using the API. Users can choose to set the FX rate when they post the transaction, or choose to let Saasu set [...]]]></description>
			<content:encoded><![CDATA[<p>We have taken the capablity of the API one step further by introducing Multi Currency transaction support. This enables our users to create and update foreign currency transactions(invoices and payments) directly in Saasu using the API. Users can choose to set the FX rate when they post the transaction, or choose to let Saasu set the FX rate automatically. Let&#8217;s take a common example where an ecommerce user is posting an USD invoice issued to a customer into Saasu. In this example, the user is setting the FX rate manually. </p>
<pre>
.....
&lt;insertInvoice&gt;
&lt;invoice uid="0"&gt;
&lt;transactionType&gt;S&lt;/transactionType&gt;
&lt;date&gt;2010-02-19&lt;/date&gt;
&lt;ccy&gt;USD&lt;/ccy&gt;
&lt;autoPopulateFxRate&gt;false&lt;/autoPopulateFxRate&gt;
&lt;fcToBcFxRate&gt;1.137640930&lt;/fcToBcFxRate&gt;
&lt;layout&gt;S&lt;/layout&gt;
&lt;status&gt;I&lt;/status&gt;
.....
</pre>
<p>If the user let Saasu set the FX rate for the transaction, then the above would change to;</p>
<pre>
&lt;ccy&gt;USD&lt;/ccy&gt;
&lt;autoPopulateFxRate&gt;true&lt;/autoPopulateFxRate&gt;
</pre>
<p>That&#8217;s all you have to do to start using the API for Multi Currency transactions. Quite simple isn&#8217;t it? The API <a href="http://help.saasu.com/api/http-post-tasks/">POST</a> and <a href="http://help.saasu.com/api/http-get/">GET</a> documentation have been updated to reflect the new changes. </p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2010/02/22/api-updates-for-multi-currency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set your own financial year end dates</title>
		<link>http://productblog.saasu.com/2010/02/10/set-your-own-financial-year-end-dates/</link>
		<comments>http://productblog.saasu.com/2010/02/10/set-your-own-financial-year-end-dates/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 23:37:11 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Reports]]></category>
		<category><![CDATA[Zones]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1085</guid>
		<description><![CDATA[Saasu now allows you to set your own financial year end and payroll year end date. We have migrated customer files to the default financial year ends for your zone so you may not need to do anything. 
The nice thing about this feature is that it flows through to your Dashboard, Reports, Lists filters [...]]]></description>
			<content:encoded><![CDATA[<p><img class="frame" align=right src="http://www.saasu.com/images/screenshots/r27-file-identity-yearend.png" alt="" title="Saasu online accounting gets custom financial and payroll year ends" width="250" height="110" />Saasu now allows you to set your own financial year end and payroll year end date. We have migrated customer files to the default financial year ends for your zone so you may not need to do anything. </p>
<p>The nice thing about this feature is that it flows through to your Dashboard, Reports, Lists filters and more.</p>
<p>To update or change your financial year end go to <em>Settings &gt; File Identity</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2010/02/10/set-your-own-financial-year-end-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardening Release &#8211; January 2010</title>
		<link>http://productblog.saasu.com/2010/02/02/hardening-release-january-2010/</link>
		<comments>http://productblog.saasu.com/2010/02/02/hardening-release-january-2010/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 00:57:34 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Items]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1068</guid>
		<description><![CDATA[Over December and January we have been busy doing what we call a hardening release. This is where we look at areas in Saasu we can improve for our existing customers and also work on areas such as our API, subscription system and performance. The idea is simple, provide a better product and service.
What&#8217;s New?

Profit [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright frame" src="http://www.saasu.com/images/screenshots/r28-item-voucher.png" alt="" title="Voucher Codes in Online Accounting"/>Over December and January we have been busy doing what we call a <em>hardening release</em>. This is where we look at areas in Saasu we can improve for our existing customers and also work on areas such as our API, subscription system and performance. The idea is simple, provide a better product and service.</p>
<h3>What&#8217;s New?</h3>
<ul>
<li>Profit &amp; Loss Summary and Detail reports can now be run in Cash mode for GLOBAL files.</li>
<li>New Merge Fields are now available for Statements.</li>
<li>The API now supports some e-commerce features; IsVirtual, IsVisable and VType (Virtual Type).</li>
<li>You can now create Vouchers Codes which can be used by e-commerce websites to apply discounts.</li>
</ul>
<h3>What&#8217;s Changed?</h3>
<ul>
<li>The concept of a Report TAG has been removed. All Tags can now be used in Reports.</li>
<li>A new Help System is now live for easier access to FAQ Answers and our Screen Guides.</li>
<li>Your My Saasu area now let&#8217;s you have different types of Saasu files within your single subscription.</li>
<li>The Sandbox file service for developers has been replaced with a Saasu Free file approach.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2010/02/02/hardening-release-january-2010/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Multiple Templates, CrowdTheme and Merge Fields</title>
		<link>http://productblog.saasu.com/2009/10/21/multiple-templates-crowdtheme-and-merge-fields/</link>
		<comments>http://productblog.saasu.com/2009/10/21/multiple-templates-crowdtheme-and-merge-fields/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 22:16:43 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Purchases]]></category>
		<category><![CDATA[Sales]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1040</guid>
		<description><![CDATA[Saasu online accounting has released a new feature to allow you to setup multiple PDF and Email Templates that you can run from Sale, Purchase and Statement areas in Saasu. We have also released the initial stage of CrowdTheme&#8482; which allows you to build your own custom themes to apply to these templates. Lastly we [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.saasu.com/">Saasu</a> <a href="http://www.saasu.com/online-accounting/">online accounting</a> has released a new feature to allow you to setup multiple PDF and Email Templates that you can run from Sale, Purchase and Statement areas in Saasu. We have also released the initial stage of CrowdTheme&trade; which allows you to build your own custom themes to apply to these templates. Lastly we have enhanced Merge fields and allowed their use across Email and PDF Templates aswell as in Themes. </p>
<p><img class="alignright frame" src="http://www.saasu.com/images/screenshots/r26-templates.png" title="online accounting templates" alt="Templates" /></p>
<p>We know customers like to &quot;theme&quot; many types of content. It allows you to have a &quot;look&quot; that suits your brand. Themes for powerpoint slides, weblogs and desktops are popular but to date they haven&#8217;t been developed for accounting software.</p>
<p>Initially we want to open this up to the Saasu community of developers to create themes using <a href="http://en.wikipedia.org/wiki/Html" class="external">HTML</a> and <a href="http://en.wikipedia.org/wiki/Css" class="external">CSS</a>. We also hope people will share them in the community. We will also include a WYSIWYG editor for non-technical customers in a future release. </p>
<h4>What&#8217;s a real example of it&#8217;s use?</h4>
<p>Let&#8217;s say a developer makes a cool theme for printing sticky delivery address labels. Once they upload that to CrowdTheme it becomes available for you to use in Saasu. You simply create a Template for Sales in Saasu using this theme. Then all you need to do is choose that Template whenever you want to print a Label from a Sale Transaction. </p>
<p>You might even have a theme you want used right across your franchise network. You could embed information like maps, warranties and other special needs. You will be able to find these Themes in Saasu&#8217;s CrowdTheme&trade; website when it&#8217;s released later this quarter. You can start creating your own right now by going to <em>View &gt; Templates </em> and click on the <em>edit and create your own theme</em> link provided below the Theme selector.</p>
<p>To take this feature to a new level we have also built out our <a href="http://www.saasu.com/help/context/template-add-edit/">Merge Fields</a> capability that can be used in both Templates and Themes.</p>
<h4>Multiple Templates</h4>
<p>Setup templates for different trading names, stationary needs and the use different logos for each template from the selection you can upload yourself. To access Multiple Templates go to <em>View &gt; Templates</em></p>
<h4>CrowdTheme&trade;</h4>
<p>Control the the look and feel of your PDF invoices and statements by applying your own custom themes to them. If you&#8217;re familiar with <a href="http://en.wikipedia.org/wiki/Html" class="external">HTML</a> and <a href="http://en.wikipedia.org/wiki/Css" class="external">CSS</a> you can now change the font, font-size, color, and even the layout by customizing the theme associated with the template. </p>
<h4>Merge Fields</h4>
<p>Saasu had some basic Merge Field capability for templates but in this release we have dramatically increased the range of available data you can access. We will be adding more to this area including the ability to dynamically generate information much like you would using formula&#8217;s in a spreadsheet. We will elaborate on this upcoming innovation in coming weeks.</p>
<h4>Big changes can lead to some small differences</h4>
<p>There are lots of changes behind the scene to make this happen, and one of the changes that we made that may affect you is the way we handle logos. So please re-check your PDF invoices and purchase orders before sending them out.</p>
<p>Logo Handling &#8211; Before the Upgrade:</p>
<ul>
<li>One PDF template and one logo only.</li>
<li>No logo size restriction.</li>
<li>We resized the logo for you.</li>
</ul>
<p>Some users uploaded very big and high resolution images resulting in big PDF file generated, which in turn causes all sort of problem with email delivery as some email servers have restrictions on attachments size.</p>
<p>The auto-resized logos sometimes didn&#8217;t turn out to be as expected. This is due to many logo uploads being TIFF or BMP formats which aren&#8217;t supported by webpages. We had to convert these on your behalf.</p>
<p>Logo Handling &#8211; After the Upgrade:</p>
<ul>
<li>You can now upload multiple logos or images, and you can use these images from your theme.</li>
<li>Maximum logo size is 100KB.</li>
<li>Supported formats include JPG, GIF and PNG.</li>
<li>There is no auto-resizing of your logo&#8217;s. The maximum width recommended is:
<ul>
<li>640px &#8211; If you have sender details</li>
<li>960px &#8211; If you don&#8217;t have sender details</li>
</ul>
</li>
</ul>
<h4>What&#8217;s the rationale for the logo file size limits?</h4>
<ul>
<li>To prevent massive PDF files generated, which should improve reliability of email delivery of PDF invoices.</li>
<li>To give you back full control on the appearance, size and quality of the images you upload.</li>
</ul>
<h4>What did you do to my logo? It looks different.</h4>
<p>Based on the width of the logo you&#8217;ve uploaded:</p>
<ul>
<li>Width &lt;= 640px: We didn&#8217;t do anything to your logo. Will render as it is.</li>
<li>Width &gt; 640px and you have sender details: Resized to 640px.</li>
<li>Width &gt; 960px and no sender details: Resized to 960px.</li>
</ul>
<h4>How do I change the logo in my template?</h4>
<p><em>View &gt; Template</em>s. Open the template, and upload new logo or use one that you&#8217;ve uploaded before.</p>
<h4>How do I resize my logo?</h4>
<p>Use <a href="http://www.shrinkpictures.com/" class="external">online image resizer tool</a>, or if you want more control, use image editing program. The free one such as <a href="http://www.getpaint.net/" class="external">Paint.NET</a> for Windows should do the job.</p>
<h4>Can I customize the font, font-size and layout of the PDF generated?</h4>
<p>You certainly can. To do this, go to <em>View &gt; Templates</em> and open the template you want to customize, and click on the e<em>dit and create theme</em> link underneath the theme picklist. Familiarity with HTML and CSS required.</p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/10/21/multiple-templates-crowdtheme-and-merge-fields/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Temporary email delivery problem</title>
		<link>http://productblog.saasu.com/2009/10/15/temporary-email-delivery-problem/</link>
		<comments>http://productblog.saasu.com/2009/10/15/temporary-email-delivery-problem/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 08:27:53 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1022</guid>
		<description><![CDATA[Late yesterday one of the Saasu servers was listed on the Spamhaus Block List (&#8221;SBL&#8221;). Spamhaus is a blacklist provider used for anti-spam protection. The blacklisting has since been removed but emails to some of your customers sent using Saasu may have been rejected during this period. 
Spamhaus blacklisted a range of Server addresses (IP [...]]]></description>
			<content:encoded><![CDATA[<p>Late yesterday one of the Saasu servers was listed on the <a href="http://www.spamhaus.org/sbl/">Spamhaus Block List</a> (&#8221;SBL&#8221;). <a href="http://www.spamhaus.org/index.lasso">Spamhaus</a> is a blacklist provider used for anti-spam protection. The blacklisting has since been removed but emails to some of your customers sent using Saasu may have been rejected during this period. </p>
<p>Spamhaus blacklisted a range of Server addresses (<a href="http://en.wikipedia.org/wiki/Ip_address" class="external" >IP Addresses</a>) in the big cloud hosting companies including Rackspace and Amazon Web Services (one of our host companies). Unfortunately Saasu was caught by the fact that one of our servers had a similar server IP address to one the spammer was using.</p>
<h3>What was Saasu&#8217;s response?</h3>
<p>Saasu notified Spamhaus that our server is legitimate and requested removal of the blacklist. We also notified <a href="http://www.amazonwebservices.com/">Amazon Web Services</a> to put pressure on Spamhaus which they did. Spamhaus removed the IP address from the blacklist and then placed it on a lower risk list called the Policy Block List and later today also removed it from this list.</p>
<p>The time frame this occurred in was between UTC: 14 Oct 2009 2:06AM &#8211; 15 Oct 2009 7:00AM<br />
Timeshift for your zone: London+1 | Los Angeles-7 | Sydney+11</p>
<p>We are very sorry for the inconvenience this issue caused.</p>
<h3>What do I need to do?</h3>
<p>We will notify customers who are affected after complete review of the email logs. Saasu doesn&#8217;t store the content of emails sent we only store transactions so you will need to re-send them.</p>
<h3>I still have more questions about this?</h3>
<p>If you have an additional concerns or questions just get in touch by emailing service@saasu.com or via a support ticket at <a href="http://www.saasu.com/help/">saasu.com/help</a></p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/10/15/temporary-email-delivery-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cash is King</title>
		<link>http://productblog.saasu.com/2009/09/03/cash-is-king/</link>
		<comments>http://productblog.saasu.com/2009/09/03/cash-is-king/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 00:23:33 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Cashflow]]></category>
		<category><![CDATA[Dashboard]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=1014</guid>
		<description><![CDATA[Many customers have been asking for a cashflow widget for their Saasu online accounting dashboard so we decided to release an initial version.
Use the cashflow widget to:

This widget gives you some quick ways to observe trends in your cashflow over time.
See where you Saasu bank account balances are at in Saasu and how up to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright frame" src="http://www.saasu.com/images/screenshots/r25-cashflow.png" alt="screenshots/r25-cashflow.png" height="261" width="300" />Many customers have been asking for a cashflow widget for their Saasu online accounting dashboard so we decided to release an initial version.</p>
<p>Use the cashflow widget to:</p>
<ul>
<li>This widget gives you some quick ways to observe trends in your cashflow over time.</li>
<li>See where you Saasu bank account balances are at in Saasu and how up to date your reconciliations are.</li>
<li>Track how much money investors and directors are putting in or taking out of the business.</li>
</ul>
<p>We also added the ability to quickly pick up bank files from your computers desktop that you have exported or received via email from your bank. This area will also provide status updates about bank feeds when we make that feature available.</p>
<p>We want to build a version 2 of this widget with more capability that allows you to look forward in time and take into account automated transactions and payroll.</p>
<p>Add the cashflow widget to your Dashboard by clicking the Manage link in the blue header bar.</p>
<p>All <a href="http://www.saasu.com/help/">feedback and ideas</a> are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/09/03/cash-is-king/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Singapore Beta Release</title>
		<link>http://productblog.saasu.com/2009/08/21/singapore-beta-release/</link>
		<comments>http://productblog.saasu.com/2009/08/21/singapore-beta-release/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 02:08:21 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=994</guid>
		<description><![CDATA[Saasu believes strongly in supporting globally critical commerce hubs like Singapore with commerce grade online accounting software solutions to reduce accounting workflow and infrastructure costs.
We have released extended coverage for Singapore tax zone. Saasu has many international businesses with Singapore offices as well as our local Singapore businesses. Accordingly we are proud to extend the [...]]]></description>
			<content:encoded><![CDATA[<p>Saasu believes strongly in supporting globally critical commerce hubs like Singapore with commerce grade online accounting software solutions to reduce accounting workflow and infrastructure costs.</p>
<p>We have released extended coverage for Singapore tax zone. Saasu has many international businesses with Singapore offices as well as our local Singapore businesses. Accordingly we are proud to extend the current Beta Release features a little further toward a commercial Singapore release in the future.</p>
<p><img class="alignright frame" src="http://farm4.static.flickr.com/3043/2684287324_a0bb262b61_m.jpg" alt="" /></p>
<h3>Release Features</h3>
<ul>
<li>GST Tax Codes.</li>
<li>Tax Invoice requirements as per <a href="http://iras.gov.sg/">Inland Revenue Authority of Singapore</a> under Reg.11 of GST (General) Regulation. See the <a href="http://www.saasu.com/help/answers/singapore-tax/">tax invoice document requirements we support</a>.</li>
<li>Self Billing Tax Invoices feature.</li>
</ul>
<h3>GST rates</h3>
<ul>
<li><strong>GST0</strong> Zero rate 0%</li>
<li><strong>GST7</strong> Standard rate 7%</li>
<li><strong>GSTE</strong> Exempt</li>
</ul>
<p>See the detailed help note on <a href="http://www.saasu.com/help/answers/singapore-tax/">Singapore tax</a>. If you have additional requirements for the Singapore tax zone please let us know. </p>
<p>Photo by <a href="http://www.flickr.com/photos/henryleong/">Henryleonghw</a></p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/08/21/singapore-beta-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API support for Inventory Adjustment and Transfer</title>
		<link>http://productblog.saasu.com/2009/07/21/api-support-for-inventory-adjustment-and-transfer/</link>
		<comments>http://productblog.saasu.com/2009/07/21/api-support-for-inventory-adjustment-and-transfer/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 23:51:00 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=957</guid>
		<description><![CDATA[The Saasu API (Application Programming Interface) now provides you with the ability to process Inventory Adjustments and Inventory Transfers. The API allows you to Create, Read, Update and Delete these types of transactions (API Tasks).

Inventory Adjustments can be used to modify the value and/or quantity of stock in your business. Some common examples include the [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://help.saasu.com/api/">Saasu API</a> (Application Programming Interface) now provides you with the ability to process <a href="http://help.saasu.com/context/inventory-adjustment-add-edit/">Inventory Adjustments</a> and <a href="http://help.saasu.com/context/inventory-transfer-add-edit/">Inventory Transfers</a>. The API allows you to Create, Read, Update and Delete these types of transactions (API Tasks).</p>
<p><img class="alignright frame" title="online accounting inventory transfer" src="http://farm3.static.flickr.com/2387/2348473585_c1f0761363_m.jpg" alt="" /></p>
<p>Inventory Adjustments can be used to modify the value and/or quantity of stock in your business. Some common examples include the need to re-value stock and write-off damaged, lost or stolen goods.</p>
<p>Inventory Transfers are used to transfer items when building, bundling or assembling products and services. That is, reducing the quantity of component items used and increasing the quantity of combo items built and available for sale.</p>
<p>Note that you can also use this feature to disassemble (un-build, un-bundle) goods back into their components if required.</p>
<p>For full details on how to use these new features see our <a href="http://help.saasu.com/api/">API help area</a></p>
<p>Picture by <a href="http://www.flickr.com/photos/absolutely_loverly/">nutmeg</a></p>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/07/21/api-support-for-inventory-adjustment-and-transfer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Inventory Item Buying Price</title>
		<link>http://productblog.saasu.com/2009/07/08/inventory-item-buying-price/</link>
		<comments>http://productblog.saasu.com/2009/07/08/inventory-item-buying-price/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 11:42:53 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://productblog.saasu.com/?p=938</guid>
		<description><![CDATA[We have added an extra feature into the inventory module to support point of sale (POS), eBay traders and importers/exporters who rely heavily on Buy/Sell price management. 
To add a default Buying Price go to Items &#62; Items am then the edit icon to open the item in edit mode. You can then enter a [...]]]></description>
			<content:encoded><![CDATA[<p>We have added an extra feature into the inventory module to support point of sale (POS), eBay traders and importers/exporters who rely heavily on Buy/Sell price management. </p>
<p>To add a default Buying Price go to <em>Items &gt; Items</em> am then the edit icon to open the item in edit mode. You can then enter a default Buy Price into the available field in the buy section of the screen.</p>
<p><img class="alignright frame" src="http://www.saasu.com./images/R21-Item-Buying-Price.png" height="125" width="320" alt="R21-Item-Buying-Price.png" title="Item Buying Price" /></p>
<p>In the buying details area for an inventory item you can now:</p>
<ul>
<li>Set a default Buying Price.</li>
<li>Set whether the Buy Price is inclusive or exclusive of tax.</li>
<li>Allow Saasu to load the last Purchase Price from your most recent Purchase of that Item if you haven&#8217;t entered a default Buying Price.</li>
<li>The Buying Price for an Item is supported in both export and import formats of your Inventory items list. Go to <em>View &gt; Import or Export &gt; Import other Data Inventory items</em>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://productblog.saasu.com/2009/07/08/inventory-item-buying-price/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
