Tally.ERP 9 Tips | Tally.ERP 9 How-to | Tally.ERP 9 Support | Tally.ERP 9 Free add-ons

Explore Tally

Service Tax without Round-off

How do I disable Service Tax rounding-off in Tally ERP 9 ?

If you are using Service Tax feature in Tally ERP 9, you may have faced the issue of Rounding-off of the EduCess and HigherSecEduCess values. To disable automatic round-off (which is default setting), follow these steps :-

1) Select the option “Gateway of Tally > F11 > Statutory & Taxation”.
2) Next, set the option “Enable Service Tax” to Yes
3) Next, set the option “Set/Alter Service Tax details” to Yes.
4) Next, set the option “Enable Service Tax Round off” to No.

For programmers:-
While programmatically pushing data, ensure that the tag ZERORATED is set to Yes  .i.e. <ZERORATED>Yes</ZERORATED>

1 comment - What do you think?
Posted by admin - June 22, 2011 at 6:53 pm

Categories: How to ?, Uncategorized   Tags: ,

E-VAT Annual Return Form 205 for Gujarat

Tally ERP 9 includes the VAT format for Annual Return for Gujarat State viz Form 205. However, the corresponding E-VAT format for Form 205 is NOT available in Tally ERP 9 Release 3.1. This has been confirmed by Tally Solutions, Bangalore.

1 comment - What do you think?
Posted by admin - June 16, 2011 at 4:36 pm

Categories: tally.erp   Tags: , ,

Purchase Invoice with Cost Centre and Cost Category

Recently on of our Clients raised the following issue :-

While entering Purchase entry with stockitems (in Invoice mode) in Tally ERP 9, we are unable to select / specify the Cost Category and Cost Centre as it can be done in Sales entry with stockitems (in Invoice mode).

On analysis, we found that in Purchase entry with stockitems (in Invoice mode), the Cost Category and Cost Centre allocation dialog box does NOT appear. However, it appears in (Voucher mode).

Prima facie this appears to be an issue with Tally Software. The Cost Category / Cost Centre dailog box should appear in Purchase entry with stockitems as it works in Sales entry with stockitems.

 

 

1 comment - What do you think?
Posted by admin - June 11, 2011 at 11:44 am

Categories: tally.erp   Tags: ,

XQuery to get Ledger Names and Amount

Here’s a XQUERY STATEMENT to get the Ledger Names and Amount from XML generated from Tally Software.

 

for $row in (//ENVELOPE/BODY/IMPORTDATA/REQUESTDATA/TALLYMESSAGE/VOUCHER)
let
$vchtype := ($row/VOUCHERTYPENAME),
$vchdate := ($row/DATE)
return
<voucher>
<vchtype>{data($vchtype)}</vchtype>
<date>{data($vchdate)}</date>
{
for $ledgername in distinct-values($row/descendant::LEDGERNAME)
let $amount := (sum($row/descendant::LEDGERNAME[.=$ledgername]/parent::node()/AMOUNT))
return
<row>
<ledger>{$ledgername}</ledger>
<amount>{$amount}</amount>
</row>
}
</voucher>

Be the first to comment - What do you think?
Posted by admin - May 26, 2011 at 6:26 pm

Categories: xquery   Tags:

Recycle bin for Tally ERP 9

Download the Source code of Recycle bin for Tally ERP 9

1 comment - What do you think?
Posted by admin - May 25, 2011 at 7:46 pm

Categories: Free Tally tools, tally.erp   Tags: ,

Tally ERP 9 – Client without ODBC

Unable to connect to Tally ERP 9

In the last few days, several of our clients have reported the problem that they are unable to connect to Tally ERP 9 using UDIMagic.

On further analysis, we noticed the following :-

1) The Configuration box in the Gateway of Tally shows “Client without ODBC
2) On using the option “Gateway of Tally >> F12 >> Advanced Configuration”, the options viz “Tally is acting as” and “Enable ODBC Server” are disabled.

