How to create a sales signal with custom function in zoho crm using Deluge script | ITechiean

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ม.ค. 2021
  • In this video, you can learn how to raise a sales signal with a deluge script whenever the lead is created in ZOHO CRM.
    sales signal code:
    lead = zoho.crm.getRecordById("Leads",lid);
    email = lead.get("Email");
    name = lead.get("Last_Name");
    namespace = "test_test";
    subject = "New Lead created #" + name;
    message = "New Lead created in Zoho CRM" + " from " + email;
    signalMap = Map();
    signalMap.put("signal_namespace",namespace);
    signalMap.put("email",email);
    signalMap.put("subject",subject);
    signalMap.put("message",message);
    result = zoho.crm.raiseSignal(signalMap);
    Make sure email is mandatory for raising a sales signal!
    Thanks for watching

ความคิดเห็น • 14

  • @Swargamkalavathi
    @Swargamkalavathi 3 ปีที่แล้ว +1

    Excellent video with better explanation. Please do more videos 👏

  • @factsoflife6576
    @factsoflife6576 3 ปีที่แล้ว

    Thanks for the explanation with live demo

  • @EventNeedz
    @EventNeedz 3 ปีที่แล้ว

    Its very helpful. explanation is prompt and articulation is good.

  • @satishpalatheti361
    @satishpalatheti361 3 ปีที่แล้ว +1

    Well explained sir, keep posting more videos on Zoho👏

  • @poonamrawat2293
    @poonamrawat2293 3 ปีที่แล้ว +1

    Nice

  • @sathishvloger20
    @sathishvloger20 3 ปีที่แล้ว

    Nice explanation... keep doing more videos on zoho

  • @gunturisrael2762
    @gunturisrael2762 3 ปีที่แล้ว

    Nice explanation👏🏻 thanks for the information

  • @prashanthkumarenagandula9988
    @prashanthkumarenagandula9988 3 ปีที่แล้ว +3

    Well explainer sir

  • @bhargavphanindra983
    @bhargavphanindra983 3 ปีที่แล้ว +1

    Awesome one upload videos Regularly 😂

  • @azmatullah4590
    @azmatullah4590 3 ปีที่แล้ว

    when a lead create from zoho form and then notification show to only role person(manager) can we do it?? when zoho form submit then a lead create at submission of zoho form we can show notification to only manager that one account is created?