simple way to send sms by tally

Discussion in 'Free Source Codes' started by kishan agrawal, Jan 11, 2015.

    
  1. Hardik Nagar

    Hardik Nagar New Member


    @kamal
    Sir it would be very nice of you if you could take a moment and help me with the above issue.

    Thanks
     


  2. Amitpareek4u

    Amitpareek4u New Member


    Hare Krishna

    Bhaiya can u send me tdl file.for.sending SMS from.tally for party outstanding
    amitpareek4u@gmail.com



     


  3. scuba

    scuba Member


    i want to send sms by pc &details as follows
    1.Bill no.
    2 Bill Date
    3.Taxable total amount
    4. total tax amount
    5.gross amount (taxable total amount+ total tax)
    6.cases
    7.total qnty
    8.l.r.no.
    9.l.r.date
    10. from my company name.
    i want to send this details by sms but just dont want any api or other service provider . i want this sms content to be copied on clipboard of computer so that i can send thisinformation by whatsapp or any other app.
    tia
    sandeep kumar bajaj
    93178416002
     


  4. scuba

    scuba Member


    if we want to copy above message content to pc clipboard to send sms by whatsapp please provide code for that
     


  5. bhuvangupta

    bhuvangupta New Member


    Button Does not appear!
    What to do?
     


  6. sathiyaraj

    sathiyaraj Member


    send me the tdl code.....
     


  7. sathiyaraj

    sathiyaraj Member


    Do u finish this tdl ....
    if u dont mind send the tdl code....@@ sathiyaraj31@gmail.com
     


  8. sathiyaraj

    sathiyaraj Member


    How to fetch Billed qty
    Billed Item Name...??????????????
     


  9. nasir

    nasir Member



  10. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Nasir... before you admit defeat or say...."not working" ... you must try your codes on a LICENSED version.

    Because of the way it is hacked...might be possibles... that a perfect working code will not work on your pirated version.
     


  11. nasir

    nasir Member


    ok sir g
     


  12. torsky

    torsky New Member


    [System: Formula]
    partyname : $$Stringwordex:$Partyledgername:" ":1
    mobno : $Ledgermobile:Ledger:$Partyledgername
    vchno : $$String:$VoucherNumber
    amt : $$String:$amount
    vchdate : $$String:##VARVchDate

    [#Form: Sales Color]
    On : Form Accept: @@IsSales :CALL : POST

    [Function POST]

    00 : WALK COLLECTION : Webhook
    10 : END WALK

    [Collection: Webhook]
    Remote URL :"https://msg91.com/ABCD/?&mob="+@@mobno+"&vchno="+@@vchno+"&partyname="+@@partyname+"&vchdate="+@@vchdate+"&amt="+@@amt+"&email="+@@email+"&docket="+@@docket+"&couriername="+@@couriername+"&po="+@@po

    Hello

    I made a very simple SMS module, that works only on sales voucher, how can i make it work on sales order and receipt payment vouchers? thanks!
     


  13. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    [#Form: Sales Color]
    On : Form Accept: @@IsSales :CALL : POST


    Problem is here..
     


  14. torsky

    torsky New Member


    @Jay kumar tailor Thank I was able to modify it to make it work with sales order however there is a problem, which is only limited to sales order (all other type of vouchers work perfect)

    As soon as the form is accepted, sales order voucher number will not increase

    suppose current voucher number is 23, as sson as items and party details are entered in the sales order, the voucher number will not increment/increase to 24, it remains 23.
    as mentioned above this happens ONLY in sales order voucher type, sale bill, receipt, etc. work perfect.

    can someone help me!

    Code:
    [System: Formula]
    partyname : $$Stringwordex:$Partyledgername:" ":1
    mobno : $Ledgermobile:Ledger:$Partyledgername
    vchno : $$String:$VoucherNumber
    amt : $$String:$amount
    vchdate : $$String:##VARVchDate
    
    [#Form: Sales Order Color]
    On : Form Accept: @@IsSalesOrder : CALL : soFn
    
    [Function:soFn]
    
    00 : WALK COLLECTION : soWebhook
    01 : END WALK
    
    [Collection: soWebhook]
    Remote URL :"https://abcd.com/?&mob="+@@mobno+"&vchno="+@@vchno+"&partyname="+@@partyname+"&vchdate="+@@vchdate+"&amt="+@@amt
     
    Last edited: Jan 9, 2019


  15. Jay kumar tailor

    Jay kumar tailor Well-Known Member



    You must read a walk collection for Voucher import.

    Try this way

    First take variable and then

    01 : Increment : voucher num

    I hope this information will helpful for you..
     


  16. Atul Khakher

    Atul Khakher Member



  17. Moresh Kashikar

    Moresh Kashikar New Member


    Not working





     


  18. Ria

    Ria Member


    I am not able to send the SMS using Remote URL. Browse URL works fine, the only problem is that the browser window opens up each time an SMS is sent.

    Can someone provide an explanation, why Remote URL is not working?
     


  19. lumos

    lumos Member


    Remote URL is working fine, If it is not working try using Browse url ex
     


  20. Ria

    Ria Member


    Browse URL, Browse URL Ex, I have used both, they work fine, I just don't want the browser window to be opened each time.

    I know that silent SMS messages are sent by walking a collection with Remote URL attribute inside it, but it's not working.
     


  21. lumos

    lumos Member


    Which Tally version are you using?
     


  22. Ria

    Ria Member


    Tally ERP 9 Release 6.5.1
     


  23. lumos

    lumos Member


    Let me have a look at your code.
     


  24. Vijay Shetye

    Vijay Shetye Member


    change thefollowing thing your code

    [#Form: Sales Order Color]
    On : Form Accept: @@IsSalesOrder : CALL : soFn
    On : Form Accept: @@IsSalesOrder : Form Accept

    this should sort your issue
     


  25. teja varma

    teja varma Active Member


    please don't use browse url or remote url method because
    browse url - browser window will open while sending the sms
    remote url - it doesn't have feedback or reponse so we dont have any control weather if the message send to the destination or failed in the middle
    better ways:
    use http request post using xml attribute and fetch result in http response
    or
    create a dll which number and message as a parameter and return a response
    you can call dll using execute:com interface


    happy coding:)
     


Share This Page