<?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>Free learning tally 9 &#38; Accountancy</title>
	<atom:link href="http://www.tallynine.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tallynine.com</link>
	<description>Tally.erp 9 is the new face of ERP</description>
	<lastBuildDate>Mon, 06 Sep 2010 14:40:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>learn tdl &#124; how to create a new field in Ledger Master ?</title>
		<link>http://www.tallynine.com/learn-tdl-how-to-create-a-new-field-in-ledger-master.html</link>
		<comments>http://www.tallynine.com/learn-tdl-how-to-create-a-new-field-in-ledger-master.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 10:53:12 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[learn TDL]]></category>
		<category><![CDATA[basic of tdl]]></category>
		<category><![CDATA[create UDF in tally]]></category>
		<category><![CDATA[learn tdl]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1427</guid>
		<description><![CDATA[TDL help to customise default tally reporting system. It is a domain specific language and if it help you to mold tally as per your wish.Learn how to create an UDF in the default ledger master in tally.TDL is easy to learn but requires a lot of practical example and a self learning process.]]></description>
			<content:encoded><![CDATA[<p>So, far a great response to our <a title="first TDL" href="http://www.tallynine.com/learn-tally-tdl-our-first-tdl.html">first TDL</a> program its time to go ahead.Before  you read this article, you must know <a title="how to configure TDL in tally" href="http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html">how to configure TDL in tally</a> otherwise you will not be able to use the TDL.</p>
<p>Once again I have to remind that TDL is domain specific language and its  Tally&#8217;s programming language which help you to customize your default tally reporting, menu etc. It is very easy to learn tally but you need to have great hands of practice to learn the same.</p>
<p>There is no book available in the market to learn this programming language!</p>
<p>Below is a programming code which will help to create a new field in your ledger Master  creation/alteration mode.</p>
<p>;; user who are interested can learn tally tdl,<br />
;;UDF definition<br />
[System: UDF]<br />
MyUDF: String: 1000</p>
<p>;;Modify Ledger Master entry screen and add a line<br />
[#Part: LEd Other Details]<br />
Add: Line: MyLine</p>
<p>[Line: My Line]<br />
Field: Short Prompt,My Field<br />
Local: Field: Short Prompt: Set as: &#8220;City: &#8221;</p>
<p>[Field: My Field]<br />
Use: Short Name Field<br />
Storage: MyUDF</p>
<p>;; End of code</p>
<p>In the above code what we have created is known as UDF (User Defined Functions)</p>
<p>The above code will create a new field namely CITY in your default ledger master</p>
<p>On the same way, you can create any other such UDF you wish so.</p>
<p>The screen shot is as below</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image2.png"><img style="border-width: 0px; display: inline;" title="image" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image_thumb2.png" border="0" alt="image thumb2 learn tdl | how to create a new field in Ledger Master ?" width="244" height="160" /></a></p>
<p>Try to create such more UDF yourself. I am always there to help you in case of need.</p>
<p>Please post your query related to TDL  on <a href="http://forum.tallynine.com/viewforum.php?f=7&amp;sid=57ab66904720104aa6719f613515a17a" target="_blank">support forum</a> only</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/learn-tdl-how-to-create-a-new-field-in-ledger-master.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Tally TDL : Our First TDL</title>
		<link>http://www.tallynine.com/learn-tally-tdl-our-first-tdl.html</link>
		<comments>http://www.tallynine.com/learn-tally-tdl-our-first-tdl.html#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:23:23 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[learn TDL]]></category>
		<category><![CDATA[basic of tdl]]></category>
		<category><![CDATA[First TDL]]></category>
		<category><![CDATA[how to learn tally developer languages]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1419</guid>
		<description><![CDATA[tally TDL is tally's domain specific language. you can learn tally tdl very easy. write your own first tdl program with the help of tutorial provided in this article. Tally tdl help you to customise your default tally. writing your first tdl is very very easy and it does not require any specific knowledge of programming. you can write your first tdl in notepad.]]></description>
			<content:encoded><![CDATA[<p>Last time, I have written about how to <a title="set tdl in tally" href="http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html">set tdl in tally</a>, today we will go ahead with our first tally program in tdl.</p>
<p>There is lot of free tally tdl is available. you may also download one free tdl for logo printing from the <a href="http://tallynine.com/forum/viewtopic.php?f=7&amp;t=7" target="_blank">support forum</a> and can use the same.</p>
<p>Now today we will discuss the basic of tdl and will write our first TDL programe.</p>
<p>Believe me, it is very very easy to write your first tdl and it does not require any special knowledge or experience!</p>
<p>First of all, you need to memories following :<br />
First<br />
Report uses Form<br />
Form uses Parts<br />
Part uses lines<br />
Line uses Fields<br />
Field is the real-container where text is displayed.<br />
You Don&#8217;t need to understand it! This is an universal rule for Tally TDL<br />
Now, Let&#8217;s prepare our first TDL programme.<br />
Open your notepad from the windows<br />
and Write below codes. I would prefer you to write yourself without being copy paste. it will give you practice and in TDL self practice is the most important thing one need to learn Tally Developer Languages.<br />
;; start of code<br />
<span style="font-family: Verdana; font-size: small;">[#menu:gateway of tally]<br />
Item:myfirst tdl:Display:My Report<br />
[Report:My Report]<br />
form: myform<br />
[form:myform]<br />
Part:my Part<br />
[Part:my part]<br />
line:my Line<br />
[line:my Line]<br />
Field:First field<br />
[Field:First field]<br />
</span> set as : &#8220;Let&#8217;s Start learning tally&#8221;<br />
;; end of code</p>
<p>Now save this file with a name suppose myfirsttdl.txt in notepad and then copy paste the same in your tally folder</p>
<p>Now start your tally software and follow the guidelines how to activate tdl in tally.<br />
You don&#8217;t need to have a licensed software of either tally nor tally developer<br />
It will work in any software and you can learn tally TDL very easy just by following such simple programming codes and a self practice.</p>
<p>set as : &#8220;Let&#8217;s Start learning tally&#8221;</p>
<p>now follow the articles on <a title="how to set tdl in tally" href="http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html">how to set tdl in tally</a> and activate your first tdl.</p>
<p>Now, start your tally and you will find screen shots as per below.</p>
<p>you will find an extra menu in your default menu with the name my first tdl</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image.png"><img style="display: inline; border: 0px;" title="tdl" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image_thumb.png" border="0" alt="tdl" width="144" height="244" /></a>&#8216;</p>
<p>hit the same and you will find your first tdl program</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image1.png"><img style="display: inline; border: 0px;" title="tdl image" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/09/image_thumb1.png" border="0" alt="tdl image" width="244" height="107" /></a></p>
<p>IF you like your first tdl, then do share your feedback is it hard for you to  write or learn tdl ?</p>
<p>If you have any query or need any guidance then please post it on <a href="http://forum.tallynine.com" target="_blank">support forum</a> only</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/learn-tally-tdl-our-first-tdl.html/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Sale of Services with Inventory</title>
		<link>http://www.tallynine.com/sale-of-services-with-inventory.html</link>
		<comments>http://www.tallynine.com/sale-of-services-with-inventory.html#comments</comments>
		<pubDate>Mon, 30 Aug 2010 12:53:12 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[vat and excise in tally.erp 9]]></category>
		<category><![CDATA[AMC Charges]]></category>
		<category><![CDATA[Service bill with Item]]></category>
		<category><![CDATA[Service charges Income]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1412</guid>
		<description><![CDATA[When you sale items with service charges, then it is necessary for you to charge for services with the parts/items sold. Here it should be taken into consideration that Vat /excise should not be affected by the amount of service charges/repairing income/AMC charges. Tally.erp 9 supports to account such transaction. Learn here how to deal with such invoices]]></description>
			<content:encoded><![CDATA[<p>Sometimes, back, I have written an article on how to create an <a title="item leder with vat and excise " href="http://www.tallynine.com/create-item-ledger-excise-vat.html">item ledger with vat and excise </a>duty details, so that the sales invoice entry will automatically pick the duty calculation on the item.</p>
<p>In response to the same, some of my readers including Mr. Gautam and Mr. Shahid have raised query on how to create an item with service charges excluding vat on service/repairing income ?</p>
<p>Here is the solution to this problem.</p>
<p>Let&#8217;s assume  on 28-08-2010   Red Express Company sold 10 Nos. Auto parts @ 1500 per Part  to M/s.Zoom Auto co. along with a repairing charges of Rs. 5000.00</p>
<p>To account the above transaction</p>
<p>1. Create Income Ledger : Repairing Charges (Income) under the group Direct Income.</p>
<p>2.Set Inventory Values affected to No</p>
<p>IF you are not under the preview of <a title="service tax" href="http://www.tallynine.com/how-to-set-up-service-tax-duty-ledger-in-tally-erp-9.html">service tax</a> then set no to service tax filed under statutory details.otherwise set     it   to yes.</p>
<p>3.Set No for used in vat returns, and used for assessable value calculation</p>
<h4><strong>4. Record the Transaction in Sales Voucher</strong></h4>
<p>Go to Gateway of Tally &gt; Accounting Vouchers &gt; F8: Sales</p>
<ol>
<li>In Accounting Voucher Creation screen, press Alt+I or click on I : Item Invoice if the voucher is in Account invoice mode</li>
<li>Press F2 and change the date to28-8-2010</li>
<li>In Party’s A/c Name field select the service receiver Zoom Auto Com</li>
<li>In Name of Item field select Computers and specify Quantity as 10 and Rate as 1500</li>
<li>In Accounting Details screen ledger select the Sales Ledger and press Enter</li>
</ol>
<p>6.   after entering item details, press enter it will ask for secondary /additional ledger income detail</p>
<p>7.   here select  Repairing charges Income ledger as created above</p>
<p>8.   Now select out vat amount. it will be calculated only on the item price excluding the repairing charges income.</p>
<p>9.   Accept the screen.</p>
<p>Be sure, above solution works only with tally.erp 9 release 1.61 or higher. I would recommend you to renew your <a title="TNS" href="http://www.tallynine.com/secure-your-new-release-1-8-renew-your-tally-net-license-just-now.html">TNS</a> and upgrade your tally.erp 9 to <a title="release 2" href="http://www.tallynine.com/tally-erp-9-series-a-release-2-0beta.html">release 2</a> to avail a <a title="host of benefits." href="http://www.tallynine.com/new-interface-of-control-panel-with-advanced-features-in-release-2-0-of-tally.html">host of benefits.</a></p>
<p>If you face any problem, please post your query on<a href="http://forum.tallynine.com" target="_blank"> support forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/sale-of-services-with-inventory.html/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Upgrading your tally ? Install it in a new folder</title>
		<link>http://www.tallynine.com/upgrading-your-tally-install-it-in-a-new-folder.html</link>
		<comments>http://www.tallynine.com/upgrading-your-tally-install-it-in-a-new-folder.html#comments</comments>
		<pubDate>Fri, 27 Aug 2010 13:07:47 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[TDS in Tally ERP]]></category>
		<category><![CDATA[deduction of tds in same voucher]]></category>
		<category><![CDATA[tds]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1401</guid>
		<description><![CDATA[Tally.erp 9 should always be installed in a new folder only to work the software properly. Installing the same in your old tally folder will create some problems and the updated features may not work correctly.You should upgrade your software to tally.erp 9 release 2 at the earliest]]></description>
			<content:encoded><![CDATA[<p>Recently on talking with one of tallynine.com reader Mr. Syeed, I think it necessary to inform you all, whenever you upgrade your tally.erp 9, that always prefer to install the <a title="new release " href="http://www.tallynine.com/tally-erp-9-series-a-release-2-0beta.html">new release </a> of tally.erp 9to a new folder.</p>
<p>The reason is that installing the new release in the older folder over rights the existing files that is in many cases does not support new features to work properly.</p>
<p>Here the particular problem was facing by Mr. Syeed is related to <a title="TDS" href="http://www.tallynine.com/tds-entry-in-tally-erp-9.html">TDS</a>. First he set deduction of TDS in the same voucher. he made several entries to a particular supplier. however after passing certain entries he decided not to deduct TDS in the same voucher.</p>
<p>In tally.erp 9 you may have set two option for TDS. You may refer my detailed guide on <a title="TDS help file" href="http://www.tallynine.com/tds-help-file-in-tallyerp-9-pdf-file.html">TDS help file</a> for a quick reference</p>
<p>1. you can deduct TDS in the same voucher that is while passing a journal or bill entry. In this case, only the net payable to supplier (net of tds) will be credited to supplier account.</p>
<p>2. you can select not to deduct in the same voucher. here the full amount will be credited to the supplier account. Then at the end of the month or at any time you may pass a consolidated journal automated voucher to deduct tax on all such bills.</p>
<p>So, Mr. Sayed who had set up first option initially,then decided to go for the 2nd option however he was not able to do so as the system was not able to permit him such changes and TDS was still deducted in the same voucher.</p>
<p>To sort out this problem, I had a discussion with the tally user and I had explained the reader that, I can make these changes in my system.</p>
<p>Upon discussion, I had found that the tally user was using release 1.82 which was installed in the same folder where the tally’s old version was installed.</p>
<p>Here is the point. I suggested him to upgrade to release 2.0 and install release 2.0 in a new folder and then try the same. It will definitely work.</p>
<p>So, guys be sure, whenever you wish to<a title="upgrade " href="http://www.tallynine.com/tally-9-or-tallyerp-9-upgrade-or-not.html">upgrade </a>to new release, always select to install your software in a new folder to avoid any such problems.</p>
<p>Please do share your experience in this matter with your fellow reader have you ever faced such problem while working with tally ?</p>
<p>If you have any query, then please post it on our <a href="http://www.forum.tallynine.com" target="_blank">support forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/upgrading-your-tally-install-it-in-a-new-folder.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel To Tally 7.2, 9 and ERP Bulk Entry With Quick Ledger</title>
		<link>http://www.tallynine.com/excel-to-tally-7-2-9-and-erp-bulk-entry-with-quick-ledger.html</link>
		<comments>http://www.tallynine.com/excel-to-tally-7-2-9-and-erp-bulk-entry-with-quick-ledger.html#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:26:45 +0000</pubDate>
		<dc:creator>arifmassani</dc:creator>
				<category><![CDATA[Excel to Tally]]></category>
		<category><![CDATA[excel to tally]]></category>
		<category><![CDATA[import to tally]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1368</guid>
		<description><![CDATA[This is a guest post by Arif Mansoorali who is a CA Student (PCC Group I). If you like to write for free learning tally 9 and accountancy then you may register at our  blog. Tally is world's simplest accounting software however those who are different then commerce back ground, found it difficult to post entries, ledger creation and managing accounting. Here the author comes with a very important utility to help such tally users whereby tally user can create excel entries then can import the same in tally without worrying for anything else.]]></description>
			<content:encoded><![CDATA[<div><a rel="attachment wp-att-1374" href="http://www.tallynine.com/excel-to-tally-7-2-9-and-erp-bulk-entry-with-quick-ledger.html/excel-to-tally/"><img class="alignright size-thumbnail wp-image-1374" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/excel-to-tally-150x150.jpg" alt="excel to tally.erp 9" width="150" height="150" title="Excel To Tally 7.2, 9 and ERP Bulk Entry With Quick Ledger" /></a></div>
<div>
<div><span class="currency_converter_text">Tally.erp </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">9</span></span><span class="currency_converter_text"> is one of the simplest accounting software,any person having a good commerce background knowing <a title="basic of accounting" href="http://www.tallynine.com/accounting-principles.html">basic of accounting</a> can handle it easily however notice people and esp. those who have a different back ground found it very difficult to create <a title="ledger" href="http://www.tallynine.com/create-multiple-ledger-tally-tally-tips.html">ledger</a> and post entries in tally.</span></div>
</div>
<div>Excel is the simplex Microsoft application and any one can handle it very very easy.</div>
<div>as in Excel, all you need is just to feel up the cells and save it!</div>
<div>So, what about if there is an utility that you type entries in excel then import the same in tally ? Is it hard ?</div>
<div>yes really hard but I made it easy for you. I have developed an utility a very simple utility for you guys now you don&#8217;t need to learn tally.</div>
<div>All you need is just download the utility. The utility is simply superb as per screen shot shown in the figure, all you need is just to type your entries in excel sheet. then fill up the required details and hit the import button and your entries will be posted direct to tally. No worry to see if the ledger is not created in tally. The utility will check itself and if ledger is not created, it will create the same automatically.</div>
<div>Don&#8217;t know tally ? want to to know how to post voucher entry in tally ?</div>
<div><span class="currency_converter_text">I have been found to many inquiring about how to import entries in tally.erp </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">9</span></span></span></span></span></span></div>
<div><span class="currency_converter_text"><br />
</span></div>
<div>It is a utility which allows Tally Users to Export Bulk entry of Excel to Tally speedily.</div>
<div>Interesting Features:</div>
<div><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">1</span></span></span></span></span></span></span><span class="currency_converter_text">. Bulk Entry from DATA entry in Excel to Tally </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">7.2</span></span></span></span></span></span></span><span class="currency_converter_text">, </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">9</span></span></span></span></span></span></span><span class="currency_converter_text"> and ERP (After DATA Entry </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">5000</span></span></span></span></span></span></span><span class="currency_converter_text"> Entries per </span><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">2</span></span></span></span></span></span></span><span class="currency_converter_text"> Min.)</span></div>
<div><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">2</span></span></span></span></span></span></span><span class="currency_converter_text">.Detects Ledger not created previously in tally company.</span></div>
<div><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">3</span></span></span></span></span></span></span><span class="currency_converter_text">. Automatically creates New Ledgers.</span></div>
<div>
<div><strong><span style="color: #3366ff">How to Use:</span></strong></div>
<div><span class="currency_converter_link" title="Convert this amount">1</span><span class="currency_converter_text">. Enter Required Details i.e. Tally Path, Data Path, Version of Tally, Name of Company, Company No.</span></div>
<div><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">. Always Click Generate Ledger List before Exporting new data in Tally\</span></div>
<div><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">a. It will ask User Name and Password of Tally company</span></div>
<div><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">b. Give User Name and Password (if any) else make those textbox empty (Wrong Password will not allow to Export entry)</span></div>
</div>
<div><span class="currency_converter_link" title="Convert this amount">2</span><span class="currency_converter_text">c. In &#8220;Tally Open Delay Time&#8221; give No. of Second which tally takes to open (approximate)</span></div>
<div><span class="currency_converter_text">2</span><span class="currency_converter_text">d. In &#8220;Tally Generate Ledger Delay Time&#8221; give No. of Second which Tally takes to Export Ledger (approximate) Generally it depends on No. of Ledger already their in Tally.</span></div>
<div><span class="currency_converter_link" title="Convert this amount">3</span><span class="currency_converter_text">. Make data entry in Tally as usual</span></div>
<div><span class="currency_converter_link" title="Convert this amount">4</span><span class="currency_converter_text">. Click Export</span></div>
<div><span class="currency_converter_link" title="Convert this amount">5</span><span class="currency_converter_text">. If in data entry it finds ledger which are not their in Tally it will ask Group name of those ledger</span></div>
<div><span class="currency_converter_link" title="Convert this amount">6</span><span class="currency_converter_text">. After giving Group name and opening balance (if any) click &#8220;Proceed&#8221;</span></div>
<div><span class="currency_converter_link" title="Convert this amount">7</span><span class="currency_converter_text">. Now it will ask User Name and Password of Tally company</span></div>
<div><span class="currency_converter_link" title="Convert this amount">8</span><span class="currency_converter_text">. Give User Name and Password (if any) else make those textbox empty (Wrong Password will not allow to Export entry)</span></div>
<div><span class="currency_converter_link" title="Convert this amount">9</span><span class="currency_converter_text">. In &#8220;Tally Open Delay Time&#8221; give No. of Second which tally takes to open (approximate)</span></div>
<div><span class="currency_converter_link" title="Convert this amount">10</span><span class="currency_converter_text">. Click Proceed</span></div>
<div>For Demo Version and More Details</div>
<div>Contact: Arif Mansoorali Massani</div>
<div><span class="currency_converter_text">+</span><span class="currency_converter_text"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">91</span></span></span></span></span></span></span><span class="currency_converter_text">-</span><span class="currency_converter_text"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount"><span class="currency_converter_link" title="Convert this amount">9913382099</span></span></span></span></span></span></span></div>
<div>If you have any query on the product of need further information, you may post a comment or can contact me over the phone number</div>
<div>you can download this utility for free for demo purpose only. Commercial use is chargeable. for price please contact me</div>
<div>After Downloading this file Please Rename file to &#8220;E2T (V. 2.0).exe&#8221; wihtout quotes before opening it</div>
<div><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/E2T-V.-2.0.exe">http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/E2T-V.-2.0.exe</a><a href="//prelnxftp.securehostdns.com/wp-content/uploads//2010/08/E2T.exe" target="newUpload"></a></div>
<div><strong>If you like the utility important then please do not forget to share your feedback.</strong></div>
<div><strong><br />
</strong></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/excel-to-tally-7-2-9-and-erp-bulk-entry-with-quick-ledger.html/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using A hacked Software ? look before you leap</title>
		<link>http://www.tallynine.com/using-a-hacked-software-look-before-you-leap.html</link>
		<comments>http://www.tallynine.com/using-a-hacked-software-look-before-you-leap.html#comments</comments>
		<pubDate>Sat, 21 Aug 2010 18:10:41 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[hacked tally]]></category>
		<category><![CDATA[crack software]]></category>
		<category><![CDATA[hacked software]]></category>
		<category><![CDATA[pirated tally]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1353</guid>
		<description><![CDATA[Piracy is a legal crime everywhere and there sever legal provisions against Crackled software in India. An Original software acknowledge the value of your money and gives you real benefits for which you are entitles. Piracy only help criminals while the user of the hacked software is  on a loss at all.]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/File:Piracy_is_a_crime_-_Unskippable_Anti-Piracy_track.png"><img title="A short film included on many DVDs equates cop..." src="http://upload.wikimedia.org/wikipedia/en/thumb/d/d9/Piracy_is_a_crime_-_Unskippable_Anti-Piracy_track.png/300px-Piracy_is_a_crime_-_Unskippable_Anti-Piracy_track.png" alt="A short film included on many DVDs equates cop..." width="235" height="127" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/File:Piracy_is_a_crime_-_Unskippable_Anti-Piracy_track.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>I just posted an article why <a title="I love original tally" href="http://www.tallynine.com/why-i-love-genuine-tally-erp-9.html">I love original tally</a> to use and I found some interesting response from some of my readers which reveals that there is mass unawareness in the public and people are not aware the benefits of using an original software and so they work with inferior quality goods/services.</p>
<p>Piracy is a global Issue however India is the softest target for hacked software users and developers.</p>
<p>The cause of high level of piracy rate in India is mainly due to public unawareness. People are not aware that using a hacked software is a legal crime, an anti moral action and one should not use the same. It is like an act of theft. Further to above, people are even not sure the immense benefits they can avail as a genuine customer. They are just misguided by some criminals who sells cracked software.</p>
<p>There are stringent provision in Indian Cyber laws against using, selling or distributing hacked or cracked software.If you are going to use any such pirated software then check the below provisions before you get impression or heavy fine just to save some 2-3 k bucks.</p>
<p>Under Indian law, a copyright holder is entitled to the remedies of injunction,<br />
damages and account of profits against an infringer. A sub-inspector of police,<br />
who is convinced of the infringement or possible infringement of the copyright,<br />
can seize all copies of the work and materials used to make the infringing copies,<br />
without warrant, and produce them before a magistrate.<br />
If a person knowingly and for gain, or in the course of trade or business, infringes<br />
or abets in the infringement of the copyright in any work or other right conferred<br />
by Indian copyright law, he is liable to be imprisoned for a term between six<br />
months to three years and to pay a fine between Rs. 50,000 (US$1037) and Rs.<br />
200,000 (US$4150). Where an offender uses an infringing copy of a computer<br />
program on a computer, he is liable to be punished with imprisonment from seven<br />
days up to a maximum of three years and a fine between Rs. 50,000 (US$1037)<br />
and Rs. 200,000 (US$4150). If the offender in the above cases proves that the<br />
infringement was not for gain or in the course of trade or business, the court may<br />
not impose imprisonment but can impose a fine up to Rs. 50,000 (US$1037).<br />
Further, if a person knowingly makes or possesses plates to make infringing<br />
copies, or publishes a sound recording or video film without the required<br />
particulars, he can be fined and imprisoned for a period up to two years.</p>
<p>Here in this context, I really appreciate the stands adopted by the Genuine major software maker to bring down the</p>
<p>piracy rate in India.  Anti-piracy education and enforcement campaigns spearheaded by the software industry, governments and law enforcement agencies have made commendable progress in bringing down piracy rates.</p>
<p>If you think that you can benefited by using a cracked software then Let me say buoyantly that &#8216;Software piracy benefits only criminals&#8217;</p>
<p>The user can&#8217;t get the rich benefits of the original software</p>
<p>No support from the make of the software company is available</p>
<p>If held by the anti piracy enforcement agency then the user is liable to imprisonment and a heavy fine.</p>
<p>In 2006, In Microsoft V/s others, one dealer of such pirated software was fined up to Rs 20 lacs  by the H&#8217;ble Delhi High court. User as well as seller and distributor are equally liable for using such hacked software. The enforcement agency have power to seize all computer systems using a hacked software.</p>
<p>So, I will advice you always insist to use for an original software only to work on a computer. If you believes lthat using a hacked software is much easier and convinient then an orginal software, then I would recommend you not to use any software. Its better to work manually or without a software rather then doing some illegal things.</p>
<p>Finally, one should always remember that &#8221; Software Piracy only benefits Criminals&#8221;</p>
<p>Please post your query only at our <a href="http://forum.tallynine.com" target="_blank">support forum</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=c0d33300-3aca-43ba-b91d-689d8ea032a0" alt="Enhanced by Zemanta" title="Using A hacked Software ? look before you leap" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/using-a-hacked-software-look-before-you-leap.html/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Columnar Sales Register in tally &#124; How to view ?</title>
		<link>http://www.tallynine.com/columnar-sales-register-in-tally-how-to-view.html</link>
		<comments>http://www.tallynine.com/columnar-sales-register-in-tally-how-to-view.html#comments</comments>
		<pubDate>Fri, 20 Aug 2010 09:44:49 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[Reports in tally]]></category>
		<category><![CDATA[column sales register in tally]]></category>
		<category><![CDATA[reports in tally]]></category>
		<category><![CDATA[sales register]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1341</guid>
		<description><![CDATA[Reporting in accounts is vital for decision making and preparation of financial. While some reports are required to print in columnar format for better presentation.Learn here how to print columnar report for sales register which is a useful for vat assessment purpose. ]]></description>
			<content:encoded><![CDATA[<p>Earlier, I have posted articles on how to pass entries for sales/purchase  under category of <a href="http://www.tallynine.com/category/vat-and-excise-in-tally-erp-9/" target="_blank">vat and excise</a> in tally.erp 9</p>
<p>Today, we will see how to generate sales report in tally.erp 9. Printing columnar report is important in accounts esp. to generate sales and purchase register for vat assessment.</p>
<p>Tally.ERP 9 provides you the capability to generate columnar reports for different periods. Select the option F5: Columnar from the button bar, in the Sales Voucher Register screen.</p>
<p>Set the options listed to Yes or No, depending on how you want the Sales Register to be displayed.</p>
<h5>Type of Column</h5>
<p>Select the type of column from the screen.</p>
<p>If you select Ledger or Group as Type of Column, you will be provided with one more list for choosing the ledger/group. Your choice will be displayed under Name of Account.</p>
<h5>All Items (automatic columns)</h5>
<p>If this option is selected, every ledger account will be displayed in separate column.</p>
<h5>All Item (in one col.)</h5>
<p>If this option is selected, all the ledger accounts are displayed in one single column.</p>
<h4>Group</h4>
<p>You can also select a group of ledger accounts to be displayed together in one column, e.g., Sales accounts. For other columns, you can use the additional options, namely Related accounts (automatic columns) or Related Items (in one col.).</p>
<h5>Related Items (automatic columns or in one column)</h5>
<p>Related items means all the ledger accounts used in a voucher. Hence, the report will be similar to All Items (automatic columns). This option is helpful when used in conjunction with a Group or a specific ledger account in the first column.</p>
<h4>Ledger</h4>
<p>Select a specific ledger account e.g., VAT/Sales Tax. All other accounts can be put in one or more columns.</p>
<p>Change Voucher Types</p>
<p>Use this button to view a different register from within an existing register. E.g. If you are in Sales Register and want to view the Payment register, press F4: Chg Vch and select Payment.</p>
<p>On the same way, you can generate columnar purchase register too.</p>
<p>If you have any query, then please post it on the <a href="http://forum.tallynine.com" target="_blank">support forum</a> only</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/columnar-sales-register-in-tally-how-to-view.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get a tally Job with Release 2.0 now</title>
		<link>http://www.tallynine.com/get-a-tally-job-with-release-2-0-now.html</link>
		<comments>http://www.tallynine.com/get-a-tally-job-with-release-2-0-now.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 10:09:36 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[Tally Jobs and Recruitment]]></category>
		<category><![CDATA[online tally test]]></category>
		<category><![CDATA[release 2.0]]></category>
		<category><![CDATA[tally job]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1339</guid>
		<description><![CDATA[Tally is one of biggest contributor towards job creator for skilled and unskilled persons. Now with release 2.0 students and other person can register with tally academy for Rs. 450.00 and can avail a bunch of facility.Can access prospective from the portal, can contact employer directly and even can make self assessment before recruitment.This facility is very useful for prospective employer also as it will help them to save advertisement and recruitment cost to search a suitable candidate.]]></description>
			<content:encoded><![CDATA[<p>Today I am extremely happy to share a very good news with you all.<br />
as you all are well aware about <a title="beta release 2.0" href="http://www.tallynine.com/tally-erp-9-series-a-release-2-0beta.html">beta release 2.0</a> of tally.erp 9.<br />
now final release 2.0 is on air and i will recommend every  one to download and activate the same at the earliest.<br />
We have already discussed the <a title="advanced features of tally.erp 9" href="http://www.tallynine.com/new-interface-of-control-panel-with-advanced-features-in-release-2-0-of-tally.html">advanced features of tally.erp 9</a> today, I will let you one powerful and  very important feature for tally users/students/employees and  accountants.</p>
<p>Now you can boost you career  without any restriction.There is a Job portal within Tally Control  Center of tally.erp 9.<br />
If you are using a hacked version of  tally.erp 9 then I am sorry to inform you that you  can&#8217;t avail this feature.</p>
<p>Now you can register yourself and can upload your resume that will  be assessed directly by a prospective employer.<br />
It is very useful  for job seeker as well as employer itself. Because the employer will not  need to post advertisement nor he require to engage any recruitment  agency. It will save employer&#8217;s cost.<br />
This facility is good for job seekers too as now they can see the  details of prospective employer and can contact directly to the  employer.<br />
For student, Learning , Self assessment and job all is in  one portal with recruitment preparation to ensue success.</p>
<p>Sounds interesting !! there is one more thing! now the employer can  arrange an online tally test of prospective candidate for tally and  accountancy knowledge.</p>
<p>All you need is  to subscribe for tally student subscription which will  cost you Rs. 450/- which will empower you following features.</p>
<p>View job opportunities in SMBs<br />
Identify  jobs that suit your interests and capabilities<br />
Use Self-Assessment  to map your skills against those that are required<br />
Learn skills to prepare for your pre-recruitment tests<br />
Get the job!</p>
<p>you can register yourself with any nearest Tally  Academy to you.</p>
<p>If you have a tally currency worth of Rs. 450.00 you can register <a href="http://www.tallysolutions.com/tallyweb/modules/crm/AIM/CAIMStudentEFormWIC.php" target="_blank">online</a> also</p>
<p>If you like to buy tally.erp 9, then you can buy it <a href="http://www.tallysolutions.com/tallyweb/modules/sd/docmgmt/COnlineOrderEntryCtrl.php" target="_blank">online direct from tally</a> with our partner link.</p>
<p>Check out our proud and happy customer on the <a href="http://www.tallynine.com/portfolio/" target="_blank">portfolio</a> section.</p>
<p>If you have any query, please post it on <a href="http://forum.tallynine.com" target="_blank">support forum</a> only. Queries posted as a comment, will not be answered.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/get-a-tally-job-with-release-2-0-now.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why I love Genuine Tally.erp 9</title>
		<link>http://www.tallynine.com/why-i-love-genuine-tally-erp-9.html</link>
		<comments>http://www.tallynine.com/why-i-love-genuine-tally-erp-9.html#comments</comments>
		<pubDate>Wed, 18 Aug 2010 18:03:07 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[Tally 9]]></category>
		<category><![CDATA[crack tally]]></category>
		<category><![CDATA[license tally.erp 9]]></category>
		<category><![CDATA[tally hack]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1334</guid>
		<description><![CDATA[There is big difference in using a crack and a licensed software.Those who have little knowledge, who is not professional in his/her work and business will use a crack software. While professional and sincere person will always insist to install a licensed version.
Well managed and professional business unit will never utilize an original software working with them means restricting your own development in your work area.Because in a crack version, you can not get all the related advanced features which is a must to develop your professional knowledge and experience.]]></description>
			<content:encoded><![CDATA[<p>Tally.er9 an accounting software from <a href="http://www.tallysolutions.com" target="_blank">TallySolutions  Pvt Ltd</a> is  India&#8217;s most popular and affordable accounting package for a small and medium SMB.</p>
<p>It is like India&#8217;s Microsoft (Windows)  due to poor copy right protection rules and lack of strict legal provisions for software protection in India. Further to above, Many small computer and software vendors spreading  a misleading information about not to use original license just to earn some 2-3 k.That is why out of every 10 user, 7 are using a cracked version of tally.erp 9. It is a matter of common sense that goods things always comes at  a reasonable price.</p>
<p>Using a crack software may help you to save some buck however in reality it cost a business much more. Because cracked user can&#8217;t get the support, a pleasure of using a genuine software and further to above, many vital features of the product does not work on such version which are available only to a genuine user of tally.erp 9.It is the original software only which will increase your professionalism and enrich your knowledge in the related area.</p>
<p>A public aware in this regard very much important. If you doing a job in a company which, does not use a genuine copy of the software, then you should explain your management the benefits of the original software. If your management do not support you and only interested to save some buck, then I would advice to leave such firm immediately.Because a management which is not able to evaluate the value of an accounting software, how it can be able to value its employees ? No matter how your work is good, your management will think only about saving cost</p>
<p>Let me share here my personal experience. Where ever I have joined as an accountant during my 18 year&#8217;s job period, The fist thing, I had asked the management to install a genuine software for the accounts. If management do not follow my advice then I do not accept the job. Because, using the genuine software, has helped to increase my capability, my knowledge in the field of accountancy and tally, understanding various statutory requirement and procedure. I got all this things only due to using a genuine software. I never attended any tally course or classes nor have ever I asked anybody how to manage tally ?</p>
<p>Fortunately due to my passion of using a genuine tally, today I am earning a handsome salary and working as a chief accountant with one MNC Company. Just a clarification, I will give sole credit to tally only to get this job because my company was looking for a person who can handle tally 9.</p>
<p>One of <a href="http://tallynine.com" target="_blank">Free Learning tally 9 and accountancy</a> reader <a href="http://xen_bilara@yahoo.com" target="_blank">Mr. Anil</a> asked the difference of using an original  and a crack version of tally. My best response is that a person who will draw more salary regardless of his post on using an Original  licensed software then the one who work with a company which is using a crack version. The reason is that original tally enhance your capability and professionalism.</p>
<p>If you have any query regarding tally ? then please post it only at <a href="http://forum.tallynine.com" target="_blank">support forum</a> only</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/why-i-love-genuine-tally-erp-9.html/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to set TDL in tally.erp 9</title>
		<link>http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html</link>
		<comments>http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html#comments</comments>
		<pubDate>Fri, 06 Aug 2010 09:57:40 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[TDL in tally]]></category>
		<category><![CDATA[logo printing]]></category>
		<category><![CDATA[tally customisation]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1330</guid>
		<description><![CDATA[understanding tdl and managing TDL is very useful to customize your tally program. Learn how to upload your tdl and how to set up your tally.erp 9 software to run your tally. you can prepare your tdl in a simple note pad with .txt file and can use the same as a tdl. download free logo printing tdl for your invoice printing.]]></description>
			<content:encoded><![CDATA[<p>TDL stand for Tally Definition Language. It is tally&#8217;s programming language .It is a Domain Specific Language which help you to control, customize, create, alter tally reporting, integrate other application with tally.</p>
<p>I have uploaded a free <a href="http://tallynine.com/forum/viewtopic.php?f=7&amp;t=7" target="_blank">logo printing  TDL</a> for users you can use it for your invoice printing.</p>
<p>IF you are sincere then then learning TDL is very very simple. However it needs lot of practice, practice and practice.</p>
<p>You need to create some tdl file in a simple editor like notepad or tally developer.</p>
<p>then save  it in .txt or in .tdl(only possible through the compiler) copy the file to tally folder</p>
<p>Once you did this, then you need to specify your tdl location file  in the following way.</p>
<p>Go to tally.erp 9 main menu and press f12</p>
<p>Select TDL configuration</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image8.png"><img style="display: inline; border: 0px;" title="F12 configuration" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb8.png" border="0" alt="F12 configuration" width="166" height="244" /></a></p>
<p>You will find below screen. Now press F4</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image9.png"><img style="display: inline; border: 0px;" title="tdl configuraiton" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb9.png" border="0" alt="tdl configuraiton" width="244" height="60" /></a></p>
<p>You will see the below screen. in first option set to yes</p>
<p>then in the below space, just specify location and file name where your .txt/tdl file is located for e.g. you made a logo.tdl file.</p>
<p>copy this file to d:\Tally.erp \logo.tdl</p>
<p>Specify the above path here</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image10.png"><img style="display: inline; border: 0px;" title="set tdl in tally" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb10.png" border="0" alt="set tdl in tally" width="244" height="101" /></a></p>
<p>Accept the screen and it will ask for restart of software. allow it</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image11.png"><img style="display: inline; border: 0px;" title="logo print in tally" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb11.png" border="0" alt="logo print in tally" width="244" height="167" /></a></p>
<p>Now if file name you typed is correct/file exist, it will show a message of active against the file path otherwise it will show an error message</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image12.png"><img style="display: inline; border: 0px;" title="save tdl in tally" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb12.png" border="0" alt="save tdl in tally" width="244" height="58" /></a></p>
<p>if no error then you can work with your tdl.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/how-to-set-tdl-in-tally-erp-9.html/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Be Prepare for 2nd Online tally test</title>
		<link>http://www.tallynine.com/be-prepare-for-2nd-online-tally-test.html</link>
		<comments>http://www.tallynine.com/be-prepare-for-2nd-online-tally-test.html#comments</comments>
		<pubDate>Thu, 05 Aug 2010 16:33:40 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[tally exam]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1272</guid>
		<description><![CDATA[managing tally.erp 9 is a practical work and the more you do exercise, you will be able to learn it properly.I have created series of online tally test which will help you to understand your tally knowledge and it will boost your expertise in tally.erp 9. Participate in the online tally test and be an expert in tally.erp 9]]></description>
			<content:encoded><![CDATA[<p>After a very <a title="impressive response " href="http://www.tallynine.com/result-of-1st-online-pilot-testing.html">impressive response </a>to the first <a title="online tally test" href="http://www.tallynine.com/online-tally-test-test-your-tally-knowledge.html">online tally test</a>, now its time to go ahead with an another online tally test.</p>
<p>Be prepare yourself for the same. I have already prepared a questionnaire for <strong>2nd Online tally test</strong> and the same is scheduled during 3rd week of August 2010.</p>
<p>I have created  <a href="http://www.forum.tallynine.com" target="_blank">Support forum </a>so that discussion on a particular subject matter can be threaded properly and student can find the related answer immediately. Further to above, Now onwards online test will also be managed from the forum.</p>
<p>All you require is to <a href="http://tallynine.com/forum/ucp.php?mode=register" target="_blank">register</a> on the support forum. Once you register yourself, you will get the code to join the online test.</p>
<p>Of course, I love all my facebook member who like our facebook page <a href="http://www.facebook.com/pages/Learn-tallyerp-9-free/234189766073" target="_blank">Learn tally.erp 9 free</a>. So, They will get the code directly on the facebook without requiring to register on the forum. If you didn&#8217;t like it, you may still like it by joining <a href="http://www.facebook.com/pages/Learn-tallyerp-9-free/234189766073" target="_blank">here</a></p>
<p>This test paper will consist 10 marks and time duration will be 10 minutes. most questions are in the nature of true and false.</p>
<p>If you don&#8217;t want to face a failure, then prepare right now from today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/be-prepare-for-2nd-online-tally-test.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lower Deduction of TDS in Tally &#124; How to manage</title>
		<link>http://www.tallynine.com/lower-deduction-of-tds-in-tally-how-to-manage.html</link>
		<comments>http://www.tallynine.com/lower-deduction-of-tds-in-tally-how-to-manage.html#comments</comments>
		<pubDate>Wed, 04 Aug 2010 14:07:24 +0000</pubDate>
		<dc:creator>Mahendra</dc:creator>
				<category><![CDATA[TDS in Tally ERP]]></category>
		<category><![CDATA[lower tds in tally]]></category>
		<category><![CDATA[seciton 197A and 197]]></category>
		<category><![CDATA[TDS in tally]]></category>
		<guid isPermaLink="false">http://www.tallynine.com/?p=1267</guid>
		<description><![CDATA[Learn how to manage lower deduction of tds in tally for certain assesses to whom the ITO issued a valied lower TDS certificate. In tally.erp 9, it is very easy to manage calculation and other related matters for such deduction and calculation is automated.All you need is one time set up for lower deduction in the supplier's master ledger account. ]]></description>
			<content:encoded><![CDATA[<p>TDS is in tally.erp 9 is the biggest helping hand for me as it help me to avoid manual work relating to <a title="TDS compliance" href="http://www.tallynine.com/tds-entry-in-tally-erp-9.html">TDS compliance</a>. Since entire system in tally.erp 9 relating to TDS is automated all you need is to make some one time set up for enable TDS in tally.erp 9 and then just concentrate your attention only towards making entries. Your tally.erp 9 will take care of TDS calculation, TDS return, Form no. 16a and every aspect relating to <a title="TDS" href="http://www.tallynine.com/tallyerp-9-how-to-do-tds-entry.html">TDS</a> including automated payment challan for TDS. If you are not aware of TDS features in tally then you should refer<a title="TDS help file" href="http://www.tallynine.com/tds-help-file-in-tallyerp-9-pdf-file.html">TDS help file</a> for further reference</p>
<p>One more interesting feature available in tally.erp 9 is to manage lower deduction TDS rates for certain suppliers</p>
<p>By virtue of Section 197/197A an assesses can get  a certificate of lower deduction from the ITO.</p>
<p>Such certificate will include your TAN number, Assesses PAN Number, Period of applicability, approx. billing amount to you during the period and the % of TDS by which you should deduct TDS on the same.</p>
<p>Let’s assume one of your supplier presents you such a certificate of lower deduction of tds at a rate of 6%, then you must deduct the same as per the certificate produced to you.</p>
<p>Let’s learn how to manage the same in tally.erp 9. Once you make the settings as per below then whenever you book the invoice of such supplier then TDS will be calculated and deducted from the bill automatically at the rates specified as per the lower Deduction certificate</p>
<p>Go to related supplier’s ledger who produced you the lower deduction certification</p>
<p>Set yes to Is tds applicable  ?</p>
<p>Then set advance entries in tds through F12 configuration</p>
<p>select deductee type from the list</p>
<p>use advanced tds entries set to yes</p>
<p>You will find a pop up as per below</p>
<p>then go to alter Zero/lowder deduction to yes</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image5.png"><img style="display: inline; border: 0px;" title="isection 197A" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb5.png" border="0" alt="isection 197A" width="244" height="138" /></a></p>
<p>you will find below screen</p>
<p>here select the Nature of payment applicable from the pop up window list</p>
<p>set section number (it will be shown in the lower deduction certificate</p>
<p>mention necessary details</p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image6.png"><img style="display: inline; border: 0px;" title="lower deduciton of tds" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb6.png" border="0" alt="lower deduciton of tds" width="244" height="97" /></a></p>
<p><a href="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image7.png"><img style="display: inline; border: 0px;" title="tds deduciton in tally" src="http://www.tallynine.com/http://prelnxftp.securehostdns.com/wp-content/uploads//2010/08/image_thumb7.png" border="0" alt="tds deduciton in tally" width="370" height="54" /></a></p>
<p>If you have any query, then please post it on support <a href="http://www.forum.tallynine.com" target="_blank">forum only</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tallynine.com/lower-deduction-of-tds-in-tally-how-to-manage.html/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
