Questions tagged [tally]

Questions related to Tally Accounting Software. Including ODBC, Tally Development Language (TDL)

Tally is a popular accounting software in India.

Created by Tally Solutions, it is marketed as an ERP software, for things like Inventory management, Payroll, etc.

Site: https://tallysolutions.com/

161 questions
6
votes
1 answer

How can we integrate REST api with tally?

I want to integrate Tally ERP application with the REST webservices. When any action performed in Tally the Entry of the Data should be reflect on the REST database. How can a purchase order created in tally Transferred to Remote Database?
user9626527
  • 106
  • 9
4
votes
3 answers

R Dplyr Add Rows Total

HAVE = data.frame(STUDENT = c(1,2,3,4), YEAR = c(2020,2020,2021,2020), SCORE1 = c(5,9,8,0), TEST = c(7,11,3,9)) WANT = data.frame(STUDENT = c(1,2,3,4, 'ALL'), YEAR = c(2020, 2020, 2021,…
bvowe
  • 3,004
  • 3
  • 16
  • 33
3
votes
3 answers

What is Tally query language?

What is Tally query language? I searched online but I didn't get anything on TQL. I got something about Tally definition language. Is there any difference between Tally query language and Tally definition language?
suresh
  • 49
  • 2
  • 10
3
votes
3 answers

Data Frame: how to add a column to count previous occurrences in the last 20 weeks?

This is my first question here in a long time :). I've got a data frame with data about patient visits to a clinic. visit_id <- c(1,2,3,4,5,6,7,8,9,10) patient_id <- c(1,2,1,1,3,2,1,4,5,6) visit_date <-…
TimmyOnRails
  • 327
  • 3
  • 13
3
votes
2 answers

How to integrate Java with Tally application

I need to integrate my java web application with Tally software. Is it possible? Please provide some idea.
Srinivasan
  • 11,718
  • 30
  • 64
  • 92
2
votes
1 answer

How to export Tally ledger opening and cloing balance with voucher details?

I am trying to get Tally Erp 9 Ledger voucher through post XML Request, everything is working fine except opening and closing balance. Please guide me to get both balance amount. **XML Request:**
Export…
Bhat
  • 65
  • 8
2
votes
0 answers

I already SMS module create in Tally Developer 9.Working Properly but my requirement is multiple item select than message not proper way

single item select:- Example: "Dear Sir, your sales item name is mobile and price 100 Rs." Multiple items select:- "Dear Sir, your sales item name is mobile, price 100 Rs 1 qty and laptop price 10000 Rs 1 qty"
Brijesh Darji
  • 123
  • 10
2
votes
1 answer

How to integrate Tally ERP-9 with Python

How to integrate Tally ERP-9 with Python(Django) for Pushing and pulling amount based on ledger.
Manish Kumar
  • 39
  • 1
  • 8
2
votes
5 answers

Tally Integration with XML and HTTP : Ledger creation failure

I would like to integrate a third party application with tally over HTTP using XML. When I try to import a ledger into tally through HTTP, it says Unknown Request, cannot be processed Same XML format, when I import into tally manually using "Import…
Ujwala
  • 91
  • 1
  • 2
  • 9
2
votes
1 answer

Import Payment Voucher for a Particular Bill (Against Ref) through XML Request in Tally

I am trying to import a payment voucher for a particular bill through XML request in Tally. I was partially successful in doing it. I was only able to import a payment voucher against an Account but not Against a Reference (Particular bill). Here…
Praveen Kumar
  • 138
  • 1
  • 10
2
votes
2 answers

What is the significance of REMOTEID attribute in Tally Voucher XML File?

I'm working on a utility to import my statements in Tally as a voucher. What I wish to achieve is that if in future I send the same entry by mistake, Tally should be able to identify it as Duplicate and overwrite it instead of creating a new voucher…
Ashit Vora
  • 2,902
  • 2
  • 27
  • 39
1
vote
1 answer

How to get rid of () special character in Tally XML Ledger Export Response

I am getting the following error while deserializing the xml response from ledger export request in tally in C#. Error "XmlException: '', hexadecimal value 0x04, is an invalid character. " This is due to () character in front of Primary in Parent…
1
vote
1 answer

What is the meaning of ISMODIFY="NO" ISFIXED="NO" ISINITIALIZE="NO" ISOPTION="NO" ISINTERNAL="NO" in Tally XML Request

What the meaning of ISMODIFY="NO" ISFIXED="NO" ISINITIALIZE="NO" ISOPTION="NO" ISINTERNAL="NO" in tally xml request body. Thanks
1
vote
1 answer

Adding a tally/count of observations using mutate in r

I wanted to know if there was a more efficient way to add a tally to a dataset in R. Using the mpg dataset, this is how I do it using the mpg dataset as an example. mpg %>% group_by(manufacturer) %>% count() %>% right_join( mpg ) So…
TheBoomerang
  • 109
  • 5
1
vote
2 answers

Can we Load TDL file to Tally through C# code automatically

I Am having an tool which is developed in C# to fetch data from Tally to my local database. As of now I am manually loading the TDL file in Tally and then fetching data from C#. But is there any way to load TDL file automatically to Tally through my…
Gokul Kannan
  • 53
  • 2
  • 14
1
2 3
10 11