The Plugin says "object does not include any field can be updated or inserted"
Question.
I created very simple configuration. I used the "all" macro to include all fields.
{
"objects": [
{
"query": "SELECT all FROM Account",
"operation": "Insert"
}
]
}
But it complains:
The SOQL query for sObject Account does not include any field can be updated or inserted
Why it does not see any field, I can normally access the Account object?
Answer.
The reason is that the Tool was unable to find any updatable fields and so it puts all fields to read-only mode.
As a solution, check if your user has appropriate create/edit permissions to Account's fields.
Check the following:
- Your user profile's permissions.
- Additional permissions by Permission Sets, Licenses etc.