To resolve the aforesaid issue, follow the underneath steps :-

  1. Start Tally ERP 9
  2. Press Ctrl + K to invoke Control Centre feature
  3. Enter your Tally.NET user id and password
  4. Select the option “Licensing & configuration
  5. Select the option  “License Management
  6. Press F9 to select option “Gen Config List
  7. Next, specify the values for the options as shown underneath :-
    a) Tally is acting as   = Server
    b) Enable ODBC Server = Yes
    Port = 9000
    Can be overridden locally = Yes
  8. Press Ctrl+A to save it.
  9. Next, select “Gateway  of Tally >> F12 >> Licensing >> Update License”
  10. Next, restart Tally ERP 9.

After following the aforesaid steps, the Configuration Box in Gateway of Tally must display Server with ODBC on Port 9000

In case, if the problem still remains, kindly report the issue to Tally Solutions, Bangalore with your Tally Serial Number.

Remarks:-
The aforesaid issue has been brought to our notice by our Customers within India and outside India.
It appears that some changes have been done by Tally Solutions, Bangalore relating to “Control Centre” default settings at their end which has caused this issue.

1 comment - What do you think?
Posted by admin - May 6, 2011 at 4:48 pm

Categories: tally.erp   Tags: ,

Tally-Export Party Addresses to Excel

How to export Party addresses from Tally to Excel ?

Refer this link for exporting Party addresses from Tally into Excel.

Be the first to comment - What do you think?
Posted by admin - May 5, 2011 at 11:16 pm

Categories: How to ?   Tags:

Merge data in Tally.ERP 9

How to merge data in Tally.ERP 9 ?

Assuming, you have two companies viz Company No 1 and Company No 2 and you wish to transfer all the data of Company No 1 into Company No 2.

Steps :-

  1. Open Company No 1 and Export data from Tally ERP 9 in XML format including dependent masters
    a) Use option “Gateway of Tally >> Display >> Daybook”
    b) Set the period using Alt+F2
    c) Next, press Alt+E to export the Tally.ERP 9 data into XML format including dependent masters.
    d) This will generate a file named “daybook.xml” in the Tally folder.
  2. Open Company No 2 and Import data into Tally.ERP 9 in Company No 2
    a) Use option “Gateway of Tally >> Import of data >> Vouchers”
    b) Specify the file-name as “daybook.xml” and press enter to import data into Tally.ERP 9

Remarks:-
a) Take backup of your Tally Companies before merging for safety purpose.
b) After merge, the Company No 2 contains the data of Company No 1
c) The above has been tested with Tally.ERP 9 Release 3.0 with some test-data.

Merging in Tally.ERP 9 vs Tally 9

Tally.ERP 9 Release 3.0 provides an option to export vouchers along with the dependent masters. Hence, there is no need to separately export the masters as it was required previously.

Related Posts :-
How to copy / paste entries from one company into another by ApniTally

1 comment - What do you think?
Posted by admin - April 28, 2011 at 10:21 am

Categories: How to ?   Tags: , ,

Export Tally data to Excel | Free tool

How can I export Tally data into Excel ?

You can use Tally ODBC feature supported by Tally Accounting software to get data from Tally into Excel. Alternatively, you can use this FREE Tally to Excel utility to get Tally data into Excel.

Supported Tally versions : Tally.ERP 9, Tally 9, Tally 8.1, Tally 7.2, Tally 6.3

Remarks:-
Tally ODBC does not expose all the fields of all tables / objects in Tally. Hence, you will be able to retrieve only the first level fields (limited fields) from Tally database tables / objects.

1 comment - What do you think?
Posted by admin - April 26, 2011 at 10:33 am

Categories: Free Tally tools, How to ?   Tags: ,

Create new fields in Tally ERP 9

How do I create a new field in Tally ERP 9 or other Tally versions ?

You can create new fields in Tally by writing TDL code in plain text file. Adding new fields or UDFs (User defined fields) is quite simple.

Here’s an article that teaches you how to create new fields in Tally.

To use the TDL code, you must specify the file-name in the Tally.ini file – refer Tally Customization using plain text files.

 

1 comment - What do you think?
Posted by admin - April 22, 2011 at 7:54 pm

Categories: How to ?   Tags: , , ,

« Previous PageNext Page »