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

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

    There won't be any doughts after watching your video. thank you ma'am, and please make more videos like this.

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

    Thank u for the "flowless" explanation mam.

  • @charantiruveedi6118
    @charantiruveedi6118 ปีที่แล้ว

    TQ for the clear explanation yar.you r way of telling sooo clear&nice.tqq .keep upload

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

    Hi ,
    I like ur videos vey much, it is so knowledgeable, Thank you,
    I want to ask about trailhead in salesforce, will it be helpful for practice and in interviews also, what is ur opinion, how many badges should I complete for 3 years experience?

  • @deryabute6794
    @deryabute6794 ปีที่แล้ว

    Hi, Thanks for videos...I want to ask a question. how to merge duplicate many records list ? flow or trigger or batch apex?

  • @suyash3402
    @suyash3402 ปีที่แล้ว

    maam flow ma sirf undelete operation possible nahi ha baki trigger ka barabar hi work karta ha haina
    Thanks for explaining so nicely diff. b/w flows and triggers

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

      Yes all other work perfectly fine. 😊

  • @aadeshchavan7729
    @aadeshchavan7729 ปีที่แล้ว

    what is Tableau , vlocity ,pardot

  • @pratikmahajan654
    @pratikmahajan654 ปีที่แล้ว

    Hello Mam i am New At Salesforce can you tell me from where to learn Salesforce

  • @heenashaik7371
    @heenashaik7371 ปีที่แล้ว

    Can u make video on scenario based interview questions for 2 years experience salesforce developer for aura components

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

    What if we have more than 50milion record how to fetched it..

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

      According to Salesforce governance limit, it is not possible to fetch more then 50 million records.
      But i beleive u can use flag or record count field ( populated by automation ) in the object and fetch the records according to it in batch class, where in start method u will get the records through Database.getQueryLocator(query) and when records are fetched and executed ( let's say 49 million) , then you can again start a batch with finish method to process remaining records.

    • @sb-id3pv
      @sb-id3pv ปีที่แล้ว

      Did not get through answer, can u pls elaborate

  • @biswajitsamantaray3117
    @biswajitsamantaray3117 7 หลายเดือนก่อน

    What r u saying. On the contrary salesforce has said that flows are faster than apex

    • @forceGalaxy
      @forceGalaxy 7 หลายเดือนก่อน

      ?? Triggers are complied code and executes directly on the salesforce server , flows are interpreted at runtime which may introduce a bit more overhead.
      This execution also covers different factors like complexity, logic , best practices ,etc.