New user added - How to set "Follow all existing accounts"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BKS
    Junior Member
    • Aug 2015
    • 3

    #1

    New user added - How to set "Follow all existing accounts"

    Dear all,

    Let's say we have a new salesman joining the company. He will need to keep track of updates from all accounts, contacts and opportunities. How can I let this person follow all these at once? Now I have the idea I need to select an account, press "Follow" and do the same thing for the next account.
    So basically the question is; is there an easy way to follow all accounts, contacts, etc for a new user in just a few clicks?

    Thanks,
    Bas
  • yuri
    Member
    • Mar 2014
    • 8933

    #2
    Hi

    You can do it only by running sql query.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • BKS
      Junior Member
      • Aug 2015
      • 3

      #3
      Thanks, sounds great. If you know by heart, can you tell me the query I should run? Otherwise I will take a look in the source.

      Comment

      • yuri
        Member
        • Mar 2014
        • 8933

        #4
        INSERT INTO subscription (entity_id, entity_type, user_id)
        SELECT id, 'Account', 'id_of_your_user' FROM account WHERE deleted = 0
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment

        • BKS
          Junior Member
          • Aug 2015
          • 3

          #5
          Ah super, thanks a lot!

          Comment

          • SteveHar
            Junior Member
            • May 2015
            • 4

            #6
            can this mass update "Follow" be a standard thing in the future? Would be great for user with less sql knowledge....

            Comment

            • yuri
              Member
              • Mar 2014
              • 8933

              #7
              Not planned.
              If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

              Comment

              Working...