The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
23 views

Chatter “Groups” (or Queues) In Lieu Of Single Users?

I've searched already and believe the answer is NO, but thought I'd verify here with real-world users... Is there a way in Chatter to tag a "Group of users" (perhaps a Queue?) instead of or in ...
1
vote
2answers
46 views

Is it possible to create a view of contacts that's based on global tags from the accounts to which they belong?

I need to notify people at a set of accounts that a product they've purchased has been updated. This is not the long term solution that I want, but what I did for the time being was put global tags ...
0
votes
1answer
179 views

Command line Upsert error

I am new to SalesForce (a former Goldmine user), but have dealt with mapping before. I am trying to set up the data loader so that I can run it from a batch file each night and insert / update our ...
3
votes
1answer
61 views

Only receiving Single Result when querying HashtagDefinition

I have this query List tagOptions = [SELECT Name FROM HashtagDefinition]; List<String> tagNameOptions = new List<String>(); for(HashtagDefinition htd : tagOptions){ ...
6
votes
2answers
144 views

Querying Chatter tags

Is it possible to query Chatter tags via APEX? For e.g. if I'd like to know the tags associated with an Account record, can I query them using SOQL? Anup