• Baljeet Kaur
  • NEWBIE
  • 5 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi, 

I am facing this error while I have only displayed shift hours and grouped it with Volunteer Organization but still getting this error. 

Could anyone help me here.

Thanks in Advance.
Vinay Kumar Jain

I am trying to finish the "Top Organizations" report but I am getting an error below. 

User-added image

User-added image

User-added image

And I grouped by field "Volunteer Organization: Account Name".

Can someone help with it, please?

Thanks,
Eduardo Muniz
 

Hi,

we have code below, I got error "Initial term of field expression must be a concrete SObject:list<id>", any suggestion?

Map<ID,list<ID>> idMappings = new Map<ID, list<ID>>();
Set<ID> toBeUpdatedIds = new set<ID>();

// then the code to add data into idMappings;

           for(Id key: idMappings.keySet()){
                if (idMappings.get(key).size()==1){
                    toBeUpdatedIds.add(idMappings.get(key).get[0]);
                }else{
                    toBeUpdatedIds.add(idMappings.get(key).get[idMappings.get(key).size()-1]);
                }
           }