Whatsapp sender for Tally(dll)

Discussion in 'Tally Integration' started by teja varma, Dec 20, 2019.

    
?

Do you want Whatspp Sender for tally ?

Poll closed Dec 27, 2019.
  1. Intrested

    100.0%
  2. Not Intrested

    0 vote(s)
    0.0%
  3. Its already available

    0 vote(s)
    0.0%
  1. Sohail Khan

    Sohail Khan Member


    Same Problem. Every Time we have to Scan QR Code.
     


  2. Hemang Haria

    Hemang Haria New Member


    Just a thought, can we use Whatsapp Bulk Msg Softwares. Tally Tdl interacts with this software and send the required message on whatsapp. This will solve the multiple chrome sessions and can run in background.
     



  3. hello,
    i am getting this error "contact number is invalid " i have filled 12 digit mobile number but still i am facing this error.
    kindly help
     


  4. gopal thummar

    gopal thummar New Member


    t
    THERE IS NO FILE IN THE LINK YOU PROVIDED. FACING THE SAME PROBLEM OF THE INVOICE ATTACHMENT
     

    Attached Files:



  5. software tech

    software tech New Member


    Download the zip file - click on the download button,
    Then extract the zip file and follow the instructions.
     


  6. Sohan Patidar

    Sohan Patidar New Member


    after opening the WhatsApp web window the invoice pdf is not attaching. Its empty. please help me out. chrome is not attaching the invoice in WhatsApp.
     


  7. teja varma

    teja varma Active Member



  8. subash pal

    subash pal Member



  9. NAGARAJKMAR SUBRAMANIAN

    NAGARAJKMAR SUBRAMANIAN Active Member


    i am getting this error

    FUNCTION: 'SendWhatsapp' LABEL: 17 : Call to COM Interface was made but an error occurred. This can be because of wrong no. of parameters or wrong types of parameters.
    FUNCTION: 'SendWhatsapp' LABEL: 17 : Action execution failed!
    FUNCTION: 'SendWhatsapp' LABEL: : Action execution failed!

    I hv checked the all Parameters passed to COM INTERFACE

    9080969551
    F:\Tally.ERP96.6\Exported PDFs\Sales_TEST PARTY_1-Apr-2021.pdf
    Default Title
    3

    Pls chk n UPdate
     


  10. teja varma

    teja varma Active Member


    Yes, no need to register.
     


  11. teja varma

    teja varma Active Member


    All Parameters type should be string
     


  12. NAGARAJKMAR SUBRAMANIAN

    NAGARAJKMAR SUBRAMANIAN Active Member


    I hv checked, all are string only

    but same error coming
     


  13. subash pal

    subash pal Member


    Voucher is exported but browser is not open with updated DLL, please help us
     


  14. NAGARAJKMAR SUBRAMANIAN

    NAGARAJKMAR SUBRAMANIAN Active Member


    I am getting this error message

    Error in TDL

    Form : Printed Invoice

    Vertical Page Breaks are too big!
     


  15. Vaidehi Joshi

    Vaidehi Joshi New Member


    How you resolved this error?I am also getting the same error
    Please help me to come out.
     


  16. teja varma

    teja varma Active Member



  17. Vaidehi Joshi

    Vaidehi Joshi New Member


    I have my my own dll for different purpose and it is giving the error,From the dll api method is called using service stack.

    Com interface :
    I/P parameter:String
    O/P parameter:Int
    Please kindly help
    I am getting an error ,Call to com interface was made,but error because of wrong number of parameter or wrong type of parameter
    //c# code dll file
    using ServiceStack;

    namespace Trial_Project
    {
    public class Class1 : IDll
    {

    public int pro(string ledgerName)
    {

    int assetbalance = GetCustomerAssetBalance("TST001");
    return assetbalance;
    }
    public int GetCustomerAssetBalance(string CustMID)
    {

    string ApiKey = //Assigned value;
    string BaseUrl = //Assigned value
    const string UserAgent = //Assigned value
    var client = new JsonServiceClient(BaseUrl);
    client.UserAgent = UserAgent;
    client.Headers["X-Api-Key"] = ApiKey;


    // This configures the Authorization HTTP header
    client.SetCredentials("email id", "password");
    // This sends a GET /api/asset balanceByCustomer request
    AssetBalancesByCustomer objectassetbalance = new AssetBalancesByCustomer();
    objectassetbalance.CustomerMId = CustMID;
    AssetBalances objLocationsQueryResult = client.Get(objectassetbalance);

    // This sends a GET /api/fills/new request to retrieve fill records

    return objLocationsQueryResult.Rows[0].AssetTypes[0].QuantityBalance;
    }
    [ComImport, Guid("fbcd00a1-0de9-4763-9ffa-b1e5e5cfb827"), InterfaceType

    (ComInterfaceType.InterfaceIsIUnknown)]
    internal interface IDll
    {
    int pro(String num);
    }

    ;;Tdl File code

    [COM Interface:pushdata]

    Project: Trial_Project
    Class: Class1
    Interface:pro
    Parameters: p3 : String : In
    Return:Number

    [#Line:fielddll]

    Option : On Focus fldVCHPassToTA: @@IsSalesOrder

    [!Line: On Focus fldVCHPassToTA]

    Add : Right Fields : At Beginning : Medium Prompt, dllfield
    Local : Field : Medium Prompt :Info : "Asset Balance :"

    [Field: dllfield]

    Use : Name Field
    On:Focus:Yes:Call:pushdata1:#EIConsignee
    [System: UDF]
    dllfield : String: 999
    [Function:pushdata1]

    PARAMETER : Header : STRING


    Variable :fielddllloc:NUMBER
    01: If: $$IsCOMInterfaceInvokable:pushdata
    02:Exec COM Interface :pushdata:##Header
    03:Log:$$LastResult
    04:Set:fielddllloc:($$LastResult)
    05:Set Value:fielddll:(##fielddllloc)
    Else
    06 : Msg Box:"Info":"COM Interface is not invokable or\n DLL is not registered"
     


  18. Devendra_Rawat

    Devendra_Rawat Well-Known Member



  19. teja varma

    teja varma Active Member


    it's hard to tell where went wrong.
    Can you provide test user credentials and c# code... So I can debug the code
    You can share to my mail: softwarecodecs@gmail.com

    P.S: Please put proper subject while mailing.
     
    Devendra_Rawat likes this.


  20. Devendra_Rawat

    Devendra_Rawat Well-Known Member


    Nice,

    @sanjaybjthakkar. Mr. Teja I have been able to login to gst e invoice portal using third party (ASP) provided base URL and credentials (using TDL)
    and generate e Invoice using C++ COM Dll ( developed by me)


    but i could not find similar details for login into Gst e Invoice portal where we have been given login details by GST portal (directly without ASP and GSP)

    Any idea about base URL and authentication process/details for direct login?
     


  21. Vaidehi Joshi

    Vaidehi Joshi New Member


    Thanks a lot I referred your tdls and those are very helpful. After handling a exception I am able to resolve the problem.
    Thank you very much!!
     


  22. Vaidehi Joshi

    Vaidehi Joshi New Member



  23. teja varma

    teja varma Active Member


    I think it will help you:
    https://einvoice1-trial.nic.in/Documents/einvoiceapisandbox.pdf
    https://einv-apisandbox.nic.in/

    it is the sandbox for testing API (Official API from NIC) with your credentials, after successful testing in the sandbox. you can move to production.

    P.S: you need to obtain credentials from NIC Portal
     


  24. stechsundar

    stechsundar New Member


    Scan QR scan not working. Could not scan... msg has come. what should i do plz explan

    No valid qr code or could not scan
     


  25. NiravMerchant

    NiravMerchant Member


    Hi
    I am getting Crome driver error only in windows 10 (64 Bit) system tried everything not able to solve can anybody
    Guide
     


Share This Page